创建 Dreambooth 请求(沙盒)
POST
https://stablediffusionapi.com/api/sandbox/v3/fine_tune该接口用于训练基于自定义图像的模型。
POST
向 https://stablediffusionapi.com/api/sandbox/v3/fine_tune 接口发出请求,并在请求正文中传递所需的参数。
训练类型
下表列出了该training_type
参数的所有可能值。
价值 | 描述 |
---|---|
男人 | 在男人的脸上进行训练。 |
女性 | 在女性脸上进行训练。 |
夫妻 | 对男女情侣进行训练;在图像数组中传递情侣的图像,而不是单个人的图像。 |
无效的 | 在物体或任何东西上进行训练。 |
请求参数
Body 参数application/json
key
string
必需
您的 API 密钥用于请求授权。
instance_prompt
string
必需
文本提示您如何称呼受过训练的人/物体。
class_prompt
string
必需
对受训人员/物体进行分类。
images
array[string]
必需
传递可访问的图像直接链接,裁剪为 512 x 512 像素。一个好的数字是 7-8 张图像。
seed
string
必需
种子用于重现结果,相同的种子将再次为您提供相同的图像。为随机数传递null 。
training_type
string
必需
您正在训练的对象的类型。
max_train_steps
string
必需
将其设置为图像数量的 2 倍(Ni * 2;最大值 2000)。
webhook
string
必需
培训完成后接到电话。
示例
{
"key": "",
"instance_prompt": "photo of adhik person",
"class_prompt": "photo of person",
"images": [
"https://stablediffusionapi.com/storage/avatars/AdhikJoshi_00001.png",
"https://stablediffusionapi.com/storage/avatars/AdhikJoshi_00002.png",
"https://stablediffusionapi.com/storage/avatars/AdhikJoshi_00003.png",
"https://stablediffusionapi.com/storage/avatars/AdhikJoshi_00004.png",
"https://stablediffusionapi.com/storage/avatars/AdhikJoshi_00005.png",
"https://stablediffusionapi.com/storage/avatars/AdhikJoshi_00006.png",
"https://stablediffusionapi.com/storage/avatars/AdhikJoshi_00007.png"
],
"seed": "0",
"training_type": "men",
"max_train_steps": "2000",
"webhook": ""
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
status
string
必需
messege
string
必需
data
string
必需
training_id
string
必需
示例
{
"status": "success",
"messege": "deploying_gpu",
"data": "it will take upto 25 minutes.",
"training_id": "F5jvdzGnYi"
}
最后修改时间: 1 年前