├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── configs └── eval5d.yml ├── install.py ├── instruct_ir.py ├── instruct_ir_model.py ├── ir_workflow.jpg ├── ir_workflow.json ├── model └── put_model_here.txt ├── models ├── instructir.py ├── nafnet.py └── nafnet_utils.py └── text ├── models.py └── sample_prompts.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongpei/ComfyUI-InstructIR/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongpei/ComfyUI-InstructIR/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongpei/ComfyUI-InstructIR/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongpei/ComfyUI-InstructIR/HEAD/__init__.py -------------------------------------------------------------------------------- /configs/eval5d.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongpei/ComfyUI-InstructIR/HEAD/configs/eval5d.yml -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongpei/ComfyUI-InstructIR/HEAD/install.py -------------------------------------------------------------------------------- /instruct_ir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongpei/ComfyUI-InstructIR/HEAD/instruct_ir.py -------------------------------------------------------------------------------- /instruct_ir_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongpei/ComfyUI-InstructIR/HEAD/instruct_ir_model.py -------------------------------------------------------------------------------- /ir_workflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongpei/ComfyUI-InstructIR/HEAD/ir_workflow.jpg -------------------------------------------------------------------------------- /ir_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongpei/ComfyUI-InstructIR/HEAD/ir_workflow.json -------------------------------------------------------------------------------- /model/put_model_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/instructir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongpei/ComfyUI-InstructIR/HEAD/models/instructir.py -------------------------------------------------------------------------------- /models/nafnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongpei/ComfyUI-InstructIR/HEAD/models/nafnet.py -------------------------------------------------------------------------------- /models/nafnet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongpei/ComfyUI-InstructIR/HEAD/models/nafnet_utils.py -------------------------------------------------------------------------------- /text/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongpei/ComfyUI-InstructIR/HEAD/text/models.py -------------------------------------------------------------------------------- /text/sample_prompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongpei/ComfyUI-InstructIR/HEAD/text/sample_prompts.json --------------------------------------------------------------------------------