File size: 691 Bytes
4293a44 60da146 4293a44 60da146 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
---
license: apache-2.0
tags:
- object-detection
- computer-vision
- gan
- animegan
---
### Model Description
[AnimeSR](https://arxiv.org/abs/2206.07038): Learning Real-World Super-Resolution Models for Animation Videos
### Installation
```
pip install animesr
```
### Anime GAN
```python
from animesr.inference_animesr_video import main
main(source='test.mp4', 'AnimeSR_v2')
```
### BibTeX Entry and Citation Info
```
@InProceedings{wu2022animesr,
author={Wu, Yanze and Wang, Xintao and Li, Gen and Shan, Ying},
title={AnimeSR: Learning Real-World Super-Resolution Models for Animation Videos},
booktitle={Advances in Neural Information Processing Systems},
year={2022}
}
``` |