Alealejandrooo commited on
Commit
e135b49
1 Parent(s): d1b3545

Changing model imports

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -16,8 +16,8 @@ ocr = PaddleOCR(lang='sl',
16
  show_log= False)
17
 
18
  # initialize the models
19
- model_deskew = onnxruntime.InferenceSession("/content/CNN_deskew_v0.0.2.onnx")
20
- model_denoise = onnxruntime.InferenceSession("/content/autoencoder_denoise_v0.0.2.onnx")
21
 
22
  ##### All Functions #####
23
 
 
16
  show_log= False)
17
 
18
  # initialize the models
19
+ model_deskew = onnxruntime.InferenceSession("./models/CNN_deskew_v0.0.2.onnx")
20
+ model_denoise = onnxruntime.InferenceSession("./models/autoencoder_denoise_v0.0.2.onnx")
21
 
22
  ##### All Functions #####
23