Update app.py
Browse files
app.py
CHANGED
@@ -21,5 +21,5 @@ iface = gr.Interface(fn=txt2img, inputs=[
|
|
21 |
gr.Textbox(label = 'Input Text Prompt'),
|
22 |
gr.Slider(2, 20, value = 9, label = 'Guidence Scale'),
|
23 |
gr.Slider(10, 100, value = 50, step = 1, label = 'Number of Iterations'),
|
24 |
-
gr.Slider(1, 100, value=1, step=1)], outputs = 'image',title='Stable Diffusion with 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.')
|
25 |
iface.launch()
|
|
|
21 |
gr.Textbox(label = 'Input Text Prompt'),
|
22 |
gr.Slider(2, 20, value = 9, label = 'Guidence Scale'),
|
23 |
gr.Slider(10, 100, value = 50, step = 1, label = 'Number of Iterations'),
|
24 |
+
gr.Slider(1, 100, value=1, step=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.')
|
25 |
iface.launch()
|