mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2026-01-07 01:32:49 -08:00
Add support for DAT upscaler models
This commit is contained in:
parent
cb5b335acd
commit
a97147bc8a
3 changed files with 89 additions and 0 deletions
|
|
@ -8,6 +8,11 @@ def realesrgan_models_names():
|
|||
return [x.name for x in modules.realesrgan_model.get_realesrgan_models(None)]
|
||||
|
||||
|
||||
def dat_models_names():
|
||||
import modules.dat_model
|
||||
return [x.name for x in modules.dat_model.get_dat_models(None)]
|
||||
|
||||
|
||||
def postprocessing_scripts():
|
||||
import modules.scripts
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue