Project- Iris Flowers Classification using Deep Learning & Keras

11 / 17

Keras Project - Iris Flower Identification - Compile the Model

Now let's compile the model.

INSTRUCTIONS
  • We will compile the model we created using Sparse Categorical Crossentropy to measure loss, and with Adam optimizer having 0.001 as the learning rate

    model.compile(optimizer=keras.optimizers.Adam(lr=<< your code goes here >>), loss=<< your code goes here >>, metrics=["accuracy"])
    
Get Hint See Answer


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

Loading comments...