File size: 1,076 Bytes
17471ed |
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 |
{
"compute": {
"task": "text-to-image",
"framework": "custom",
"accelerator": "cpu"
},
"parameters": {
"prompt": {
"type": "string",
"description": "Text description of the desired output",
"required": true
},
"negative_prompt": {
"type": "string",
"description": "Text to avoid in the generation",
"required": false
},
"num_paths": {
"type": "integer",
"description": "Number of paths in the SVG",
"required": false,
"default": 100
},
"guidance_scale": {
"type": "number",
"description": "Guidance scale for the diffusion model",
"required": false,
"default": 7.5
},
"seed": {
"type": "integer",
"description": "Random seed for reproducibility",
"required": false
}
},
"widget": {
"text": "a cat sitting on a windowsill",
"examples": [
"a cat sitting on a windowsill",
"a beautiful mountain landscape",
"a portrait of a person with glasses",
"a sunset over the ocean"
]
}
} |