ML 笔记本中的 Azure Batch API 上升 'AttributeError'
Azure Batch API rising 'AttributeError' in ML notebook
我正在尝试通过以下方式与 python API 的 Azure Batch 交互:
from azure.batch import BatchServiceClient
batch = BatchServiceClient('<mycredential>','https://<mybatchaccount>.<region>.batch.azure.com')
next(batch.job.list())
这是 运行 在 ML Studio 笔记本中。
但是出现以下错误:AttributeError: 'str' object has no attribute 'signed_session'
.
我正在从我的批处理控制台 UI:
获取 url 和凭据
作为凭证,我尝试了主要和次要访问密钥amd“URL”作为批处理url。
我做错了什么吗?
谢谢
<mycredential>
不应该是您的裸授权密钥字符串。您需要创建一个共享授权密钥对象。
credentials = batchauth.SharedKeyCredentials(BATCH_ACCOUNT_NAME, BATCH_ACCOUNT_KEY)
batch_client = batch.BatchServiceClient(credentials, base_url=BATCH_ACCOUNT_URL)
我正在尝试通过以下方式与 python API 的 Azure Batch 交互:
from azure.batch import BatchServiceClient
batch = BatchServiceClient('<mycredential>','https://<mybatchaccount>.<region>.batch.azure.com')
next(batch.job.list())
这是 运行 在 ML Studio 笔记本中。
但是出现以下错误:AttributeError: 'str' object has no attribute 'signed_session'
.
我正在从我的批处理控制台 UI:
作为凭证,我尝试了主要和次要访问密钥amd“URL”作为批处理url。
我做错了什么吗?
谢谢
<mycredential>
不应该是您的裸授权密钥字符串。您需要创建一个共享授权密钥对象。
credentials = batchauth.SharedKeyCredentials(BATCH_ACCOUNT_NAME, BATCH_ACCOUNT_KEY)
batch_client = batch.BatchServiceClient(credentials, base_url=BATCH_ACCOUNT_URL)