Azure / Azure/MachineLearningNotebooks

Limit of the length of string in description when the model is registered.

未关闭
#1,070 0 条评论 0 个 reaction 已指派 1 人 已指派给 @shivp950 在 GitHub 查看
ADO MLOps product-feedback
主要语言
Jupyter Notebook
星标
4.4k
派生
2.6k
PR 合并指标
30 天内没有已合并 PR

描述

Register with a long description:
```python
from azureml.core.model import Model

model = Model.register(model_path="sklearn_regression_model.pkl",
model_name="sklearn_regression_model",
tags={'area': "diabetes", 'type': "regression"},
description="""Limit of the length of string in description when the model is registered
Limit of the length of string in description when the model is registered.
Limit of the length of string in description when the model is registered.""",
workspace=ws)
```

**Return**
```python
ERROR - Received bad response from Model Management Service:
Response Code: 400

...
```

It works if you have a shorter description like
```python
description="""Limit of the length of string in description when the model is registered
Limit of the length of string in description when the model is registered."""
```

贡献指南

这个仓库没有索引到贡献指南

评估

这个 Issue 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。