kadirnar commited on
Commit
bb2b225
1 Parent(s): 03966ad

Update README.md

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