├── .gitignore ├── LICENSE ├── LICENSE2 ├── README.md ├── README_CN.md ├── scripts └── stablesr.py ├── srmodule ├── attn.py ├── colorfix.py ├── spade.py └── struct_cond.py └── tools ├── extract_srmodule.py └── extract_vaecfw.py /.gitignore: -------------------------------------------------------------------------------- 1 | # meta 2 | .vscode/ 3 | __pycache__/ 4 | .DS_Store 5 | 6 | # settings 7 | models/*.ckpt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkuliyi2015/sd-webui-stablesr/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkuliyi2015/sd-webui-stablesr/HEAD/LICENSE2 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkuliyi2015/sd-webui-stablesr/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkuliyi2015/sd-webui-stablesr/HEAD/README_CN.md -------------------------------------------------------------------------------- /scripts/stablesr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkuliyi2015/sd-webui-stablesr/HEAD/scripts/stablesr.py -------------------------------------------------------------------------------- /srmodule/attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkuliyi2015/sd-webui-stablesr/HEAD/srmodule/attn.py -------------------------------------------------------------------------------- /srmodule/colorfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkuliyi2015/sd-webui-stablesr/HEAD/srmodule/colorfix.py -------------------------------------------------------------------------------- /srmodule/spade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkuliyi2015/sd-webui-stablesr/HEAD/srmodule/spade.py -------------------------------------------------------------------------------- /srmodule/struct_cond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkuliyi2015/sd-webui-stablesr/HEAD/srmodule/struct_cond.py -------------------------------------------------------------------------------- /tools/extract_srmodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkuliyi2015/sd-webui-stablesr/HEAD/tools/extract_srmodule.py -------------------------------------------------------------------------------- /tools/extract_vaecfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkuliyi2015/sd-webui-stablesr/HEAD/tools/extract_vaecfw.py --------------------------------------------------------------------------------