Spaces:
Runtime error
Runtime error
Johannes
commited on
Commit
·
b4bbb82
1
Parent(s):
8aef119
remove example
Browse files
app.py
CHANGED
@@ -27,7 +27,7 @@ def generate_images(prompt: str, negative_prompt: str, num_imgs_to_gen: int, num
|
|
27 |
|
28 |
# pass function, input type for prompt, the output for multiple images
|
29 |
gr.Interface(
|
30 |
-
generate_images,
|
31 |
[
|
32 |
gr.Textbox(label="Positive Prompt", value="a photo of paranoid marvin a robot"),
|
33 |
gr.Textbox(label="Negative Prompt", value="low quality, deformed"),
|
@@ -38,7 +38,5 @@ gr.Interface(
|
|
38 |
gr.Gallery(show_label=False).style(grid=(1,2)),
|
39 |
],
|
40 |
title="Keras Dreambooth - Marvin the Paranoid Android",
|
41 |
-
description="This model has been fine-tuned to learn the concept of Marvin the paranoid Android from The Hitchhiker's Guide to the Galaxy."
|
42 |
-
|
43 |
-
cache_examples=True
|
44 |
-
).queue().launch(debug=True)
|
|
|
27 |
|
28 |
# pass function, input type for prompt, the output for multiple images
|
29 |
gr.Interface(
|
30 |
+
generate_images,
|
31 |
[
|
32 |
gr.Textbox(label="Positive Prompt", value="a photo of paranoid marvin a robot"),
|
33 |
gr.Textbox(label="Negative Prompt", value="low quality, deformed"),
|
|
|
38 |
gr.Gallery(show_label=False).style(grid=(1,2)),
|
39 |
],
|
40 |
title="Keras Dreambooth - Marvin the Paranoid Android",
|
41 |
+
description="This model has been fine-tuned to learn the concept of Marvin the paranoid Android from The Hitchhiker's Guide to the Galaxy."
|
42 |
+
).queue().launch(debug=True)
|
|
|
|