Created
November 27, 2019 03:51
-
-
Save analyticsindiamagazine/22f5afa366c7bfdfc02403b98d5b5cf2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Importing tensorflow 2 | |
try: | |
%tensorflow_version 2.x #gpu | |
except Exception: | |
pass | |
import tensorflow as tf | |
#Installing the What-If Tool widget | |
try: | |
!pip install --upgrade witwidget | |
except: | |
pass | |
#importing other libraries | |
import pandas as pd | |
import numpy as np | |
import functools |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment