Update app.py
Browse files
app.py
CHANGED
@@ -49,10 +49,12 @@ output.style(grid=2, height="")
|
|
49 |
|
50 |
description = \
|
51 |
"""
|
52 |
-
|
53 |
-
|
|
|
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 |

|
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 |

|
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()
|