├── .gitignore ├── README.md ├── __init__.py ├── examples └── stablesr_w_color_fix.json ├── modules ├── attn.py ├── colorfix.py ├── spade.py ├── stablesr.py ├── struct_cond.py └── util.py └── nodes.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSJUSA/Comfyui-StableSR/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSJUSA/Comfyui-StableSR/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSJUSA/Comfyui-StableSR/HEAD/__init__.py -------------------------------------------------------------------------------- /examples/stablesr_w_color_fix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSJUSA/Comfyui-StableSR/HEAD/examples/stablesr_w_color_fix.json -------------------------------------------------------------------------------- /modules/attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSJUSA/Comfyui-StableSR/HEAD/modules/attn.py -------------------------------------------------------------------------------- /modules/colorfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSJUSA/Comfyui-StableSR/HEAD/modules/colorfix.py -------------------------------------------------------------------------------- /modules/spade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSJUSA/Comfyui-StableSR/HEAD/modules/spade.py -------------------------------------------------------------------------------- /modules/stablesr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSJUSA/Comfyui-StableSR/HEAD/modules/stablesr.py -------------------------------------------------------------------------------- /modules/struct_cond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSJUSA/Comfyui-StableSR/HEAD/modules/struct_cond.py -------------------------------------------------------------------------------- /modules/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSJUSA/Comfyui-StableSR/HEAD/modules/util.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSJUSA/Comfyui-StableSR/HEAD/nodes.py --------------------------------------------------------------------------------