├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── pyproject.toml └── vsrealesrgan ├── __init__.py ├── __main__.py ├── arch_util.py ├── models ├── Ani4Kv2_Compact_2x.pth ├── Ani4Kv2_UltraCompact_2x.pth ├── AniScale2_Compact_2x.pth ├── AniScale2_Refiner_1x.pth ├── Anime1080Fixer_SuperUltraCompact_1x.pth ├── AnimeJaNai_HD_V3Sharp1_Compact_2x.pth ├── AnimeJaNai_HD_V3Sharp1_SuperUltraCompact_2x.pth ├── AnimeJaNai_HD_V3Sharp1_UltraCompact_2x.pth ├── AnimeJaNai_HD_V3_Compact_2x.pth ├── AnimeJaNai_HD_V3_SuperUltraCompact_2x.pth ├── AnimeJaNai_HD_V3_UltraCompact_2x.pth ├── AnimeJaNai_SD_V1beta34_Compact_2x.pth ├── AnimeJaNai_V2_Compact_2x.pth ├── AnimeJaNai_V2_SuperUltraCompact_2x.pth ├── AnimeJaNai_V2_UltraCompact_2x.pth ├── ESRGAN_SRx4.pth ├── LDVDeNoise_35mm_Compact.pth ├── OpenProteus_Compact_2x.pth ├── RealESRGAN_x2plus.pth ├── RealESRGAN_x4plus.pth ├── RealESRGAN_x4plus_anime_6B.pth ├── cHiDeNoise_Compact.pth ├── realesr_animevideov3.pth ├── realesr_general_wdn_x4v3.pth └── realesr_general_x4v3.pth ├── rrdbnet_arch.py └── srvgg_arch.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolyWu/vs-realesrgan/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolyWu/vs-realesrgan/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolyWu/vs-realesrgan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolyWu/vs-realesrgan/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolyWu/vs-realesrgan/HEAD/pyproject.toml -------------------------------------------------------------------------------- /vsrealesrgan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolyWu/vs-realesrgan/HEAD/vsrealesrgan/__init__.py -------------------------------------------------------------------------------- /vsrealesrgan/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolyWu/vs-realesrgan/HEAD/vsrealesrgan/__main__.py -------------------------------------------------------------------------------- /vsrealesrgan/arch_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolyWu/vs-realesrgan/HEAD/vsrealesrgan/arch_util.py -------------------------------------------------------------------------------- /vsrealesrgan/models/Ani4Kv2_Compact_2x.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/Ani4Kv2_UltraCompact_2x.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/AniScale2_Compact_2x.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/AniScale2_Refiner_1x.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/Anime1080Fixer_SuperUltraCompact_1x.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/AnimeJaNai_HD_V3Sharp1_Compact_2x.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/AnimeJaNai_HD_V3Sharp1_SuperUltraCompact_2x.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/AnimeJaNai_HD_V3Sharp1_UltraCompact_2x.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/AnimeJaNai_HD_V3_Compact_2x.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/AnimeJaNai_HD_V3_SuperUltraCompact_2x.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/AnimeJaNai_HD_V3_UltraCompact_2x.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/AnimeJaNai_SD_V1beta34_Compact_2x.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/AnimeJaNai_V2_Compact_2x.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/AnimeJaNai_V2_SuperUltraCompact_2x.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/AnimeJaNai_V2_UltraCompact_2x.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/ESRGAN_SRx4.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/LDVDeNoise_35mm_Compact.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/OpenProteus_Compact_2x.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/RealESRGAN_x2plus.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/RealESRGAN_x4plus.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/RealESRGAN_x4plus_anime_6B.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/cHiDeNoise_Compact.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/realesr_animevideov3.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/realesr_general_wdn_x4v3.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/models/realesr_general_x4v3.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsrealesrgan/rrdbnet_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolyWu/vs-realesrgan/HEAD/vsrealesrgan/rrdbnet_arch.py -------------------------------------------------------------------------------- /vsrealesrgan/srvgg_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolyWu/vs-realesrgan/HEAD/vsrealesrgan/srvgg_arch.py --------------------------------------------------------------------------------