Project - Building Cat vs Non-Cat Image Classifier using NumPy and ANN

29 / 32

Cat vs Non-cat Classifier - Training the Algorithm

It's time for training!

We shall call the model function, passing the necessary parameters.

INSTRUCTIONS

Call the model function and pass the following parameters:

  • train_set_x
  • train_set_y_orig
  • validation_set_x
  • validation_y
  • num_iterations = 2000
  • learning_rate = [0.1,0.0001,0.001,0.005]

    best_values = model(<< your code comes here >>)
    
Get Hint See Answer


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

Loading comments...