Spaces:
Runtime error
Runtime error
checking show_progress
Browse files
app.py
CHANGED
@@ -53,6 +53,7 @@ with gr.Blocks() as demo:
|
|
53 |
fn=convert_to_grayscale,
|
54 |
inputs=[video_input, history_state],
|
55 |
outputs=[video_output, history_state]
|
|
|
56 |
)
|
57 |
|
58 |
with gr.Tab("History") as history_tab:
|
@@ -63,6 +64,7 @@ with gr.Blocks() as demo:
|
|
63 |
inputs=history_state,
|
64 |
outputs=history_output,
|
65 |
queue=False
|
|
|
66 |
)
|
67 |
|
68 |
demo.launch()
|
|
|
53 |
fn=convert_to_grayscale,
|
54 |
inputs=[video_input, history_state],
|
55 |
outputs=[video_output, history_state]
|
56 |
+
show_progress=True
|
57 |
)
|
58 |
|
59 |
with gr.Tab("History") as history_tab:
|
|
|
64 |
inputs=history_state,
|
65 |
outputs=history_output,
|
66 |
queue=False
|
67 |
+
show_progress=False
|
68 |
)
|
69 |
|
70 |
demo.launch()
|