Spaces:
Paused
Paused
denoise strength slider steps change
Browse files
app.py
CHANGED
@@ -145,7 +145,7 @@ with gr.Blocks(css=css) as demo:
|
|
145 |
|
146 |
video_in = gr.Video(type="numpy", source="upload")
|
147 |
prompt_in = gr.Textbox(label="Prompt", placeholder="This must be the same prompt you used for the original clip :)", elem_id="prompt-in")
|
148 |
-
denoise_strength = gr.Slider(label="Denoise strength", minimum=0.6, maximum=0.9, step=0.
|
149 |
#inference_steps = gr.Slider(label="Inference Steps", minimum=10, maximum=100, step=1, value=40, interactive=False)
|
150 |
submit_btn = gr.Button("Submit")
|
151 |
video_result = gr.Video(label="Video Output", elem_id="video-output")
|
|
|
145 |
|
146 |
video_in = gr.Video(type="numpy", source="upload")
|
147 |
prompt_in = gr.Textbox(label="Prompt", placeholder="This must be the same prompt you used for the original clip :)", elem_id="prompt-in")
|
148 |
+
denoise_strength = gr.Slider(label="Denoise strength", minimum=0.6, maximum=0.9, step=0.01, value=0.66)
|
149 |
#inference_steps = gr.Slider(label="Inference Steps", minimum=10, maximum=100, step=1, value=40, interactive=False)
|
150 |
submit_btn = gr.Button("Submit")
|
151 |
video_result = gr.Video(label="Video Output", elem_id="video-output")
|