Baptlem commited on
Commit
a30c911
1 Parent(s): ba29a7c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -1
app.py CHANGED
@@ -19,6 +19,12 @@ To do so, we first get our simulated images. After, we process these images to g
19
 
20
  Therefore, we are able to change our simulation texture, and still keeping the image composition.
21
 
 
 
 
 
 
 
22
  """
23
 
24
 
@@ -226,7 +232,10 @@ def create_demo(process, max_images=12, default_num_images=4):
226
 
227
  with gr.Row():
228
  gr.Markdown(description)
229
-
 
 
 
230
 
231
 
232
 
 
19
 
20
  Therefore, we are able to change our simulation texture, and still keeping the image composition.
21
 
22
+
23
+ Our objectif for the sprint is to perform data augmentation using ControlNet. We then look for having a model that can augment an image quickly.
24
+ For now, we benchmarked our model on a node of 4 Titan RTX 24Go. We were able to generate a batch of 4 images in a average time of 1.3 seconds!
25
+ We also have access to nodes composed of 8 A100 80Go GPUs. The benchmark on one of these nodes will come soon.
26
+
27
+
28
  """
29
 
30
 
 
232
 
233
  with gr.Row():
234
  gr.Markdown(description)
235
+
236
+ gr.Video("./trajectory/trajectory.avi",
237
+ format="avi",
238
+ interactive=False)
239
 
240
 
241