Add new latent upscale modes
This commit is contained in:
parent
8d8a05a3bb
commit
96cf15bede
@ -564,8 +564,11 @@ if os.path.exists(config_filename):
|
|||||||
|
|
||||||
latent_upscale_default_mode = "Latent"
|
latent_upscale_default_mode = "Latent"
|
||||||
latent_upscale_modes = {
|
latent_upscale_modes = {
|
||||||
"Latent": "bilinear",
|
"Latent": {"mode": "bilinear", "antialias": False},
|
||||||
"Latent (nearest)": "nearest",
|
"Latent (antialiased)": {"mode": "bilinear", "antialias": True},
|
||||||
|
"Latent (bicubic)": {"mode": "bicubic", "antialias": False},
|
||||||
|
"Latent (bicubic, antialiased)": {"mode": "bicubic", "antialias": True},
|
||||||
|
"Latent (nearest)": {"mode": "nearest", "antialias": False},
|
||||||
}
|
}
|
||||||
|
|
||||||
sd_upscalers = []
|
sd_upscalers = []
|
||||||
|
Loading…
Reference in New Issue
Block a user