October 2018
Intermediate to advanced
252 pages
6h 49m
English
It is crucial that we serve the right data as input to the neural network architecture for training and validation. We need to make sure that data has useful scale and format and even that meaningful features are included. This will lead to more consistent and better results.
Perform the following steps for data preprocessing:
We use the panda's library to load data and review the shape of our dataset:
dataset = pd.read_csv('/deeplearning/google/kaggle/breast-cancer/data.csv')# get dataset detailsprint(dataset.head(5))print(dataset.columns.values) ...