You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Model management involves file versioning the model files, and associating the data and code that's used to train them. It can also automate deployment. It can associate models with arbitrary JSON documents for various annotation, like adding features or hyperparameters used to train the model.
We already have output file handling in pipelines, but these are files in general. Models build on top of this.
Some possible features
Selection of models by their data (e.g. when xvc pipeline run produces a model, it can associate the model with the inputs of the pipeline.)
Selection of models by their hyperparameter values (e.g. when xvc pipeline run produces a model, it can find params in the hyperparameter files and these can be added as annotations to model.)
Adding annotations to models from code files. (e.g. In Python API, we can have facilities to record metadata about models and these can be tracked along with the models.)
Selection of models by their performance and metrics, via metrics facility of the pipeline.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Model management involves file versioning the model files, and associating the data and code that's used to train them. It can also automate deployment. It can associate models with arbitrary JSON documents for various annotation, like adding features or hyperparameters used to train the model.
We already have output file handling in pipelines, but these are files in general. Models build on top of this.
Some possible features
xvc pipeline run
produces a model, it can associate the model with the inputs of the pipeline.)xvc pipeline run
produces a model, it can findparams
in the hyperparameter files and these can be added as annotations to model.)metrics
facility of the pipeline.Beta Was this translation helpful? Give feedback.
All reactions