Spaces:
Sleeping
Sleeping
Commit ·
a7c4dc1
1
Parent(s): 4db18c7
Updates
Browse files- app.py +2 -2
- requirements.txt +3 -1
app.py
CHANGED
|
@@ -50,7 +50,7 @@ demo = gr.Interface(
|
|
| 50 |
gr.Textbox(
|
| 51 |
label="Prompt",
|
| 52 |
placeholder="Enter your image description here...",
|
| 53 |
-
value="
|
| 54 |
),
|
| 55 |
gr.Slider(
|
| 56 |
minimum=1,
|
|
@@ -79,7 +79,7 @@ demo = gr.Interface(
|
|
| 79 |
description="Generate images using Freepik's Flux model with Zero-GPU allocation. Using 25 fixed steps and random seed for each generation.",
|
| 80 |
examples=[
|
| 81 |
["A close-up image of a green alien with fluorescent skin in the middle of a dark purple forest", 3.5, 1024, 1024],
|
| 82 |
-
["
|
| 83 |
] # Properly closed the examples list
|
| 84 |
) # Properly closed the Interface parenthesis
|
| 85 |
|
|
|
|
| 50 |
gr.Textbox(
|
| 51 |
label="Prompt",
|
| 52 |
placeholder="Enter your image description here...",
|
| 53 |
+
value="a glass cup with beer, inside the beer a scuba diver, with a beautiful sunset background"
|
| 54 |
),
|
| 55 |
gr.Slider(
|
| 56 |
minimum=1,
|
|
|
|
| 79 |
description="Generate images using Freepik's Flux model with Zero-GPU allocation. Using 25 fixed steps and random seed for each generation.",
|
| 80 |
examples=[
|
| 81 |
["A close-up image of a green alien with fluorescent skin in the middle of a dark purple forest", 3.5, 1024, 1024],
|
| 82 |
+
["a glass cup with beer, inside the beer a scuba diver, with a beautiful sunset backgroudn", 3.5, 1024, 1024]
|
| 83 |
] # Properly closed the examples list
|
| 84 |
) # Properly closed the Interface parenthesis
|
| 85 |
|
requirements.txt
CHANGED
|
@@ -4,4 +4,6 @@ transformers
|
|
| 4 |
gradio
|
| 5 |
pillow
|
| 6 |
huggingface-hub
|
| 7 |
-
spaces
|
|
|
|
|
|
|
|
|
| 4 |
gradio
|
| 5 |
pillow
|
| 6 |
huggingface-hub
|
| 7 |
+
spaces
|
| 8 |
+
sentencepiece
|
| 9 |
+
accelerate
|