1
0
Fork 0
onnx-web/common/pipelines/complex.json

47 lines
1006 B
JSON
Raw Permalink Normal View History

{
"stages": [
{
"name": "start",
"type": "source-txt2img",
"params": {
"prompt": "a magical wizard"
}
},
{
"name": "refine",
"type": "blend-img2img",
"params": {
"prompt": "a magical wizard in a robe fighting a dragon",
"strength": 0.5
}
},
{
"name": "upscale",
"type": "upscale-stable-diffusion",
"params": {
2023-01-29 04:52:39 +00:00
"upscale": "stable-diffusion-x4-upscaler",
"prompt": "a magical wizard in a robe fighting a dragon",
"scale": 4,
"outscale": 4,
2023-09-13 22:28:38 +00:00
"tiles": "mini"
}
},
{
"name": "save-local",
"type": "persist-disk",
2023-01-29 05:06:25 +00:00
"params": {
2023-09-13 22:28:38 +00:00
"tiles": "hd8k"
2023-01-29 05:06:25 +00:00
}
},
{
"name": "save-ceph",
"type": "persist-s3",
"params": {
"bucket": "storage-stable-diffusion",
"endpoint_url": "http://scylla.home.holdmyran.ch:8000",
2023-01-29 05:06:25 +00:00
"profile_name": "ceph",
2023-09-13 22:28:38 +00:00
"tiles": "hd8k"
}
}
]
}