Update app.py
Browse files
app.py
CHANGED
@@ -4,7 +4,7 @@ import gradio as gr
|
|
4 |
|
5 |
generator = Text2Image(
|
6 |
img_height=512,
|
7 |
-
img_width=
|
8 |
jit_compile=False)
|
9 |
|
10 |
def txt2img(prompt, guide, steps, Temp):
|
@@ -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. https://keras.io/about/')
|
24 |
iface.launch()
|
|
|
4 |
|
5 |
generator = Text2Image(
|
6 |
img_height=512,
|
7 |
+
img_width=768,
|
8 |
jit_compile=False)
|
9 |
|
10 |
def txt2img(prompt, guide, steps, Temp):
|
|
|
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/', article = "Code Monkey: <a href=\"https://huggingface.co/Manjushri\">Manjushri</a>")
|
24 |
iface.launch()
|