Spaces:
Runtime error
Runtime error
test show_process
Browse files
app.py
CHANGED
@@ -52,7 +52,7 @@ with gr.Blocks() as demo:
|
|
52 |
convert_button.click(
|
53 |
fn=convert_to_grayscale,
|
54 |
inputs=[video_input, history_state],
|
55 |
-
outputs=[video_output, history_state]
|
56 |
show_progress=True
|
57 |
)
|
58 |
|
@@ -63,7 +63,7 @@ with gr.Blocks() as demo:
|
|
63 |
fn=lambda history: "<pre>" + "\n".join(history) + "</pre>",
|
64 |
inputs=history_state,
|
65 |
outputs=history_output,
|
66 |
-
queue=False
|
67 |
show_progress=False
|
68 |
)
|
69 |
|
|
|
52 |
convert_button.click(
|
53 |
fn=convert_to_grayscale,
|
54 |
inputs=[video_input, history_state],
|
55 |
+
outputs=[video_output, history_state],
|
56 |
show_progress=True
|
57 |
)
|
58 |
|
|
|
63 |
fn=lambda history: "<pre>" + "\n".join(history) + "</pre>",
|
64 |
inputs=history_state,
|
65 |
outputs=history_output,
|
66 |
+
queue=False,
|
67 |
show_progress=False
|
68 |
)
|
69 |
|