Spaces:
Running
on
L40S
Running
on
L40S
Commit
·
77f454d
1
Parent(s):
7fe48db
small fix
Browse files
documentation/example_gradio_space_for_huggingface/app.py
CHANGED
@@ -512,10 +512,10 @@ with gr.Blocks(title="Video Generation API") as app:
|
|
512 |
|
513 |
seed = gr.Slider(
|
514 |
label="Generation Seed (-1 for random)",
|
515 |
-
minimum
|
516 |
-
maximum=
|
517 |
step=1,
|
518 |
-
value
|
519 |
)
|
520 |
|
521 |
enable_cpu_offload = gr.Checkbox(
|
|
|
512 |
|
513 |
seed = gr.Slider(
|
514 |
label="Generation Seed (-1 for random)",
|
515 |
+
minimum=0,
|
516 |
+
maximum=4294967295, # 2^32 - 1
|
517 |
step=1,
|
518 |
+
value=0
|
519 |
)
|
520 |
|
521 |
enable_cpu_offload = gr.Checkbox(
|