wkrettek commited on
Commit
74cdcdb
·
verified ·
1 Parent(s): 43c0bb8

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +37 -0
README.md ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: bsd-3-clause
3
+ tags:
4
+ - image-super-resolution
5
+ - real-esrgan
6
+ - safetensors
7
+ ---
8
+
9
+ # Real-ESRGAN Models (SafeTensors)
10
+
11
+ Pretrained Real-ESRGAN model weights converted from PyTorch to SafeTensors format for use with [gabagool](https://github.com/wkrettek/gabagool), a Rust implementation of Real-ESRGAN using the Burn ML framework.
12
+
13
+ ## Models
14
+
15
+ | File | Original Model | Architecture | Scale | Size |
16
+ |------|---------------|-------------|-------|------|
17
+ | `realesrgan_x4plus.safetensors` | RealESRGAN_x4plus | RRDBNet (23 blocks) | 4x | 67 MB |
18
+ | `realesrgan_x4plus_anime_6B.safetensors` | RealESRGAN_x4plus_anime_6B | RRDBNet (6 blocks) | 4x | 18 MB |
19
+
20
+ ## License
21
+
22
+ These weights are converted from the official [Real-ESRGAN](https://github.com/xinntao/Real-ESRGAN) release and are distributed under the same **BSD 3-Clause License**.
23
+
24
+ Copyright (c) 2021, Xintao Wang. All rights reserved.
25
+
26
+ See the [Real-ESRGAN LICENSE](https://github.com/xinntao/Real-ESRGAN/blob/master/LICENSE) for full terms.
27
+
28
+ ## Citation
29
+
30
+ ```bibtex
31
+ @InProceedings{wang2021realesrgan,
32
+ author = {Xintao Wang and Liangbin Xie and Chao Dong and Ying Shan},
33
+ title = {Real-ESRGAN: Training Real-World Blind Super-Resolution with Pure Synthetic Data},
34
+ booktitle = {International Conference on Computer Vision Workshops (ICCVW)},
35
+ date = {2021}
36
+ }
37
+ ```