获取模型训练进度或者结果
POST
/aiapi/v1/train/detail最后修改时间: 1 年前
请求参数
Body 参数application/json
taskId
string
任务ID
示例
{
"taskId": "string"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
data
object
必需
state
string
任务当前状态
取值为in_queue:任务排队中,running:训练进行中,success:训练已经成功完成,fail:训练失败
progress
integer
训练进度
取值范围0~1
remainSeconds
integer
预估本次任务的剩余训练时间
预估时间为系统根据当前进度进行估算,仅供参考,且会随着进度与实际计算情况进行变化
modelStyleId
integer
训练结果风格ID
此次训练成功后可以用于图生图
或者文生图
的风格ID,此字段仅在state
为success
时才有值
code
integer
必需
success
boolean
必需
示例
{
"data": {
"state": "success",
"progress": 1,
"remainSeconds": 0,
"modelStyleId": 152
},
"code": 0,
"success": true
}
最后修改时间: 1 年前