【发布时间】:2017-05-12 10:49:31
【问题描述】:
有没有人有一个简单的 hello world Python Notebook 作为网络服务发布
我试过了,遇到各种错误
from azureml import services
#from azure.storage.blob import BlobService
services._DEBUG = True
#Use your own workspace information below!
workpace_id= '*****'
auth_token = '*****'
from azureml import services
@services.publish(workpace_id, auth_token)
@services.types()
@services.returns(str)
def myHello():
return 'Hello World'
【问题讨论】:
标签: python python-3.x azure machine-learning jupyter-notebook