ICP 9 - Murarishetti-Shiva-Kumar/Python-Deep-Learning-Programming GitHub Wiki

DeepLearning Lesson2: Basics in Keras

1. Using the history object in the source code, plot the loss and accuracy for both training data and validation data

image image

2. Plot one of the images in the test data, and then do inferencing to check what is the prediction of the model on that single image in the test data

image

3. We had used 2 hidden layers and Relu activation. Try to change the number of hidden layer and the activation to tanh or sigmoid and see what happens

image image image image image

4. Run the same code without scaling the images, how the accuracy changes?

image image