├── KandiSuperRes.ipynb ├── KandiSuperRes ├── __init__.py ├── model │ ├── __init__.py │ ├── diffusion_refine.py │ ├── diffusion_sr.py │ ├── diffusion_sr_turbo.py │ ├── nn.py │ ├── unet.py │ ├── unet_sr.py │ └── utils.py ├── movq.py ├── sr_pipeline.py └── utils.py ├── LICENSE ├── README.md ├── assets ├── infinity1.png ├── infinity2.png ├── title.png ├── title_flash.gif └── title_flash.png ├── examples └── example.jpg ├── requirements.txt └── weights ├── context.pt └── context_mask.pt /KandiSuperRes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/KandiSuperRes/HEAD/KandiSuperRes.ipynb -------------------------------------------------------------------------------- /KandiSuperRes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/KandiSuperRes/HEAD/KandiSuperRes/__init__.py -------------------------------------------------------------------------------- /KandiSuperRes/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KandiSuperRes/model/diffusion_refine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/KandiSuperRes/HEAD/KandiSuperRes/model/diffusion_refine.py -------------------------------------------------------------------------------- /KandiSuperRes/model/diffusion_sr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/KandiSuperRes/HEAD/KandiSuperRes/model/diffusion_sr.py -------------------------------------------------------------------------------- /KandiSuperRes/model/diffusion_sr_turbo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/KandiSuperRes/HEAD/KandiSuperRes/model/diffusion_sr_turbo.py -------------------------------------------------------------------------------- /KandiSuperRes/model/nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/KandiSuperRes/HEAD/KandiSuperRes/model/nn.py -------------------------------------------------------------------------------- /KandiSuperRes/model/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/KandiSuperRes/HEAD/KandiSuperRes/model/unet.py -------------------------------------------------------------------------------- /KandiSuperRes/model/unet_sr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/KandiSuperRes/HEAD/KandiSuperRes/model/unet_sr.py -------------------------------------------------------------------------------- /KandiSuperRes/model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/KandiSuperRes/HEAD/KandiSuperRes/model/utils.py -------------------------------------------------------------------------------- /KandiSuperRes/movq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/KandiSuperRes/HEAD/KandiSuperRes/movq.py -------------------------------------------------------------------------------- /KandiSuperRes/sr_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/KandiSuperRes/HEAD/KandiSuperRes/sr_pipeline.py -------------------------------------------------------------------------------- /KandiSuperRes/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/KandiSuperRes/HEAD/KandiSuperRes/utils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/KandiSuperRes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/KandiSuperRes/HEAD/README.md -------------------------------------------------------------------------------- /assets/infinity1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/KandiSuperRes/HEAD/assets/infinity1.png -------------------------------------------------------------------------------- /assets/infinity2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/KandiSuperRes/HEAD/assets/infinity2.png -------------------------------------------------------------------------------- /assets/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/KandiSuperRes/HEAD/assets/title.png -------------------------------------------------------------------------------- /assets/title_flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/KandiSuperRes/HEAD/assets/title_flash.gif -------------------------------------------------------------------------------- /assets/title_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/KandiSuperRes/HEAD/assets/title_flash.png -------------------------------------------------------------------------------- /examples/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/KandiSuperRes/HEAD/examples/example.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/KandiSuperRes/HEAD/requirements.txt -------------------------------------------------------------------------------- /weights/context.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/KandiSuperRes/HEAD/weights/context.pt -------------------------------------------------------------------------------- /weights/context_mask.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/KandiSuperRes/HEAD/weights/context_mask.pt --------------------------------------------------------------------------------