创建风格训练
POST
/v3/training/style该 API 有助于启动训练任务和配置参数。
请求参数
Header 参数
Authorization
string
必需
Content-Type
string
必需
示例值:
application/json
Body 参数application/json
name
string
必需
该模型训练的任务名称。
base_model
string
必需
用于训练的基础模型。
width
integer
训练图像宽度
height
integer
训练图像高度
image_dataset_items
array [object {2}]
必需
imageUrl 和图像标题
assets_id
integer
图片资产 ID
caption
string
图片标题
expert_setting
object
可选
train_batch_size
integer
训练批量大小
learning_rate
number
可选
学习率,控制单次迭代中模型参数的更新范围
max_train_steps
integer
可选
最大火车步数。如果“max_train_steps”设置为 2000,参数“image_dataset_items”中的图像数量为 10,则每个图的训练步骤数为 200。
seed
integer
可选
用于训练的随机种子。
lr_scheduler
string
学习调度器。
lr_warmup_steps
null
可选
预热步骤,仅当 lr_scheduler 设置为“linear”、“cosine”、“cosine_with_restarts”、“polynomial”、“constant_with_warmup”中的枚举时生效。
instance_prompt
string
可选
with_prior_preservation
boolean
可选
class_prompt
string
可选
components
array [object {2}]
必需
为训练配置的通用参数。
name
string
必需
组件类型。当设置为 'face_crop_region' 时,args 可以设置为 "args": [{"name": "ratio", "value": "1.0"}],ratio > 1 表示将包含更多的非面部区域。当设置为 'resize' 时,args 可以设置为 "args": [{"name": "width", "value": "512"}, {"name": "height", "value": "512 "}],这意味着所有图像将被裁剪为512*512。当设置为 'face_restore' 时,args 可以设置为 "args": [{"name": "method", "value":"gfpgan_1.4"}],即开启人脸恢复功能。
args
array [object {2}]
组件详细设置。
示例
{
"name": "test_style_1208",
"base_model": "v1-5-pruned-emaonly",
"width": 512,
"height": 512,
"image_dataset_items": [
{
"assets_id": 26,
"caption": "xstyle"
}
],
"expert_setting": {
"train_batch_size": 2,
"learning_rate": 0.0001,
"max_train_steps": 1,
"seed": 2023,
"lr_scheduler": "constant",
"lr_warmup_steps": null,
"instance_prompt": "Xstyle, of a young woman, profile shot, from side,sitting, looking at viewer, smiling, head tilt, eyes open,long black hair, glowing skin,light smile,cinematic lighting,dark environment",
"with_prior_preservation": true,
"class_prompt": "person"
},
"components": [
{
"name": "face_crop_region",
"args": [
{
"name": "ratio",
"value": "1.0"
}
]
},
{
"name": "resize",
"args": [
{
"name": "width",
"value": "512"
},
{
"name": "height",
"value": "512"
}
]
},
{
"name": "face_restore",
"args": [
{
"name": "method",
"value": "gfpgan_1.4"
},
{
"name": "upscale",
"value": "1.0"
}
]
}
]
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
task_id
string
必需
示例
{
"task_id": "fe84ac1b-5a01-487c-a56d-2c6c93b61f49"
}
最后修改时间: 1 年前