LoRA 多功能设备
POST
https://stablediffusionapi.com/api/v4/dreamboothDreambooth LoRA Multi 用于使用基于经过训练或公共模型的多个 LoRA 模型从文本创建图像。
使用经过训练的模型或任何公共模型进行 API 调用,同时将多个逗号分隔的 LoRA 模型 ID 传递给参数lora_model
,例如“more_details,cinnamon”。
提示
**您可以在此处**找到可用的公共模型和 LoRA 模型及其 ID 的列表。
POST
向https://stablediffusionapi.com/api/v4/dreambooth端点发出请求,并在请求正文中传递所需的参数。
多语言支持
如果你在文本提示中使用了英语之外的语言,请在请求体中将“multi_lingual”参数设置为“yes”。这将在处理请求的过程中触发自动语言检测和翻译。
支持以下语言:
阿拉伯语(ar_AR)、捷克语(cs_CZ)、德语(de_DE)、英语(en_XX)、西班牙语(es_XX)、爱沙尼亚语(et_EE)、芬兰语(fi_FI)、法语(fr_XX)、古吉拉特语(gu_IN)、印地语(hi_IN)、意大利语(it_IT)、日语(ja_XX)、哈萨克语(kk_KZ)、韩语(ko_KR)、立陶宛语(lt_LT)、拉脱维亚语(lv_LV)、缅甸语(my_MM)、尼泊尔语(ne_NP)、荷兰语(nl_XX)、罗马尼亚语(ro_RO)、俄语(ru_RU)、僧伽罗语(si_LK)、土耳其语(tr_TR)、越南语(vi_VN)、中文(zh_CN)、南非语(af_ZA)、阿塞拜疆语(az_AZ)、孟加拉语(bn_IN)、波斯语(fa_IR)、希伯来语(he_IL)、克罗地亚语(hr_HR)、印尼语(id_ID)、格鲁吉亚语(ka_GE)、高棉语(km_KH)、马其顿语(mk_MK)、马拉雅拉姆语(ml_IN)、蒙古语(mn_MN)、马拉地语(mr_IN)、 波兰语(pl_PL)、普什图语(ps_AF)、葡萄牙语(pt_XX)、瑞典语(sv_SE)、斯瓦希里语(sw_KE)、泰米尔语(ta_IN)、泰卢固语(te_IN)、泰语(th_TH)、他加禄语(tl_XX)、乌克兰语(uk_UA)、乌尔都语(ur_PK)、科萨语(xh_ZA)、加利西亚语(gl_ES)、斯洛文尼亚语(sl_SI)
该接口还支持调度程序。使用请求正文中的“scheduler”参数来设置要从以下列表中使用的特定调度程序:
- DDPMScheduler
- DDIMScheduler
- PNDMScheduler
- LMSDiscreteScheduler
- EulerDiscreteScheduler
- EulerAncestralDiscreteScheduler
- DPMSolverMultistepScheduler
- HeunDiscreteScheduler
- KDPM2DiscreteScheduler
- DPMSolverSinglestepScheduler
- KDPM2AncestralDiscreteScheduler
- UniPCMultistepScheduler
- DDIMInverseScheduler
- DEISMultistepScheduler
- IPNDMScheduler
- KarrasVeScheduler
- ScoreSdeVeScheduler
请求参数
您用于请求授权的 API Key
要使用的模型的 ID。它可以是公共的,也可以是您训练有素的模型。
文本提示,包含您想要在图像中生成的内容的描述
图像中您不想要的项目
最大高度: 宽度: 1024x1024
最大高度: 宽度: 1024x1024
作为响应返回的图像数量。最大值为 4。
去噪步骤数(最小:1;最大:50)
NSFW 图像检查器。如果检测到此类图像,它将被空白图像替换。
增强提示以获得更好的结果;默认:是,选项:是/否
种子用于重现结果,相同的种子将再次为您提供相同的图像。为随机数传递null 。
无分类器指导的量表(最小值:1;最大值:20)
允许多语言提示生成图像。如果您在文本提示中使用不同于英语的语言,请将此项设置为“是” 。
将此参数设置为“yes”以生成全景图像。
如果您想要高质量的图像,请将此参数设置为“yes”。在这种情况下,图像生成将花费更多时间。
如果您想要将给定图像分辨率放大两倍 (2x),请将此参数设置为“yes”。如果请求的分辨率为 512 x 512 像素,则生成的图像将为 1024 x 1024 像素。
使用它来传递嵌入模型 (embeddings_model_id)。
传递Lora型号id,支持多lora,传递逗号分隔值。示例“对比度修复,八重巫女原神”
用它来设置调度程序。
设置 URL 以在图像生成完成后获取 POST API 调用。
此 ID 在 Webhook API 调用的响应中返回。这将用于识别 Webhook 请求。
{
"key": "",
"model_id": "f222-diffusion",
"prompt": "a female model doing photoshoot, ultra realistic face, ultra high resolution, 4K image",
"negative_prompt": "painting, extra fingers, mutated hands, poorly drawn hands, poorly drawn face, deformed, ugly, blurry, bad anatomy, bad proportions, extra limbs, cloned face, skinny, glitchy, double torso, extra arms, extra hands, mangled fingers, missing lips, ugly face, distorted face, extra legs, anime",
"width": "512",
"height": "512",
"samples": "1",
"num_inference_steps": "30",
"safety_checker": "yes",
"enhance_prompt": "yes",
"seed": null,
"guidance_scale": 7.5,
"multi_lingual": "no",
"panorama": "no",
"self_attention": "no",
"upscale": "no",
"embeddings_model": null,
"lora_model": "ganyu-lora,more_details",
"scheduler": "UniPCMultistepScheduler",
"webhook": null,
"track_id": null
}
示例代码
返回响应
{
"status": "processing",
"tip": "Your image is processing in background, you can get this image using fetch API: here is link for fetch api : https://stablediffusionapi.com/docs/community-models-api-v4/dreamboothfetchqueimg",
"eta": 13.067986918399999,
"messege": "Try to fetch request after seconds estimated",
"webhook_status": "",
"fetch_result": "https://stablediffusionapi.com/api/v3/dreambooth/fetch/29763508",
"id": 29763508,
"output": [],
"meta": {
"prompt": " a female model doing photoshoot, ultra realistic face, ultra high resolution, 4K image hyperrealistic, full body, detailed clothing, highly detailed, cinematic lighting, stunningly beautiful, intricate, sharp focus, f/1. 8, 85mm, (centered image composition), (professionally color graded), ((bright soft diffused light)), volumetric fog, trending on instagram, trending on tumblr, HDR 4K, 8K",
"model_id": "f222-diffusion",
"negative_prompt": "painting, extra fingers, mutated hands, poorly drawn hands, poorly drawn face, deformed, ugly, blurry, bad anatomy, bad proportions, extra limbs, cloned face, skinny, glitchy, double torso, extra arms, extra hands, mangled fingers, missing lips, ugly face, distorted face, extra legs, anime(child:1.5), ((((underage)))), ((((child)))), (((kid))), (((preteen))), (teen:1.5) ugly, tiling, poorly drawn hands, poorly drawn feet, poorly drawn face, out of frame, extra limbs, disfigured, deformed, body out of frame, bad anatomy, watermark, signature, cut off, low contrast, underexposed, overexposed, bad art, beginner, amateur, distorted face, blurry, draft, grainy",
"scheduler": "UniPCMultistepScheduler",
"safety_checker": "yes",
"W": 512,
"H": 512,
"guidance_scale": 7.5,
"seed": 3361266218,
"steps": 20,
"n_samples": 1,
"full_url": "no",
"tomesd": "yes",
"upscale": "no",
"multi_lingual": "no",
"panorama": "no",
"self_attention": "no",
"use_karras_sigmas": "yes",
"embeddings": null,
"vae": null,
"lora": "ganyu-lora,more_details",
"lora_strength": 1,
"clip_skip": 1,
"temp": "no",
"base64": "no",
"file_prefix": "d00bf96e-8cec-40b4-a090-c87e7165f78e.png"
},
"future_links": [
"https://cdn.stablediffusionapi.com/generations/0-d00bf96e-8cec-40b4-a090-c87e7165f78e.png"
]
}