Shallow layer neural network with Tensorflow

0. Import the required libraries:

We will start with importing the required Python libraries.

In [1]:
# Numerical computing
from scipy.stats import kde
import tensorflow as tf
import numpy as np

# Visualization
from mpl_toolkits import mplot3d
from matplotlib import pyplot as plt
from matplotlib import cm
from matplotlib.pyplot import clim
%matplotlib inline


import seaborn as sns
sns.set(style="darkgrid")

# Importing our dataset
from sklearn.datasets import make_circles