Skip to content

Instantly share code, notes, and snippets.

@ylashin
Created October 20, 2018 23:39
Show Gist options
  • Save ylashin/b2f80602cc06cdac12c581ba7a77e51c to your computer and use it in GitHub Desktop.
Save ylashin/b2f80602cc06cdac12c581ba7a77e51c to your computer and use it in GitHub Desktop.
model_dir = "tiny_yolov2"
from azureml.core.model import Model
model = Model.register(model_path = model_dir + "//model.onnx",
model_name = "tiny_yolov2",
tags = {"onnx": "demo"},
description = "Tiny YOLO model",
workspace = ws)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment