├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── __init__.py ├── nodes.py ├── requirements.txt ├── thera ├── model │ ├── __init__.py │ ├── convnext.py │ ├── edsr.py │ ├── hyper.py │ ├── init.py │ ├── rdn.py │ ├── swin_ir.py │ ├── tail.py │ └── thera.py ├── super_resolve.py └── utils.py ├── utils.py └── workflows └── thera_workflow.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Thera/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Thera/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Thera/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Thera/HEAD/__init__.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Thera/HEAD/nodes.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Thera/HEAD/requirements.txt -------------------------------------------------------------------------------- /thera/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Thera/HEAD/thera/model/__init__.py -------------------------------------------------------------------------------- /thera/model/convnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Thera/HEAD/thera/model/convnext.py -------------------------------------------------------------------------------- /thera/model/edsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Thera/HEAD/thera/model/edsr.py -------------------------------------------------------------------------------- /thera/model/hyper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Thera/HEAD/thera/model/hyper.py -------------------------------------------------------------------------------- /thera/model/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Thera/HEAD/thera/model/init.py -------------------------------------------------------------------------------- /thera/model/rdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Thera/HEAD/thera/model/rdn.py -------------------------------------------------------------------------------- /thera/model/swin_ir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Thera/HEAD/thera/model/swin_ir.py -------------------------------------------------------------------------------- /thera/model/tail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Thera/HEAD/thera/model/tail.py -------------------------------------------------------------------------------- /thera/model/thera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Thera/HEAD/thera/model/thera.py -------------------------------------------------------------------------------- /thera/super_resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Thera/HEAD/thera/super_resolve.py -------------------------------------------------------------------------------- /thera/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Thera/HEAD/thera/utils.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Thera/HEAD/utils.py -------------------------------------------------------------------------------- /workflows/thera_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvraj108c/ComfyUI-Thera/HEAD/workflows/thera_workflow.json --------------------------------------------------------------------------------