Created
October 11, 2018 14:48
-
-
Save gauravkaila/c6d9f3aaa6253a19d48dad56bc03ee96 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Retrive registered model by version and name | |
from azureml.core.model import Model | |
regression_models = Model.list(workspace=ws,name=config['train']['model_name']) | |
for m in regression_models: | |
if m.version == int(config['docker']['model_version']): | |
model = m |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment