Project - Working with Custom Loss Function

5 / 6

Training the Model

  • It's time for training.
INSTRUCTIONS
  • Use fit on model to train the model. Also, pass X_train_scaled, y_train as input arguments, along with epochs=15 and validation_data=(X_valid_scaled, y_valid).

    model.fit(<< your code comes here >>, epochs=15,
      validation_data=(X_valid_scaled, y_valid))
    
Get Hint See Answer


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

Loading comments...