Sho commited on
Commit
e99f6cc
1 Parent(s): 4b25ea8

DOC: added README

Browse files
Files changed (1) hide show
  1. README.md +38 -0
README.md CHANGED
@@ -1,3 +1,41 @@
1
  ---
2
  license: mit
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  ---
4
+
5
+ # AnimeBackgroundGAN (CartoonGAN by Chen et. al.)
6
+
7
+ - [Makoto Shinkai (新海誠)](https://en.wikipedia.org/wiki/Makoto_Shinkai) pre-trained model from [CartoonGAN](http://openaccess.thecvf.com/content_cvpr_2018/CameraReady/2205.pdf) `[Chen et al., CVPR18]`.
8
+ - This model can transform real-life photos into Japanese-animation-like backgrounds, following the style of movies such as [Kimi no Na wa](https://en.wikipedia.org/wiki/Kimi_no_Na_wa) with a photorealistic painting style.
9
+ - The implementation is in PyTorch (see [source code here](https://huggingface.co/spaces/akiyamasho/AnimeBackgroundGAN/blob/main/network/Transformer.py)).
10
+ - Check out the demo here:
11
+
12
+ [![Demo in Hugging Face Spaces](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Spaces-blue)](https://huggingface.co/spaces/akiyamasho/AnimeBackgroundGAN)
13
+
14
+ # Other pre-trained model versions
15
+
16
+ The other versions were also trained from movies of the different Japanese animation directors.
17
+
18
+ ##### Mamoru Hosoda(細田守)
19
+ - director of [Wolf Children](https://en.wikipedia.org/wiki/Wolf_Children), with a distinct mild and cool background style
20
+ - [Director Profile](https://en.wikipedia.org/wiki/Mamoru_Hosoda)
21
+ - **Model Repository**: https://huggingface.co/akiyamasho/AnimeBackgroundGAN-Hosoda
22
+
23
+ ##### Satoshi Kon(今敏)
24
+ - director of [Paprika](https://en.wikipedia.org/wiki/Paprika_(2006_film)) with a distinct high contrast, reddish hue style
25
+ - [Director Profile](https://en.wikipedia.org/wiki/Satoshi_Kon)
26
+ - **Model Repository**: https://huggingface.co/akiyamasho/AnimeBackgroundGAN-Kon
27
+
28
+ ##### Hayao Miyazaki(宮崎駿)
29
+ - director of [Howl's Moving Castle](https://en.wikipedia.org/wiki/Howl%27s_Moving_Castle_(film)) with a relatively soft and painterly style
30
+ - [Director Profile](https://en.wikipedia.org/wiki/Hayao_Miyazaki)
31
+ - **Model Repository**: https://huggingface.co/akiyamasho/AnimeBackgroundGAN-Miyazaki
32
+
33
+ ### Credits
34
+
35
+ - Paper at [CartoonGAN: Generative Adversarial Networks for Photo Cartoonization](http://openaccess.thecvf.com/content_cvpr_2018/CameraReady/2205.pdf) `[Chen et al., CVPR18]`
36
+ - Original PyTorch implementation was created by [Yijun Li](https://github.com/Yijunmaverick/)
37
+ - Spaces/Models re-packaging and implementation by [Shō Akiyama](https://github.com/Yijunmaverick/).
38
+
39
+ ##### Special Thanks
40
+ - [Nima Boscarino](https://github.com/NimaBoscarino)
41
+ - [Omar Sanseviero](https://github.com/osanseviero)