How can I change the version of my model in Azure Machine Learning service?

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?

enter image description here

Upvotes: 0

Views: 714

Answers (1)

Roope Astala - MSFT
Roope Astala - MSFT

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

Related Questions