Created
October 15, 2019 16:41
-
-
Save aymericdelab/e0e3065948efa3390187bd565e5193ce to your computer and use it in GitHub Desktop.
register model in azure to deploy it
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
from azureml.core.model import Model | |
model_dir='./outputs/founder-classifier/outputs/model/1570442423' | |
# Tip: When model_path is set to a directory, you can use the child_paths parameter to include | |
# only some of the files from the directory | |
model = Model.register(model_path = model_dir, | |
model_name = "founder-classifier", | |
description = "classification of founders using CNN", | |
workspace = ws) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment