fffiloni commited on
Commit
cb59b2c
·
1 Parent(s): 2045ae1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -82,8 +82,8 @@ def infer():
82
  #img1_batch = torch.stack([frames[0]])
83
  #img2_batch = torch.stack([frames[1]])
84
 
85
- img1_batch = torch.stack(input_frame_1)
86
- img2_batch = torch.stack(input_frame_2)
87
 
88
  print(f"FRAME AFTER stack: {img1_batch}")
89
 
 
82
  #img1_batch = torch.stack([frames[0]])
83
  #img2_batch = torch.stack([frames[1]])
84
 
85
+ img1_batch = torch.stack([input_frame_1])
86
+ img2_batch = torch.stack([input_frame_2])
87
 
88
  print(f"FRAME AFTER stack: {img1_batch}")
89