fffiloni commited on
Commit
cf30bfe
·
verified ·
1 Parent(s): ec2c08b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -33,10 +33,10 @@ def generate(input_video):
33
  subprocess.run(
34
  [
35
  "python", "infer_3d.py", "big",
36
- f"workspace={workdir}",
37
- f"resume={pretrained_model}",
38
- f"num_frames={num_frames}",
39
- f"test_path={test_path}",
40
  ],
41
  check=True
42
  )
 
33
  subprocess.run(
34
  [
35
  "python", "infer_3d.py", "big",
36
+ "--workspace", f"{workdir}",
37
+ "--resume", f"{pretrained_model}",
38
+ "--num_frames", f"{num_frames}",
39
+ "--test_path", f"{test_path}",
40
  ],
41
  check=True
42
  )