Update 00, 01 and 10 notebooks
This commit is contained in:
@@ -457,7 +457,8 @@
|
||||
},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"models = ws.models(name='best_model')\n",
|
||||
"from azureml.core.model import Model\n",
|
||||
"models = Model.list(name='best_model')\n",
|
||||
"for m in models:\n",
|
||||
" print(m.name, m.version)"
|
||||
]
|
||||
|
||||
@@ -129,9 +129,9 @@
|
||||
},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"regression_models = ws.models(tags=['area'])\n",
|
||||
"for name, m in regression_models.items():\n",
|
||||
" print(\"Name:\", name,\"\\tVersion:\", m.version, \"\\tDescription:\", m.description, m.tags)"
|
||||
"regression_models = Model.list(tags=['area'])\n",
|
||||
"for m in regression_models:\n",
|
||||
" print(\"Name:\", m.name,\"\\tVersion:\", m.version, \"\\tDescription:\", m.description, m.tags)"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user