Genzo1010 commited on
Commit
2f26403
·
verified ·
1 Parent(s): d75b259

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -9,10 +9,10 @@ import os
9
 
10
  app = FastAPI()
11
 
12
- # Load the doctr OCR model
13
- os.environ['USE_TORCH'] = 'YES'
14
- os.environ['USE_TF'] = 'NO'
15
- ocr_model = ocr_predictor(pretrained=True)
16
 
17
  def ocr_with_doctr(file):
18
  text_output = ''
 
9
 
10
  app = FastAPI()
11
 
12
+ # # Load the doctr OCR model
13
+ # os.environ['USE_TORCH'] = 'YES'
14
+ # os.environ['USE_TF'] = 'NO'
15
+ model = ocr_predictor(det_arch='db_resnet50', reco_arch='crnn_vgg16_bn', pretrained=True)
16
 
17
  def ocr_with_doctr(file):
18
  text_output = ''