Remy commited on
Commit
700229e
·
verified ·
1 Parent(s): 33e4e1d

Update ActionMesh space

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -330,7 +330,7 @@ def _run_actionmesh_impl(
330
 
331
  try:
332
  # Determine input source
333
- progress(0.1, desc="Loading input...")
334
 
335
  if video_input is not None:
336
  input_path = video_input
@@ -352,7 +352,7 @@ def _run_actionmesh_impl(
352
  return None, None, None, "Error: At least 16 frames are required."
353
 
354
  # Get pipeline and move to GPU
355
- progress(0.2, desc="Moving pipeline to GPU...")
356
  pipe = load_pipeline_cpu()
357
  pipe.to("cuda")
358
 
 
330
 
331
  try:
332
  # Determine input source
333
+ progress(None, desc="Loading input...")
334
 
335
  if video_input is not None:
336
  input_path = video_input
 
352
  return None, None, None, "Error: At least 16 frames are required."
353
 
354
  # Get pipeline and move to GPU
355
+ progress(None, desc="Moving pipeline to GPU...")
356
  pipe = load_pipeline_cpu()
357
  pipe.to("cuda")
358