File size: 1,282 Bytes
f7fb675 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
{
"parameters": {
"height": {
"type": "integer",
"default": 512,
"min": 256,
"max": 1440,
"description": "Height of the generated image."
},
"width": {
"type": "integer",
"default": 512,
"min": 256,
"max": 1440,
"description": "Width of the generated image."
},
"num_inference_steps": {
"type": "integer",
"default": 50,
"min": 1,
"max": 100,
"description": "Number of denoising steps."
},
"guidance_scale": {
"type": "number",
"default": 3.48,
"min": 0,
"max": 10,
"description": "Guidance scale for the diffusion process."
},
"seed": {
"type": "integer",
"optional": true,
"description": "Random seed for reproducibility."
},
"output_quality": {
"type": "integer",
"default": 100,
"min": 0,
"max": 100,
"description": "Quality of the output image."
},
"megapixels": {
"type": "string",
"default": "1",
"description": "Approximate number of megapixels for the generated image."
},
"lora_scale": {
"type": "number",
"default": 1,
"min": -1,
"max": 3,
"description": "Strength of LoRA scale."
}
}
}
|