Project - Introduction to Transfer Learning (Cat vs Non-cats Project)

20 / 26

Cats vs Non-cats using Transfer Learning - Training the Top Layers of the VGG16 model

We shall now fit the model.

INSTRUCTIONS
  • Use fit method to train the model.

    vgg_model.<< your code comes here >>(train_set_x_orig, train_set_y_orig, epochs=10, verbose=1, validation_data=(validation_x, validation_y))
    

    Observe, we are passing the train data and labels, number of epochs, and validation data and labels arguments.

Get Hint See Answer


Note - Having trouble with the assessment engine? Follow the steps listed here

Loading comments...