Spaces:
Runtime error
Runtime error
update model path
Browse files- ocr/utility.py +2 -2
ocr/utility.py
CHANGED
@@ -28,7 +28,7 @@ def init_args():
|
|
28 |
# params for text detector
|
29 |
parser.add_argument("--image_dir", type=str)
|
30 |
parser.add_argument("--det_algorithm", type=str, default="DB")
|
31 |
-
parser.add_argument("--det_model_dir", type=str, default="./ch_PP-OCRv3_det_infer/")
|
32 |
parser.add_argument("--det_limit_side_len", type=float, default=960)
|
33 |
parser.add_argument("--det_limit_type", type=str, default="max")
|
34 |
|
@@ -66,7 +66,7 @@ def init_args():
|
|
66 |
|
67 |
# params for text recognizer
|
68 |
parser.add_argument("--rec_algorithm", type=str, default="SVTR_LCNet")
|
69 |
-
parser.add_argument("--rec_model_dir", type=str, default="./ch_PP-OCRv3_rec_infer/")
|
70 |
parser.add_argument("--rec_image_shape", type=str, default="3, 48, 320")
|
71 |
parser.add_argument("--rec_batch_num", type=int, default=6)
|
72 |
parser.add_argument("--max_text_length", type=int, default=25)
|
|
|
28 |
# params for text detector
|
29 |
parser.add_argument("--image_dir", type=str)
|
30 |
parser.add_argument("--det_algorithm", type=str, default="DB")
|
31 |
+
parser.add_argument("--det_model_dir", type=str, default="./ocr/ch_PP-OCRv3_det_infer/")
|
32 |
parser.add_argument("--det_limit_side_len", type=float, default=960)
|
33 |
parser.add_argument("--det_limit_type", type=str, default="max")
|
34 |
|
|
|
66 |
|
67 |
# params for text recognizer
|
68 |
parser.add_argument("--rec_algorithm", type=str, default="SVTR_LCNet")
|
69 |
+
parser.add_argument("--rec_model_dir", type=str, default="./ocr/ch_PP-OCRv3_rec_infer/")
|
70 |
parser.add_argument("--rec_image_shape", type=str, default="3, 48, 320")
|
71 |
parser.add_argument("--rec_batch_num", type=int, default=6)
|
72 |
parser.add_argument("--max_text_length", type=int, default=25)
|