gitextract_0qygtin4/ ├── .github/ │ └── workflows/ │ └── pylint.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── Training.md ├── VERSION ├── animesr/ │ ├── __init__.py │ ├── archs/ │ │ ├── __init__.py │ │ ├── discriminator_arch.py │ │ ├── simple_degradation_arch.py │ │ └── vsr_arch.py │ ├── data/ │ │ ├── __init__.py │ │ ├── data_utils.py │ │ ├── ffmpeg_anime_dataset.py │ │ ├── ffmpeg_anime_lbo_dataset.py │ │ └── paired_image_dataset.py │ ├── models/ │ │ ├── __init__.py │ │ ├── degradation_gan_model.py │ │ ├── degradation_model.py │ │ ├── video_recurrent_gan_model.py │ │ └── video_recurrent_model.py │ ├── test.py │ ├── train.py │ └── utils/ │ ├── __init__.py │ ├── inference_base.py │ ├── shot_detector.py │ └── video_util.py ├── cog.yaml ├── options/ │ ├── train_animesr_step1_gan_BasicOPonly.yml │ ├── train_animesr_step1_net_BasicOPonly.yml │ ├── train_animesr_step2_lbo_1_gan.yml │ ├── train_animesr_step2_lbo_1_net.yml │ └── train_animesr_step3_gan_3LBOs.yml ├── predict.py ├── requirements.txt ├── scripts/ │ ├── anime_videos_preprocessing.py │ ├── inference_animesr_frames.py │ ├── inference_animesr_video.py │ └── metrics/ │ ├── MANIQA/ │ │ ├── inference_MANIQA.py │ │ ├── models/ │ │ │ ├── model_attentionIQA2.py │ │ │ └── swin.py │ │ ├── pipal_data.py │ │ └── utils.py │ └── README.md ├── setup.cfg └── setup.py