Skip to content

Commit

Permalink
Fix file name error.
Browse files Browse the repository at this point in the history
  • Loading branch information
guojin-yan committed Dec 25, 2023
1 parent 20ad5f7 commit ba24675
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sample/OcrConsole/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ static void Main(string[] args)
}
config.det_model_path = Path.Combine(base_path , "model/paddle/ch_PP-OCRv4_det_infer/inference.pdmodel");
config.cls_model_path = Path.Combine(base_path , "model/paddle/ch_ppocr_mobile_v2.0_cls_infer/inference.pdmodel");
config.rec_model_path = Path.Combine(base_path , "model/paddle/ch_PP-OCRv3_rec_infer/inference.pdmodel");
config.rec_model_path = Path.Combine(base_path , "model/paddle/ch_PP-OCRv4_rec_infer/inference.pdmodel");
image_path = Path.Combine(base_path + "/image/demo_1.jpg");
config.set_dict_path(base_path);
}
Expand Down

0 comments on commit ba24675

Please sign in to comment.