-
Notifications
You must be signed in to change notification settings - Fork 0
ICP Deep Learning 1
PallaviArikatla edited this page Jul 4, 2020
·
2 revisions
To implement Deep Learning programming on keras.
-
Install and import all the necessary libraries.
-
Read the given CSV file which we have to work on and then split the data given to train and test.
-
Add more dense layers to the existing layers.
-
Addition of more dense layers increases accuracy and decreases loss.
-
Read the given breast cancer dataset and infer the target column.
-
Split the data to train and test.
-
Use label encoder to convert the target column to numeric values.
-
Calculate score using the hidden and output layers.
QUESTION 3: Normalize the data before feeding the data to the model and check how the normalization change your accuracy.
-
Use the same dataset and follow the same procedure as in the question 2.
-
Scale the data using standard scalar object and then send it to the train and test.
-
Now calculate the score.