miguelflores-0906 commited on
Commit
10637e2
·
1 Parent(s): 10395db

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -24,6 +24,7 @@ def snap(image):
24
  image = image[np.newaxis, ...].transpose((0,3,1,2))
25
  ort_sess = ort.InferenceSession("M-Raw.onnx")
26
  output = ort_sess.run(["output0"], {"images": image})
 
27
  return [output]
28
 
29
 
 
24
  image = image[np.newaxis, ...].transpose((0,3,1,2))
25
  ort_sess = ort.InferenceSession("M-Raw.onnx")
26
  output = ort_sess.run(["output0"], {"images": image})
27
+ print(output)
28
  return [output]
29
 
30