Using Models
Find out how you can use the trained models.
We'll cover the following...
We'll cover the following...
There are three operations that can be performed in order to use the trained models:
- Save
- Reload
- Predict
๐พ Save the model
Models can be saved using the save
method using .h5
extension.
Press + to interact
model.save('model.h5')
๐ Note: The Educative code widget provides the option of downloading the file when you write the
save
function. When working in a local workspace, the file is saved in the current working directory or ...