Training on dart throwers
Your model is now ready, just as your dataset. It's time to train!
The coordinates features and competitors labels you just transformed have been partitioned into coord_train,coord_test and competitors_train,competitors_test.
Your model is also loaded. Feel free to visualize your training data or model.summary() in the console.
Let's find out who threw which dart just by looking at the board!
Latihan ini merupakan bagian dari kursus
Introduction to Deep Learning with Keras
Instruksi latihan
- Train your
modelon the training data for 200epochs. - Evaluate your
modelaccuracy on the test data.
Latihan interaktif langsung praktik
Cobalah latihan ini dengan melengkapi kode contoh ini.
# Fit your model to the training data for 200 epochs
model.____(____,____,____=____)
# Evaluate your model accuracy on the test data
accuracy = ____.____(____, ____)[1]
# Print accuracy
print('Accuracy:', accuracy)