Update app.py
Browse files
app.py
CHANGED
@@ -55,7 +55,7 @@ Prompt used for every video: "A robotic arm with a gripper and a small cube on a
|
|
55 |
|
56 |
|
57 |
perfo_description = """
|
58 |
-
Our model has been benchmarked on a node of 4 Titan RTX 24Go GPUs, achieving an impressive
|
59 |
The Table on the right shows the performances of our models running on different nodes.
|
60 |
To make the benchmark, we loaded one of our model on every GPUs of the node. We then retrieve an episode of our simulation.
|
61 |
For every frame of the episode, we preprocess the image (resize, canny, …) and process the Canny image on the GPUs.
|
@@ -269,6 +269,11 @@ def create_demo(process, max_images=12, default_num_images=4):
|
|
269 |
show_label=False,
|
270 |
elem_id='gallery').style(grid=2,
|
271 |
height='auto')
|
|
|
|
|
|
|
|
|
|
|
272 |
|
273 |
with gr.Row():
|
274 |
gr.Markdown(description)
|
|
|
55 |
|
56 |
|
57 |
perfo_description = """
|
58 |
+
Our model has been benchmarked on a node of 4 Titan RTX 24Go GPUs, achieving an impressive 13 FPS image generation rate!
|
59 |
The Table on the right shows the performances of our models running on different nodes.
|
60 |
To make the benchmark, we loaded one of our model on every GPUs of the node. We then retrieve an episode of our simulation.
|
61 |
For every frame of the episode, we preprocess the image (resize, canny, …) and process the Canny image on the GPUs.
|
|
|
269 |
show_label=False,
|
270 |
elem_id='gallery').style(grid=2,
|
271 |
height='auto')
|
272 |
+
|
273 |
+
with gr.Row():
|
274 |
+
gr.Video("./trajectory_hf/trajectory_coyo2M-bridge325k_64.avi",
|
275 |
+
format="avi",
|
276 |
+
interactive=False)
|
277 |
|
278 |
with gr.Row():
|
279 |
gr.Markdown(description)
|