Posted on 10th September 2024|12 views
how to compile the Keras model using the loss function?
Posted on 10th September 2024| views
You can compile the Keras model as shown below
model.compile(loss = 'categorical crossentropy',
optimizer = RMSprop(),
metrics = ['accuracy'])