Update app.py
Browse files
app.py
CHANGED
|
@@ -101,7 +101,7 @@ def main():
|
|
| 101 |
ours = gr.Gallery(label="Ego-VPA prediction", columns=[1], rows=[1], object_fit="contain", height="auto")
|
| 102 |
btn = gr.Button("Predict", variant="primary")
|
| 103 |
btn.click(predict_t2v, inputs=[idx], outputs=[ours])
|
| 104 |
-
gr.Examples(examples=[[i, x] for i, x in enumerate(t2v_samples)], inputs=[idx, text]
|
| 105 |
|
| 106 |
|
| 107 |
|
|
|
|
| 101 |
ours = gr.Gallery(label="Ego-VPA prediction", columns=[1], rows=[1], object_fit="contain", height="auto")
|
| 102 |
btn = gr.Button("Predict", variant="primary")
|
| 103 |
btn.click(predict_t2v, inputs=[idx], outputs=[ours])
|
| 104 |
+
gr.Examples(examples=[[i, x] for i, x in enumerate(t2v_samples)], inputs=[idx, text])
|
| 105 |
|
| 106 |
|
| 107 |
|