Spaces:
Running
on
Zero
Running
on
Zero
Update requirements.txt
#2
by
linoyts
HF Staff
- opened
- app.py +1 -1
- requirements.txt +2 -0
app.py
CHANGED
@@ -178,7 +178,7 @@ with gr.Blocks(css=css, theme=gr.themes.Ocean()) as demo:
|
|
178 |
|
179 |
|
180 |
with gr.Accordion("Advanced settings", open=False):
|
181 |
-
negative_prompt = gr.Textbox(label="negative prompt", value="", visible=False)
|
182 |
with gr.Row():
|
183 |
seed = gr.Number(label="seed", value=0, precision=0)
|
184 |
randomize_seed = gr.Checkbox(label="randomize seed")
|
|
|
178 |
|
179 |
|
180 |
with gr.Accordion("Advanced settings", open=False):
|
181 |
+
negative_prompt = gr.Textbox(label="negative prompt", value="worst quality, inconsistent motion, blurry, jittery, distorted", visible=False)
|
182 |
with gr.Row():
|
183 |
seed = gr.Number(label="seed", value=0, precision=0)
|
184 |
randomize_seed = gr.Checkbox(label="randomize seed")
|
requirements.txt
CHANGED
@@ -7,5 +7,7 @@ torchvision
|
|
7 |
huggingface_hub
|
8 |
spaces
|
9 |
opencv-python
|
|
|
|
|
10 |
|
11 |
git+https://github.com/huggingface/diffusers.git@main
|
|
|
7 |
huggingface_hub
|
8 |
spaces
|
9 |
opencv-python
|
10 |
+
imageio
|
11 |
+
imageio-ffmpeg
|
12 |
|
13 |
git+https://github.com/huggingface/diffusers.git@main
|