-
I would like to test some newer sampler, but I don't get how to add multiple samplers presets to the JSON. The JSON looks normally like this:
Where do I put more presets? I tried single files.
And tried like this:
But no presets were shown in Krita. I restarted Krita every time. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You need to add comma between the custom sampler blocks, next to the curly bracket separator: { and of course, name them differently. Otherwise, your 2nd try was correct |
Beta Was this translation helpful? Give feedback.
You need to add comma between the custom sampler blocks, next to the curly bracket separator:
{
"My Custom Sampler - DPM++ 3M": {
"sampler": "dpmpp_3m_sde",
"scheduler": "exponential",
"steps": 20,
"minimum_steps": 5,
"cfg": 7.0
},
"My Custom Sampler - DPM++ 3M": {
"sampler": "dpmpp_3m_sde",
"scheduler": "exponential",
"steps": 20,
"minimum_steps": 5,
"cfg": 7.0
}
}
and of course, name them differently.
Otherwise, your 2nd try was correct