fffiloni commited on
Commit
7210344
Β·
1 Parent(s): 5137a1a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -49,10 +49,12 @@ output.style(grid=2, height="")
49
 
50
  description = \
51
  """
52
-
53
- Generate variations on an input image using a fine-tuned version of Stable Diffision.
 
54
  Trained by [Justin Pinkney](https://www.justinpinkney.com) ([@Buntworthy](https://twitter.com/Buntworthy)) at [Lambda](https://lambdalabs.com/)
55
  This version has been ported to πŸ€— Diffusers library, see more details on how to use this version in the [Lambda Diffusers repo](https://github.com/LambdaLabsML/lambda-diffusers).
 
56
  __For the original training code see [this repo](https://github.com/justinpinkney/stable-diffusion).
57
  ![](https://raw.githubusercontent.com/justinpinkney/stable-diffusion/main/assets/im-vars-thin.jpg)
58
  """
@@ -73,6 +75,8 @@ demo = gr.Interface(
73
  fn=main,
74
  title="Stable Diffusion Image Variations",
75
  inputs=inputs,
76
- outputs=output
 
 
77
  )
78
  demo.launch()
 
49
 
50
  description = \
51
  """
52
+ __This demo is running on CPU. Working version fixed by @fffiloni. You'll get 4 images variations. NSFW filters enabled.__
53
+ <img id='visitor-badge' alt='visitor badge' src='https://visitor-badge.glitch.me/badge?page_id=gradio-blocks.stable-diffusion-img2img' style='display: inline-block'/>
54
+ Generate variations on an input image using a fine-tuned version of Stable Diffusion.
55
  Trained by [Justin Pinkney](https://www.justinpinkney.com) ([@Buntworthy](https://twitter.com/Buntworthy)) at [Lambda](https://lambdalabs.com/)
56
  This version has been ported to πŸ€— Diffusers library, see more details on how to use this version in the [Lambda Diffusers repo](https://github.com/LambdaLabsML/lambda-diffusers).
57
+
58
  __For the original training code see [this repo](https://github.com/justinpinkney/stable-diffusion).
59
  ![](https://raw.githubusercontent.com/justinpinkney/stable-diffusion/main/assets/im-vars-thin.jpg)
60
  """
 
75
  fn=main,
76
  title="Stable Diffusion Image Variations",
77
  inputs=inputs,
78
+ outputs=output,
79
+ description=description,
80
+ article=article
81
  )
82
  demo.launch()