1aurent commited on
Commit
3e62d8e
1 Parent(s): 2d55876

improve wording

Browse files
Files changed (2) hide show
  1. README.md +1 -1
  2. src/app.py +12 -5
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- title: Enhancer
3
  emoji: 🖼️🪄
4
  colorFrom: pink
5
  colorTo: indigo
 
1
  ---
2
+ title: Finegrain Image Enhancer
3
  emoji: 🖼️🪄
4
  colorFrom: pink
5
  colorTo: indigo
src/app.py CHANGED
@@ -21,16 +21,23 @@ from refiners.foundationals.latent_diffusion import Solver, solvers
21
  from enhancer import ESRGANUpscaler, ESRGANUpscalerCheckpoints
22
 
23
  TITLE = """
24
- <h1 align="center">Image Enhancer, implemented using refiners</h1>
 
 
 
25
 
26
- <p>
27
- <center>
 
 
 
 
28
  <a style="font-size: 1.25rem;" href="https://blog.finegrain.ai/posts/reproducing-clarity-upscaler/" target="_blank">[blog post]</a>
29
  <a style="font-size: 1.25rem;" href="https://github.com/finegrain-ai/refiners" target="_blank">[refiners]</a>
30
  <a style="font-size: 1.25rem;" href="https://github.com/philz1337x/clarity-upscaler" target="_blank">[clarity-upscaler]</a>
31
  <a style="font-size: 1.25rem;" href="https://finegrain.ai/" target="_blank">[finegrain]</a>
32
- </center>
33
- </p>
34
  """
35
 
36
  CHECKPOINTS = ESRGANUpscalerCheckpoints(
 
21
  from enhancer import ESRGANUpscaler, ESRGANUpscalerCheckpoints
22
 
23
  TITLE = """
24
+ <center>
25
+ <h1 align="center">
26
+ Image Enhancer, Powered By Refiners
27
+ </h1>
28
 
29
+ <p>
30
+ We reproduced the Clarity Image Enhancer on top of Refiners, our micro-framework for simple foundation model adaptation.
31
+ Feel free to star Refiners on GitHub if you like it!
32
+ </p>
33
+
34
+ <p>
35
  <a style="font-size: 1.25rem;" href="https://blog.finegrain.ai/posts/reproducing-clarity-upscaler/" target="_blank">[blog post]</a>
36
  <a style="font-size: 1.25rem;" href="https://github.com/finegrain-ai/refiners" target="_blank">[refiners]</a>
37
  <a style="font-size: 1.25rem;" href="https://github.com/philz1337x/clarity-upscaler" target="_blank">[clarity-upscaler]</a>
38
  <a style="font-size: 1.25rem;" href="https://finegrain.ai/" target="_blank">[finegrain]</a>
39
+ </p>
40
+ </center>
41
  """
42
 
43
  CHECKPOINTS = ESRGANUpscalerCheckpoints(