Spaces:
Runtime error
Runtime error
File size: 841 Bytes
2de3774 |
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 |
{
"Canny (low)": {
"type": "canny",
"edge_low": 0.2,
"edge_high": 0.8,
"strength": 0.5,
"start": 0.0,
"stop": 0.5
},
"Canny (high)": {
"type": "canny",
"edge_low": 0.2,
"edge_high": 0.8,
"strength": 1.0,
"start": 0.0,
"stop": 0.99
},
"Depth (low)": {"type": "depth", "strength": 0.5, "start": 0.0, "stop": 0.5},
"Depth (high)": {"type": "depth", "strength": 1.0, "start": 0.0, "stop": 0.99},
"Recolour": {"type": "recolour", "strength": 1.0, "start": 0.0, "stop": 1.0},
"Sketch": {"type": "sketch", "strength": 0.9, "start": 0.0, "stop": 1.0},
"Img2Img": {"type": "img2img", "start": 0.06, "denoise": 0.64},
"Upscale": {"type": "upscale", "upscaler": "4x-UltraSharp.pth"},
"RemBG": {"type": "rembg"}
}
|