Manjushri commited on
Commit
2ac8086
1 Parent(s): 84cba60

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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.', footer='About Keras: Keras is a deep learning API written in Python, running on top of the machine learning platform TensorFlow. It was developed with a focus on enabling fast experimentation. Being able to go from idea to result as fast as possible is key to doing good research. https://keras.io/about/')
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()