December 2017
Intermediate to advanced
536 pages
14h 23m
English
Here is how we start with function approximation using MLP:
import tensorflow as tf import tensorflow.contrib.layers as layers from sklearn import datasets import matplotlib.pyplot as plt from sklearn.model_selection import train_test_split from sklearn.preprocessing import MinMaxScaler import pandas as pd import seaborn as sns %matplotlib inline
# Data boston = datasets.load_boston() df = pd.DataFrame(boston.data, columns=boston.feature_names) df['target'] = boston.target ...
Read now
Unlock full access