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
Obsolete model reference type, that breaks the code for SDK v.2
Use of "from azure.ai.ml.constants import ModelType" and setting Model type with "type=ModelType.MLFLOW" makes the code execution fail, with error saying that MLFLOW is not supported type and advising that one of the supported ones is mlflow_model. Got this resolved only after changing constant set to "from azure.ai.ml.constants import AssetTypes" and setting Model type with "type=AssetTypes.MLFLOW_MODEL".
0 commit comments