Reputation: 51
When registering a model into Azure Machine Learning, it keeps increments the version number. Can i set the version number to a specific number? Or even stop it from increments every time?
Upvotes: 0
Views: 714
Reputation: 756
The version number is controlled by the system and automatically increments.
You can use tags to have custom tracking, for example
model.add_tags({"user-version":"alpha-0.1"})
Upvotes: 1