Acly commited on
Commit
7ccef9b
·
1 Parent(s): a5a2abf

Add some content to README

Browse files
Files changed (2) hide show
  1. .gitattributes +1 -2
  2. README.md +21 -0
.gitattributes CHANGED
@@ -33,5 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
- ESRGAN-4x_foolhardy_Remacrih-F16.gguf filter=lfs diff=lfs merge=lfs -text
37
- RealESRGAN-x4plus_anime-6B-F16.gguf filter=lfs diff=lfs merge=lfs -text
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ *.gguf filter=lfs diff=lfs merge=lfs -text
 
README.md CHANGED
@@ -1,3 +1,24 @@
1
  ---
2
  license: bsd-3-clause
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: bsd-3-clause
3
+ tags:
4
+ - super-resolution
5
+ - vision.cpp
6
+ pipeline_tag: image-to-image
7
  ---
8
+ # GGUF models for Real-ESRGAN
9
+
10
+ ESRGAN is a model for image super-resolution (upscaling). Real-ESRGAN refers to
11
+ a collection of models trained to deal with common degradations in images. The
12
+ weights in this repository are converted for lightweight inference on consumer
13
+ hardware with [vision.cpp](https://github.com/Acly/vision.cpp).
14
+
15
+ * Original repository: [xinntao/Real-ESRGAN (Github)](https://github.com/xinntao/Real-ESRGAN)
16
+ * Original weights: [found here (Github)](https://github.com/xinntao/Real-ESRGAN/releases)
17
+
18
+ ## Run
19
+
20
+ Example inference with [vision.cpp](https://github.com/Acly/vision.cpp):
21
+
22
+ ```sh
23
+ vision-cli esrgan -m RealESRGAN-x4plus_anime-6B-F16.gguf -i input.png -o output.png
24
+ ```