Where is my trained model?¶
After
training
a model, the trained model files (.tflite
and .h5) are added to the
.yzlite.zip
model archive
file which is created in the same directory as the
model specification
file.
Additionally, all intermediate training files can be found at:
~/.yzlite/models/<model
name>
where
<model name>
is the name of the trained file.
For example, say we have the model specification file:
~/workspace/my_model.py
And we run the command:
cd ~/workspace
yzlite train my_model
Then after training completes, we’ll have:
~/workspace/my_model.py <-- Model specification file
~/workspace/my_model.yzlite.zip <-- Model archive, contains trained .tflite and .h5 model files
And also, all intermediate training logs can be found at:
~/.yzlite/models/my_model