Spaces:
Runtime error
Runtime error
AmpleBasis
commited on
Commit
•
1dab519
1
Parent(s):
d53ef6d
Update app.py
Browse files
app.py
CHANGED
@@ -29,7 +29,7 @@ with gr.Blocks() as demo:
|
|
29 |
gr.Markdown("""
|
30 |
# Seymour Diffusion
|
31 |
This is a Keras Dreambooth model fine-tuned to images of Seymour, a cat.
|
32 |
-
The model, part of the [Keras Dreambooth Sprint](https://github.com/huggingface/community-events/tree/main/keras-dreambooth-sprint) trained by Pedro Pacheco, can be found in [AmpleBasis/seymour-cat](https://huggingface.co/AmpleBasis/seymour-cat).
|
33 |
|
34 |
The model should be used with a prompt containing `symr cat`. A typical prompt for this model is `photo of symr cat`.
|
35 |
|
@@ -47,7 +47,7 @@ with gr.Blocks() as demo:
|
|
47 |
|
48 |
run.click(generate_images, inputs=[prompt,negative_prompt, samples, num_steps, ugs], outputs=gallery)
|
49 |
|
50 |
-
gr.Examples([["photo of symr cat", 1, 40, 7]],
|
51 |
|
52 |
[prompt,negative_prompt, samples,num_steps, ugs], gallery, generate_images)
|
53 |
|
|
|
29 |
gr.Markdown("""
|
30 |
# Seymour Diffusion
|
31 |
This is a Keras Dreambooth model fine-tuned to images of Seymour, a cat.
|
32 |
+
The model, part of the [Keras Dreambooth Sprint](https://github.com/huggingface/community-events/tree/main/keras-dreambooth-sprint), was trained by Pedro Pacheco, and can be found in [AmpleBasis/seymour-cat](https://huggingface.co/AmpleBasis/seymour-cat).
|
33 |
|
34 |
The model should be used with a prompt containing `symr cat`. A typical prompt for this model is `photo of symr cat`.
|
35 |
|
|
|
47 |
|
48 |
run.click(generate_images, inputs=[prompt,negative_prompt, samples, num_steps, ugs], outputs=gallery)
|
49 |
|
50 |
+
gr.Examples([["photo of symr cat wearing a pirate costume", "dog,human,deformed,lowres",1, 40, 7]],
|
51 |
|
52 |
[prompt,negative_prompt, samples,num_steps, ugs], gallery, generate_images)
|
53 |
|