laurenok24
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -321,13 +321,13 @@ with gr.Blocks() as demo_precomputed:
|
|
321 |
gr.Markdown(
|
322 |
"""
|
323 |
1. Select one of the example diving videos.
|
324 |
-
2. Hit the **Abstract Symbols** button.
|
325 |
"""
|
326 |
)
|
327 |
with gr.Row(variant='panel'):
|
328 |
with gr.Column():
|
329 |
video = gr.Video(label="Video", format="mp4", include_audio=False, sources=["upload"], interactive=False)
|
330 |
-
examples = gr.Examples(examples = [['01_10.mp4'], ['01_11.mp4'], ['01_16.mp4'], ['01_33.mp4'], ['01_76.mp4'], ['01_140.mp4']], inputs=[video], label="
|
331 |
symbol_output = gr.HTML(label="Output")
|
332 |
abstract_symbols_btn = gr.Button("Abstract Symbols", variant='secondary')
|
333 |
gr.Markdown(
|
|
|
321 |
gr.Markdown(
|
322 |
"""
|
323 |
1. Select one of the example diving videos.
|
324 |
+
2. Hit the **Abstract Symbols** button. The symbols abstracted will appear to the right of the diving video.
|
325 |
"""
|
326 |
)
|
327 |
with gr.Row(variant='panel'):
|
328 |
with gr.Column():
|
329 |
video = gr.Video(label="Video", format="mp4", include_audio=False, sources=["upload"], interactive=False)
|
330 |
+
examples = gr.Examples(examples = [['01_10.mp4'], ['01_11.mp4'], ['01_16.mp4'], ['01_33.mp4'], ['01_76.mp4'], ['01_140.mp4']], inputs=[video], label="Click on one of the following diving videos")
|
331 |
symbol_output = gr.HTML(label="Output")
|
332 |
abstract_symbols_btn = gr.Button("Abstract Symbols", variant='secondary')
|
333 |
gr.Markdown(
|