创建训练任务
功能介绍
用于创建训练任务,获取任务id。
注意事项
调用本文API,需使用安全认证AK/SK鉴权,调用流程及鉴权介绍详见SDK安装及使用流程。
调用示例
from qianfan import resources
# 创建任务
resp = resources.FineTune.create_task(name="task_name", description="task_desc")
# 获取返回结果
print(resp)
返回示例
QfResponse(code=200, headers={
...
},
body={
'log_id': '2291960321',
'result': {
'id': 12102,
'name': 'sdk_test_10',
'description': 'heihei',
'createTime': '2023-10-23 20:26:46'}
},
image=None)
参数说明
请求参数
名称 | 类型 | 必填 | 描述 |
---|---|---|---|
name | string | 是 | 任务名称,字符串长度为 [2, 20] |
description | string | 否 | 任务描述,字符串长度为 [0, 500] |
返回参数
名称 | 类型 | 描述 |
---|---|---|
log_id | int | 请求ID |
result | dict | 请求结果 |
result说明
名称 | 类型 | 描述 |
---|---|---|
id | int | 任务ID |
name | string | 任务名称 |
description | string | 任务描述 |
createTime | string | 创建时间 |
最后修改时间: 1 年前