Update app.py
Browse files
app.py
CHANGED
@@ -20,5 +20,5 @@ iface = gr.Interface(fn=txt2img, inputs=[
|
|
20 |
gr.Textbox(label = 'Input Text Prompt'),
|
21 |
gr.Slider(2, 20, value = 9, label = 'Guidence Scale'),
|
22 |
gr.Slider(10, 100, value = 50, step = 1, label = 'Number of Iterations'),
|
23 |
-
gr.Slider(.01, 100, value=1)], outputs = 'image',title='Stable Diffusion with Keras and TensorFlow CPU or GPU', description='Now Using Keras and TensorFlow with Stable Diffusion. This allows very complex image generation with less code footprint, and less text.
|
24 |
iface.launch()
|
|
|
20 |
gr.Textbox(label = 'Input Text Prompt'),
|
21 |
gr.Slider(2, 20, value = 9, label = 'Guidence Scale'),
|
22 |
gr.Slider(10, 100, value = 50, step = 1, label = 'Number of Iterations'),
|
23 |
+
gr.Slider(.01, 100, value=1)], outputs = 'image',title='Stable Diffusion with Keras and TensorFlow CPU or GPU', description='Now Using Keras and TensorFlow with Stable Diffusion. This allows very complex image generation with less code footprint, and less text. https://keras.io/about/')
|
24 |
iface.launch()
|