Publish your model
Here we will see how to publish a version of your experiment so it can be used outside of the project scope and deployed for production use
Once you are happy with one of your experiment after analyzing the evaluation metrics or sample predictions, you can publish it into a new frozen entity that we call a model
.
Once your experiment is frozen into a model, you can then deploy it, use it live in the playground, or use it as a source for other experiments that can be in other projects (remember the checkout
method ?)
To freeze your experiment into a model, you can use the following method :
As we can see, the only thing we have to specify is the name of the model instance we want to create. When publishing, you will automatically clone the file assets of the experiment such as :
checkpoints
trained model
.config
...
Last updated