Baptlem commited on
Commit
f7a5714
1 Parent(s): 404d455

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +38 -4
app.py CHANGED
@@ -241,10 +241,44 @@ def create_demo(process, max_images=12, default_num_images=4):
241
  gr.Markdown(description)
242
 
243
  with gr.Row():
244
- gr.Markdown("We generated a trajectory of our simulated environment. We will then use it with our different models.")
245
- gr.Video("./trajectory_hf/trajectory.avi",
246
- format="avi",
247
- interactive=False)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
 
249
 
250
 
 
241
  gr.Markdown(description)
242
 
243
  with gr.Row():
244
+ with gr.Column():
245
+ gr.Markdown("We generated a trajectory of our simulated environment. We will then use it with our different models.")
246
+ with gr.Column():
247
+ gr.Video("./trajectory_hf/trajectory.avi",
248
+ format="avi",
249
+ interactive=False)
250
+
251
+ with gr.Row():
252
+ with gr.Column():
253
+ gr.Markdown("Trajectory processed with coyo-500k model :")
254
+ with gr.Column():
255
+ gr.Video("./trajectory_hf/trajectory_coyo-500k.avi",
256
+ format="avi",
257
+ interactive=False)
258
+
259
+ with gr.Row():
260
+ with gr.Column():
261
+ gr.Markdown("Trajectory processed with bridge-2M model :")
262
+ with gr.Column():
263
+ gr.Video("./trajectory_hf/trajectory_bridge-2M.avi",
264
+ format="avi",
265
+ interactive=False)
266
+
267
+ with gr.Row():
268
+ with gr.Column():
269
+ gr.Markdown("Trajectory processed with coyo1M-bridge2M model :")
270
+ with gr.Column():
271
+ gr.Video("./trajectory_hf/trajectory_coyo1M-bridge2M.avi",
272
+ format="avi",
273
+ interactive=False)
274
+
275
+ with gr.Row():
276
+ with gr.Column():
277
+ gr.Markdown("Trajectory processed with coyo28-bridge4 model :")
278
+ with gr.Column():
279
+ gr.Video("./trajectory_hf/trajectory_coyo28-bridge4.avi",
280
+ format="avi",
281
+ interactive=False)
282
 
283
 
284