├── .gitignore ├── LICENSE ├── README.md ├── README_en.md ├── __init__.py ├── configs ├── cls │ ├── ch_PP-OCRv3 │ │ └── ch_PP-OCRv3_rotnet.yml │ └── cls_mv3.yml ├── det │ ├── PP-OCRv5 │ │ ├── PP-OCRv5_mobile_det.yml │ │ └── PP-OCRv5_server_det.yml │ ├── ch_PP-OCRv3 │ │ └── ch_PP-OCRv3_det.yml │ ├── ch_PP-OCRv4 │ │ ├── ch_PP-OCRv4_det_cml.yml │ │ ├── ch_PP-OCRv4_det_student.yml │ │ └── ch_PP-OCRv4_det_teacher.yml │ ├── ch_ppocr_v2.0 │ │ ├── ch_det_mv3_db_v2.0.yml │ │ └── ch_det_res18_db_v2.0.yml │ ├── det_mv3_db.yml │ ├── det_mv3_east.yml │ ├── det_mv3_pse.yml │ ├── det_ppocr_v3.yml │ ├── det_r50_db++_icdar15.yml │ ├── det_r50_db++_td_tr.yml │ ├── det_r50_vd_db.yml │ ├── det_r50_vd_dcn_fce_ctw.yml │ ├── det_r50_vd_east.yml │ ├── det_r50_vd_pse.yml │ ├── det_r50_vd_sast_icdar15.yml │ └── det_r50_vd_sast_totaltext.yml ├── e2e │ └── e2e_r50_vd_pg.yml ├── rec │ ├── PP-OCRv3 │ │ ├── ch_PP-OCRv3_rec.yml │ │ ├── ch_PP-OCRv3_rec_distillation.yml │ │ ├── en_PP-OCRv3_rec.yml │ │ └── multi_language │ │ │ ├── .gitkeep │ │ │ ├── arabic_PP-OCRv3_rec.yml │ │ │ ├── chinese_cht_PP-OCRv3_rec.yml │ │ │ ├── cyrillic_PP-OCRv3_rec.yml │ │ │ ├── devanagari_PP-OCRv3_rec.yml │ │ │ ├── japan_PP-OCRv3_rec.yml │ │ │ ├── ka_PP-OCRv3_rec.yml │ │ │ ├── korean_PP-OCRv3_rec.yml │ │ │ ├── latin_PP-OCRv3_rec.yml │ │ │ ├── ta_PP-OCRv3_rec.yml │ │ │ └── te_PP-OCRv3_rec.yml │ ├── PP-OCRv4 │ │ ├── ch_PP-OCRv4_rec.yml │ │ ├── ch_PP-OCRv4_rec_ampO2_ultra.yml │ │ ├── ch_PP-OCRv4_rec_ctc.yml │ │ ├── ch_PP-OCRv4_rec_distill.yml │ │ ├── ch_PP-OCRv4_rec_fp32_ultra.yml │ │ ├── ch_PP-OCRv4_rec_hgnet.yml │ │ ├── ch_PP-OCRv4_rec_hgnet_ampO2_ultra.yml │ │ ├── ch_PP-OCRv4_rec_hgnet_fp32_ultra.yml │ │ └── en_PP-OCRv4_rec.yml │ ├── PP-OCRv5 │ │ ├── PP-OCRv5_mobile_rec.yml │ │ └── PP-OCRv5_server_rec.yml │ ├── ch_ppocr_v2.0 │ │ ├── rec_chinese_common_train_v2.0.yml │ │ └── rec_chinese_lite_train_v2.0.yml │ ├── multi_language │ │ ├── generate_multi_language_configs.py │ │ ├── rec_arabic_lite_train.yml │ │ ├── rec_cyrillic_lite_train.yml │ │ ├── rec_devanagari_lite_train.yml │ │ ├── rec_en_number_lite_train.yml │ │ ├── rec_french_lite_train.yml │ │ ├── rec_german_lite_train.yml │ │ ├── rec_japan_lite_train.yml │ │ ├── rec_korean_lite_train.yml │ │ ├── rec_latin_lite_train.yml │ │ └── rec_multi_language_lite_train.yml │ ├── rec_d28_can.yml │ ├── rec_efficientb3_fpn_pren.yml │ ├── rec_icdar15_train.yml │ ├── rec_mtb_nrtr.yml │ ├── rec_mv3_none_bilstm_ctc.yml │ ├── rec_mv3_none_none_ctc.yml │ ├── rec_mv3_tps_bilstm_att.yml │ ├── rec_mv3_tps_bilstm_ctc.yml │ ├── rec_r31_sar.yml │ ├── rec_r34_vd_none_bilstm_ctc.yml │ ├── rec_r34_vd_none_none_ctc.yml │ ├── rec_r34_vd_tps_bilstm_att.yml │ ├── rec_r34_vd_tps_bilstm_ctc.yml │ ├── rec_r50_fpn_srn.yml │ ├── rec_svtr │ │ ├── rec_svtr_base_8local_10global_stn_en.yml │ │ ├── rec_svtr_large_10local_11global_stn_ch.yml │ │ ├── rec_svtr_large_10local_11global_stn_en.yml │ │ ├── rec_svtr_small_8local_7global_stn_ch.yml │ │ ├── rec_svtr_small_8local_7global_stn_en.yml │ │ ├── rec_svtr_tiny_6local_6global_stn_ch.yml │ │ └── rec_svtr_tiny_6local_6global_stn_en.yml │ ├── rec_svtrnet.yml │ └── rec_vitstr_none_ce.yml ├── sr │ ├── sr_telescope.yml │ └── sr_tsrn_transformer_strock.yml └── table │ ├── table_mv3.yml │ ├── table_mv3_det.yml │ ├── table_mv3_rec.yml │ └── table_mv3_table_structure.yml ├── converter ├── ch_ppocr_mobile_v2.0_cls_converter.py ├── ch_ppocr_mobile_v2.0_det_converter.py ├── ch_ppocr_mobile_v2.0_rec_converter.py ├── ch_ppocr_server_v2.0_det_converter.py ├── ch_ppocr_server_v2.0_rec_converter.py ├── ch_ppocr_v2_det_converter.py ├── ch_ppocr_v2_rec_converter.py ├── ch_ppocr_v3_det_converter.py ├── ch_ppocr_v3_det_converter_github_qa.py ├── ch_ppocr_v3_rec_converter.py ├── ch_ppocr_v3_rec_converter_nodistill.py ├── ch_ppocr_v4_det_converter.py ├── ch_ppocr_v4_det_converter_from_pytorchocr.py ├── ch_ppocr_v4_det_server_converter.py ├── ch_ppocr_v4_rec_converter.py ├── ch_ppocr_v4_rec_server_converter.py ├── det_converter.py ├── det_fcenet_converter.py ├── e2e_converter.py ├── layoutxlm_re_converter.py ├── layoutxlm_ser_converter.py ├── multilingual_mobile_v2.0_rec_converter.py ├── multilingual_ppocr_v3_rec_converter.py ├── ppocr_v5_det_converter.py ├── ppocr_v5_rec_converter.py ├── ppstructure_table_det_converter.py ├── ppstructure_table_rec_converter.py ├── ppstructure_table_structure_converter.py ├── rec_can_converter.py ├── rec_converter.py ├── rec_nrtr_mtb_converter.py ├── rec_sar_converter.py ├── rec_svtr_converter.py ├── rec_vitstr_converter.py ├── sr_converter.py └── srn_converter.py ├── doc ├── datasets │ ├── ArT.jpg │ ├── CASIA_0.jpg │ ├── CDLA_demo │ │ ├── val_0633.jpg │ │ └── val_0941.jpg │ ├── LSVT_1.jpg │ ├── LSVT_2.jpg │ ├── VoTT.jpg │ ├── captcha_demo.png │ ├── ccpd_demo.png │ ├── ch_doc1.jpg │ ├── ch_doc3.jpg │ ├── ch_street_rec_1.png │ ├── ch_street_rec_2.png │ ├── cmb_demo.jpg │ ├── crohme_demo │ │ ├── hme_00.jpg │ │ ├── hme_01.jpg │ │ └── hme_02.jpg │ ├── doc.jpg │ ├── funsd_demo │ │ ├── gt_train_00040534.jpg │ │ └── gt_train_00070353.jpg │ ├── ic15_location_download.png │ ├── icdar_rec.png │ ├── labelimg.jpg │ ├── labelme.jpg │ ├── nist_demo.png │ ├── publaynet_demo │ │ ├── gt_PMC3724501_00006.jpg │ │ └── gt_PMC5086060_00002.jpg │ ├── rctw.jpg │ ├── roLabelImg.png │ ├── table_PubTabNet_demo │ │ ├── PMC524509_007_00.png │ │ └── PMC535543_007_01.png │ ├── table_tal_demo │ │ ├── 1.jpg │ │ └── 2.jpg │ ├── tablebank_demo │ │ ├── 004.png │ │ └── 005.png │ ├── wildreceipt_demo │ │ ├── 1bbe854b8817dedb8585e0732089fd1f752d2cec.jpeg │ │ └── 2769.jpeg │ └── xfund_demo │ │ ├── gt_zh_train_0.jpg │ │ └── gt_zh_train_1.jpg ├── doc_ch │ ├── inference.md │ ├── installation.md │ ├── models_list.md │ └── reference.md ├── doc_en │ ├── inference_en.md │ ├── installation_en.md │ ├── models_list_en.md │ └── reference_en.md ├── fonts │ ├── arabic.ttf │ ├── chinese_cht.ttf │ ├── cyrillic.ttf │ ├── french.ttf │ ├── german.ttf │ ├── hindi.ttf │ ├── japan.ttc │ ├── kannada.ttf │ ├── korean.ttf │ ├── latin.ttf │ ├── marathi.ttf │ ├── nepali.ttf │ ├── persian.ttf │ ├── simfang.ttf │ ├── spanish.ttf │ ├── tamil.ttf │ ├── telugu.ttf │ ├── urdu.ttf │ └── uyghur.ttf ├── imgs │ ├── 00006737.jpg │ ├── 00009282.jpg │ ├── 00015504.jpg │ ├── 00018069.jpg │ ├── 00056221.jpg │ ├── 00057937.jpg │ ├── 00059985.jpg │ ├── 00077949.jpg │ ├── 00111002.jpg │ ├── 00207393.jpg │ ├── 1.jpg │ ├── 11.jpg │ ├── 12.jpg │ ├── french_0.jpg │ ├── ger_1.jpg │ ├── ger_2.jpg │ ├── japan_1.jpg │ ├── japan_2.jpg │ └── korean_1.jpg ├── imgs_en │ ├── 254.jpg │ ├── img623.jpg │ ├── img_10.jpg │ ├── img_11.jpg │ ├── img_12.jpg │ └── img_195.jpg ├── imgs_results │ ├── angle_class_example.jpg │ ├── ch_ptocr_mobile_v2.0 │ │ ├── 00006737.jpg │ │ ├── 00009282.jpg │ │ ├── 00015504.jpg │ │ ├── 00018069.jpg │ │ ├── 00056221.jpg │ │ ├── 00057937.jpg │ │ ├── 00059985.jpg │ │ ├── 00077949.jpg │ │ ├── 00111002.jpg │ │ ├── 00207393.jpg │ │ ├── 1.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ ├── french_0.jpg │ │ ├── ger_1.jpg │ │ ├── ger_2.jpg │ │ ├── img_12.jpg │ │ ├── japan_1.jpg │ │ ├── japan_2.jpg │ │ ├── korean_1.jpg │ │ ├── rotate_00052204.jpg │ │ └── test_add_91.jpg │ ├── det_res_00018069.jpg │ ├── det_res_img623_sast.jpg │ ├── det_res_img_10_db.jpg │ ├── det_res_img_10_east.jpg │ ├── det_res_img_10_sast.jpg │ ├── e2e_res_img293_pgnet.png │ ├── e2e_res_img295_pgnet.png │ ├── e2e_res_img623_pgnet.jpg │ ├── e2e_res_img_10_pgnet.jpg │ ├── french_0.jpg │ ├── img_10_east_starnet.jpg │ ├── korean.jpg │ ├── multi_lang │ │ ├── arabic_0.jpg │ │ ├── en_1.jpg │ │ ├── en_2.jpg │ │ ├── en_3.jpg │ │ ├── french_0.jpg │ │ ├── img_01.jpg │ │ ├── img_02.jpg │ │ ├── img_12.jpg │ │ ├── japan_2.jpg │ │ └── korean_0.jpg │ ├── sr │ │ └── sr_word_52.png │ └── system_res_00018069.jpg ├── imgs_words │ ├── arabic │ │ ├── ar_1.jpg │ │ └── ar_2.jpg │ ├── belarusian │ │ ├── be_1.jpg │ │ └── be_2.jpg │ ├── bulgarian │ │ ├── bg_1.jpg │ │ └── bg_2.jpg │ ├── ch │ │ ├── word_1.jpg │ │ ├── word_2.jpg │ │ ├── word_3.jpg │ │ ├── word_4.jpg │ │ └── word_5.jpg │ ├── chinese_traditional │ │ ├── chinese_cht_1.png │ │ └── chinese_cht_2.png │ ├── en │ │ ├── word_1.png │ │ ├── word_2.png │ │ ├── word_3.png │ │ ├── word_4.png │ │ └── word_5.png │ ├── french │ │ ├── 1.jpg │ │ └── 2.jpg │ ├── german │ │ └── 1.jpg │ ├── hindi │ │ ├── hi_1.jpg │ │ └── hi_2.jpg │ ├── italian │ │ ├── it_1.jpg │ │ └── it_2.jpg │ ├── japan │ │ └── 1.jpg │ ├── kannada │ │ ├── kn_1.jpg │ │ └── kn_2.jpg │ ├── korean │ │ ├── 1.jpg │ │ └── 2.jpg │ ├── marathi │ │ ├── mr_1.jpg │ │ └── mr_2.jpg │ ├── nepali │ │ ├── ne_1.jpg │ │ └── ne_2.jpg │ ├── occitan │ │ ├── oc_1.jpg │ │ └── oc_2.jpg │ ├── persian │ │ ├── fa_1.jpg │ │ └── fa_2.jpg │ ├── portuguese │ │ ├── pt_1.jpg │ │ └── pt_2.jpg │ ├── russia │ │ ├── ru_1.jpg │ │ └── ru_2.jpg │ ├── serbian_cyrillic │ │ ├── rsc_1.jpg │ │ └── rsc_2.jpg │ ├── serbian_latin │ │ ├── rs_1.jpg │ │ └── rs_2.jpg │ ├── spanish │ │ ├── es_1.jpg │ │ └── es_2.jpg │ ├── tamil │ │ ├── ta_1.jpg │ │ └── ta_2.jpg │ ├── telugu │ │ ├── te_1.jpg │ │ └── te_2.jpg │ ├── ukranian │ │ ├── uk_1.jpg │ │ └── uk_2.jpg │ ├── urdu │ │ ├── ur_1.jpg │ │ └── ur_2.jpg │ └── uyghur │ │ ├── ug_1.jpg │ │ └── ug_2.jpg ├── imgs_words_en │ ├── word_10.png │ ├── word_116.png │ ├── word_19.png │ ├── word_201.png │ ├── word_308.png │ ├── word_336.png │ ├── word_401.png │ ├── word_461.png │ ├── word_52.png │ └── word_545.png ├── pgnet_framework.png ├── ppocr_framework.png ├── ppocrv2_framework.jpg └── table │ ├── 1.png │ ├── layout.jpg │ ├── paper-image.jpg │ ├── pipeline.jpg │ ├── pipeline_en.jpg │ ├── ppstructure.GIF │ ├── result_all.jpg │ ├── result_text.jpg │ ├── table.jpg │ ├── tableocr_pipeline.jpg │ └── tableocr_pipeline_en.jpg ├── misc ├── attention_grucell.py ├── attention_head.py ├── common.py ├── conv.py ├── diff.py ├── fc.py ├── gelu.py ├── gru_cell.py ├── hard_swish.py ├── hs.py ├── layernorm.py ├── lstm.py ├── onnx_optimizer.py ├── pp_ocr.py ├── pp_rec_resnet_fpn.py ├── pp_rec_srn_head.py ├── pp_self_attention.py ├── pp_table_att_head.py ├── pp_table_fpn.py ├── pp_table_mobilenet_v3.py ├── pt_rec_resnet_fpn.py ├── pt_rec_srn_head.py ├── pt_self_attention.py ├── pt_table_att_head.py ├── pt_table_fpn.py ├── pt_table_mobilenet_v3.py ├── rec_resnet_fpn.py ├── rec_srn.py ├── rec_srn_head.py ├── table_att_head.py ├── table_det.py ├── table_mobile.py └── table_mobilenet_v3.py ├── ptstructure ├── __init__.py ├── examples │ └── data │ │ ├── 1.png │ │ ├── example-table.jpeg │ │ └── paper-image.jpg ├── layout │ └── ptppyolov2 │ │ ├── __init__.py │ │ ├── ppyolo_utils.py │ │ ├── ppyolov2.py │ │ ├── ppyolov2_base.py │ │ ├── ppyolov2_darknet.py │ │ ├── ppyolov2_layout.py │ │ ├── ppyolov2_pt.py │ │ ├── ppyolov2_resnet.py │ │ ├── ppyolov2_yolo_fpn.py │ │ ├── ppyolov2_yolo_head.py │ │ ├── pt_utils.py │ │ └── utils.py ├── output │ └── table │ │ └── table.xlsx ├── predict_system.py ├── table │ ├── __init__.py │ ├── matcher.py │ ├── predict_structure.py │ ├── predict_table.py │ └── tablepyxl │ │ ├── __init__.py │ │ ├── style.py │ │ └── tablepyxl.py ├── utility.py └── vqa │ ├── README.md │ ├── README_en.md │ ├── README_en_pp.md │ ├── README_pp.md │ ├── images │ ├── id_cards │ │ ├── id1.jpg │ │ ├── id2.jpg │ │ ├── id3.jpg │ │ ├── id4.jpg │ │ ├── id5.jpg │ │ ├── id6.jpg │ │ └── id7.jpg │ ├── input │ │ ├── zh_val_0.jpg │ │ ├── zh_val_21.jpg │ │ ├── zh_val_40.jpg │ │ └── zh_val_42.jpg │ ├── result_re │ │ ├── zh_val_21_re.jpg │ │ └── zh_val_40_re.jpg │ └── result_ser │ │ ├── zh_val_0_ser.jpg │ │ └── zh_val_42_ser.jpg │ ├── infer_ser_e2e.py │ ├── infer_ser_re_e2e.py │ ├── labels │ └── labels_ser.txt │ ├── output │ ├── ser_e2e │ │ ├── zh_val_0_ser.jpg │ │ └── zh_val_42_ser.jpg │ └── ser_re_e2e │ │ ├── zh_val_21_re.jpg │ │ └── zh_val_40_re.jpg │ ├── pytorchnlp │ ├── data │ │ ├── __init__.py │ │ └── vocab.py │ └── transformers │ │ ├── __init__.py │ │ ├── bert │ │ ├── __init__.py │ │ └── tokenizer.py │ │ ├── layoutlm │ │ ├── __init__.py │ │ ├── modeling.py │ │ └── tokenizer.py │ │ ├── layoutxlm │ │ ├── __init__.py │ │ ├── modeling.py │ │ ├── network.txt │ │ ├── tokenizer.py │ │ ├── visual_backbone.py │ │ └── visual_backbone.yaml │ │ ├── model_utils.py │ │ ├── tokenizer_utils.py │ │ └── utils.py │ └── vqa_utils.py ├── pytorchocr ├── __init__.py ├── base_ocr_v20.py ├── data │ ├── __init__.py │ └── imaug │ │ ├── __init__.py │ │ ├── gen_table_mask.py │ │ └── operators.py ├── modeling │ ├── __init__.py │ ├── architectures │ │ ├── __init__.py │ │ └── base_model.py │ ├── backbones │ │ ├── __init__.py │ │ ├── det_mobilenet_v3.py │ │ ├── det_resnet.py │ │ ├── det_resnet_vd.py │ │ ├── det_resnet_vd_sast.py │ │ ├── e2e_resnet_vd_pg.py │ │ ├── rec_densenet.py │ │ ├── rec_donut_swin.py │ │ ├── rec_hgnet.py │ │ ├── rec_lcnetv3.py │ │ ├── rec_lcnetv3_bak.py │ │ ├── rec_mobilenet_v3.py │ │ ├── rec_mv1_enhance.py │ │ ├── rec_nrtr_mtb.py │ │ ├── rec_pphgnetv2.py │ │ ├── rec_resnet_31.py │ │ ├── rec_resnet_fpn.py │ │ ├── rec_resnet_vd.py │ │ ├── rec_svtrnet.py │ │ ├── rec_vitstr.py │ │ ├── table_mobilenet_v3.py │ │ └── table_resnet_vd.py │ ├── common.py │ ├── heads │ │ ├── __init__.py │ │ ├── cls_head.py │ │ ├── det_db_head.py │ │ ├── det_east_head.py │ │ ├── det_fce_head.py │ │ ├── det_pse_head.py │ │ ├── det_sast_head.py │ │ ├── e2e_pg_head.py │ │ ├── multiheadAttention.py │ │ ├── rec_att_head.py │ │ ├── rec_can_head.py │ │ ├── rec_ctc_head.py │ │ ├── rec_multi_head.py │ │ ├── rec_nrtr_head.py │ │ ├── rec_sar_head.py │ │ ├── rec_srn_head.py │ │ ├── self_attention.py │ │ ├── sr_rensnet_transformer.py │ │ └── table_att_head.py │ ├── necks │ │ ├── __init__.py │ │ ├── db_fpn.py │ │ ├── east_fpn.py │ │ ├── fce_fpn.py │ │ ├── fpn.py │ │ ├── intracl.py │ │ ├── pg_fpn.py │ │ ├── rnn.py │ │ ├── sast_fpn.py │ │ └── table_fpn.py │ └── transforms │ │ ├── __init__.py │ │ ├── stn.py │ │ ├── tbsrn.py │ │ ├── tps.py │ │ ├── tps_spatial_transformer.py │ │ └── tsrn.py ├── postprocess │ ├── __init__.py │ ├── cls_postprocess.py │ ├── db_postprocess.py │ ├── east_postprocess.py │ ├── fce_postprocess.py │ ├── locality_aware_nms.py │ ├── pg_postprocess.py │ ├── pse_postprocess │ │ ├── __init__.py │ │ ├── pse │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── pse.pyx │ │ │ └── setup.py │ │ └── pse_postprocess.py │ ├── rec_postprocess.py │ └── sast_postprocess.py └── utils │ ├── EN_symbol_dict.txt │ ├── __init__.py │ ├── dict │ ├── ar_dict.txt │ ├── arabic_dict.txt │ ├── be_dict.txt │ ├── bg_dict.txt │ ├── ch_tra_dict.txt │ ├── chinese_cht_dict.txt │ ├── cyrillic_dict.txt │ ├── devanagari_dict.txt │ ├── en_dict.txt │ ├── es_dict.txt │ ├── fa_dict.txt │ ├── french_dict.txt │ ├── german_dict.txt │ ├── hi_dict.txt │ ├── it_dict.txt │ ├── japan_dict.txt │ ├── ka_dict.txt │ ├── kn_dict.txt │ ├── korean_dict.txt │ ├── latex_symbol_dict.txt │ ├── latin_dict.txt │ ├── mr_dict.txt │ ├── ne_dict.txt │ ├── oc_dict.txt │ ├── ppocrv5_dict.txt │ ├── pt_dict.txt │ ├── pu_dict.txt │ ├── rs_cyrillic_dict.txt │ ├── rs_dict.txt │ ├── rs_latin_dict.txt │ ├── rsc_dict.txt │ ├── ru_dict.txt │ ├── ta_dict.txt │ ├── table_dict.txt │ ├── table_structure_dict.txt │ ├── te_dict.txt │ ├── ug_dict.txt │ ├── uk_dict.txt │ ├── ur_dict.txt │ └── xi_dict.txt │ ├── dict90.txt │ ├── e2e_utils │ ├── extract_batchsize.py │ ├── extract_textpoint_fast.py │ ├── extract_textpoint_slow.py │ ├── pgnet_pp_utils.py │ └── visual.py │ ├── en_dict.txt │ ├── ic15_dict.txt │ ├── logging.py │ ├── poly_nms.py │ ├── ppocr_keys_v1.txt │ └── utility.py └── tools └── infer ├── predict_cls.py ├── predict_det.py ├── predict_e2e.py ├── predict_rec.py ├── predict_sr.py ├── predict_system.py └── pytorchocr_utility.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/README_en.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configs/cls/ch_PP-OCRv3/ch_PP-OCRv3_rotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/cls/ch_PP-OCRv3/ch_PP-OCRv3_rotnet.yml -------------------------------------------------------------------------------- /configs/cls/cls_mv3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/cls/cls_mv3.yml -------------------------------------------------------------------------------- /configs/det/PP-OCRv5/PP-OCRv5_mobile_det.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/det/PP-OCRv5/PP-OCRv5_mobile_det.yml -------------------------------------------------------------------------------- /configs/det/PP-OCRv5/PP-OCRv5_server_det.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/det/PP-OCRv5/PP-OCRv5_server_det.yml -------------------------------------------------------------------------------- /configs/det/ch_PP-OCRv3/ch_PP-OCRv3_det.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/det/ch_PP-OCRv3/ch_PP-OCRv3_det.yml -------------------------------------------------------------------------------- /configs/det/ch_PP-OCRv4/ch_PP-OCRv4_det_cml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/det/ch_PP-OCRv4/ch_PP-OCRv4_det_cml.yml -------------------------------------------------------------------------------- /configs/det/ch_PP-OCRv4/ch_PP-OCRv4_det_student.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/det/ch_PP-OCRv4/ch_PP-OCRv4_det_student.yml -------------------------------------------------------------------------------- /configs/det/ch_PP-OCRv4/ch_PP-OCRv4_det_teacher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/det/ch_PP-OCRv4/ch_PP-OCRv4_det_teacher.yml -------------------------------------------------------------------------------- /configs/det/ch_ppocr_v2.0/ch_det_mv3_db_v2.0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/det/ch_ppocr_v2.0/ch_det_mv3_db_v2.0.yml -------------------------------------------------------------------------------- /configs/det/ch_ppocr_v2.0/ch_det_res18_db_v2.0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/det/ch_ppocr_v2.0/ch_det_res18_db_v2.0.yml -------------------------------------------------------------------------------- /configs/det/det_mv3_db.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/det/det_mv3_db.yml -------------------------------------------------------------------------------- /configs/det/det_mv3_east.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/det/det_mv3_east.yml -------------------------------------------------------------------------------- /configs/det/det_mv3_pse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/det/det_mv3_pse.yml -------------------------------------------------------------------------------- /configs/det/det_ppocr_v3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/det/det_ppocr_v3.yml -------------------------------------------------------------------------------- /configs/det/det_r50_db++_icdar15.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/det/det_r50_db++_icdar15.yml -------------------------------------------------------------------------------- /configs/det/det_r50_db++_td_tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/det/det_r50_db++_td_tr.yml -------------------------------------------------------------------------------- /configs/det/det_r50_vd_db.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/det/det_r50_vd_db.yml -------------------------------------------------------------------------------- /configs/det/det_r50_vd_dcn_fce_ctw.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/det/det_r50_vd_dcn_fce_ctw.yml -------------------------------------------------------------------------------- /configs/det/det_r50_vd_east.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/det/det_r50_vd_east.yml -------------------------------------------------------------------------------- /configs/det/det_r50_vd_pse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/det/det_r50_vd_pse.yml -------------------------------------------------------------------------------- /configs/det/det_r50_vd_sast_icdar15.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/det/det_r50_vd_sast_icdar15.yml -------------------------------------------------------------------------------- /configs/det/det_r50_vd_sast_totaltext.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/det/det_r50_vd_sast_totaltext.yml -------------------------------------------------------------------------------- /configs/e2e/e2e_r50_vd_pg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/e2e/e2e_r50_vd_pg.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv3/ch_PP-OCRv3_rec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv3/ch_PP-OCRv3_rec.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv3/ch_PP-OCRv3_rec_distillation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv3/ch_PP-OCRv3_rec_distillation.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv3/en_PP-OCRv3_rec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv3/en_PP-OCRv3_rec.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv3/multi_language/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configs/rec/PP-OCRv3/multi_language/arabic_PP-OCRv3_rec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv3/multi_language/arabic_PP-OCRv3_rec.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv3/multi_language/chinese_cht_PP-OCRv3_rec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv3/multi_language/chinese_cht_PP-OCRv3_rec.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv3/multi_language/cyrillic_PP-OCRv3_rec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv3/multi_language/cyrillic_PP-OCRv3_rec.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv3/multi_language/devanagari_PP-OCRv3_rec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv3/multi_language/devanagari_PP-OCRv3_rec.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv3/multi_language/japan_PP-OCRv3_rec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv3/multi_language/japan_PP-OCRv3_rec.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv3/multi_language/ka_PP-OCRv3_rec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv3/multi_language/ka_PP-OCRv3_rec.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv3/multi_language/korean_PP-OCRv3_rec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv3/multi_language/korean_PP-OCRv3_rec.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv3/multi_language/latin_PP-OCRv3_rec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv3/multi_language/latin_PP-OCRv3_rec.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv3/multi_language/ta_PP-OCRv3_rec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv3/multi_language/ta_PP-OCRv3_rec.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv3/multi_language/te_PP-OCRv3_rec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv3/multi_language/te_PP-OCRv3_rec.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv4/ch_PP-OCRv4_rec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv4/ch_PP-OCRv4_rec.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv4/ch_PP-OCRv4_rec_ampO2_ultra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv4/ch_PP-OCRv4_rec_ampO2_ultra.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv4/ch_PP-OCRv4_rec_ctc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv4/ch_PP-OCRv4_rec_ctc.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv4/ch_PP-OCRv4_rec_distill.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv4/ch_PP-OCRv4_rec_distill.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv4/ch_PP-OCRv4_rec_fp32_ultra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv4/ch_PP-OCRv4_rec_fp32_ultra.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv4/ch_PP-OCRv4_rec_hgnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv4/ch_PP-OCRv4_rec_hgnet.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv4/ch_PP-OCRv4_rec_hgnet_ampO2_ultra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv4/ch_PP-OCRv4_rec_hgnet_ampO2_ultra.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv4/ch_PP-OCRv4_rec_hgnet_fp32_ultra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv4/ch_PP-OCRv4_rec_hgnet_fp32_ultra.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv4/en_PP-OCRv4_rec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv4/en_PP-OCRv4_rec.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv5/PP-OCRv5_mobile_rec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv5/PP-OCRv5_mobile_rec.yml -------------------------------------------------------------------------------- /configs/rec/PP-OCRv5/PP-OCRv5_server_rec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/PP-OCRv5/PP-OCRv5_server_rec.yml -------------------------------------------------------------------------------- /configs/rec/ch_ppocr_v2.0/rec_chinese_common_train_v2.0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/ch_ppocr_v2.0/rec_chinese_common_train_v2.0.yml -------------------------------------------------------------------------------- /configs/rec/ch_ppocr_v2.0/rec_chinese_lite_train_v2.0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/ch_ppocr_v2.0/rec_chinese_lite_train_v2.0.yml -------------------------------------------------------------------------------- /configs/rec/multi_language/generate_multi_language_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/multi_language/generate_multi_language_configs.py -------------------------------------------------------------------------------- /configs/rec/multi_language/rec_arabic_lite_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/multi_language/rec_arabic_lite_train.yml -------------------------------------------------------------------------------- /configs/rec/multi_language/rec_cyrillic_lite_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/multi_language/rec_cyrillic_lite_train.yml -------------------------------------------------------------------------------- /configs/rec/multi_language/rec_devanagari_lite_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/multi_language/rec_devanagari_lite_train.yml -------------------------------------------------------------------------------- /configs/rec/multi_language/rec_en_number_lite_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/multi_language/rec_en_number_lite_train.yml -------------------------------------------------------------------------------- /configs/rec/multi_language/rec_french_lite_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/multi_language/rec_french_lite_train.yml -------------------------------------------------------------------------------- /configs/rec/multi_language/rec_german_lite_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/multi_language/rec_german_lite_train.yml -------------------------------------------------------------------------------- /configs/rec/multi_language/rec_japan_lite_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/multi_language/rec_japan_lite_train.yml -------------------------------------------------------------------------------- /configs/rec/multi_language/rec_korean_lite_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/multi_language/rec_korean_lite_train.yml -------------------------------------------------------------------------------- /configs/rec/multi_language/rec_latin_lite_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/multi_language/rec_latin_lite_train.yml -------------------------------------------------------------------------------- /configs/rec/multi_language/rec_multi_language_lite_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/multi_language/rec_multi_language_lite_train.yml -------------------------------------------------------------------------------- /configs/rec/rec_d28_can.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/rec_d28_can.yml -------------------------------------------------------------------------------- /configs/rec/rec_efficientb3_fpn_pren.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/rec_efficientb3_fpn_pren.yml -------------------------------------------------------------------------------- /configs/rec/rec_icdar15_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/rec_icdar15_train.yml -------------------------------------------------------------------------------- /configs/rec/rec_mtb_nrtr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/rec_mtb_nrtr.yml -------------------------------------------------------------------------------- /configs/rec/rec_mv3_none_bilstm_ctc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/rec_mv3_none_bilstm_ctc.yml -------------------------------------------------------------------------------- /configs/rec/rec_mv3_none_none_ctc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/rec_mv3_none_none_ctc.yml -------------------------------------------------------------------------------- /configs/rec/rec_mv3_tps_bilstm_att.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/rec_mv3_tps_bilstm_att.yml -------------------------------------------------------------------------------- /configs/rec/rec_mv3_tps_bilstm_ctc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/rec_mv3_tps_bilstm_ctc.yml -------------------------------------------------------------------------------- /configs/rec/rec_r31_sar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/rec_r31_sar.yml -------------------------------------------------------------------------------- /configs/rec/rec_r34_vd_none_bilstm_ctc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/rec_r34_vd_none_bilstm_ctc.yml -------------------------------------------------------------------------------- /configs/rec/rec_r34_vd_none_none_ctc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/rec_r34_vd_none_none_ctc.yml -------------------------------------------------------------------------------- /configs/rec/rec_r34_vd_tps_bilstm_att.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/rec_r34_vd_tps_bilstm_att.yml -------------------------------------------------------------------------------- /configs/rec/rec_r34_vd_tps_bilstm_ctc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/rec_r34_vd_tps_bilstm_ctc.yml -------------------------------------------------------------------------------- /configs/rec/rec_r50_fpn_srn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/rec_r50_fpn_srn.yml -------------------------------------------------------------------------------- /configs/rec/rec_svtr/rec_svtr_base_8local_10global_stn_en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/rec_svtr/rec_svtr_base_8local_10global_stn_en.yml -------------------------------------------------------------------------------- /configs/rec/rec_svtr/rec_svtr_large_10local_11global_stn_ch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/rec_svtr/rec_svtr_large_10local_11global_stn_ch.yml -------------------------------------------------------------------------------- /configs/rec/rec_svtr/rec_svtr_large_10local_11global_stn_en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/rec_svtr/rec_svtr_large_10local_11global_stn_en.yml -------------------------------------------------------------------------------- /configs/rec/rec_svtr/rec_svtr_small_8local_7global_stn_ch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/rec_svtr/rec_svtr_small_8local_7global_stn_ch.yml -------------------------------------------------------------------------------- /configs/rec/rec_svtr/rec_svtr_small_8local_7global_stn_en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/rec_svtr/rec_svtr_small_8local_7global_stn_en.yml -------------------------------------------------------------------------------- /configs/rec/rec_svtr/rec_svtr_tiny_6local_6global_stn_ch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/rec_svtr/rec_svtr_tiny_6local_6global_stn_ch.yml -------------------------------------------------------------------------------- /configs/rec/rec_svtr/rec_svtr_tiny_6local_6global_stn_en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/rec_svtr/rec_svtr_tiny_6local_6global_stn_en.yml -------------------------------------------------------------------------------- /configs/rec/rec_svtrnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/rec_svtrnet.yml -------------------------------------------------------------------------------- /configs/rec/rec_vitstr_none_ce.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/rec/rec_vitstr_none_ce.yml -------------------------------------------------------------------------------- /configs/sr/sr_telescope.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/sr/sr_telescope.yml -------------------------------------------------------------------------------- /configs/sr/sr_tsrn_transformer_strock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/sr/sr_tsrn_transformer_strock.yml -------------------------------------------------------------------------------- /configs/table/table_mv3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/table/table_mv3.yml -------------------------------------------------------------------------------- /configs/table/table_mv3_det.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/table/table_mv3_det.yml -------------------------------------------------------------------------------- /configs/table/table_mv3_rec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/table/table_mv3_rec.yml -------------------------------------------------------------------------------- /configs/table/table_mv3_table_structure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/configs/table/table_mv3_table_structure.yml -------------------------------------------------------------------------------- /converter/ch_ppocr_mobile_v2.0_cls_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/ch_ppocr_mobile_v2.0_cls_converter.py -------------------------------------------------------------------------------- /converter/ch_ppocr_mobile_v2.0_det_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/ch_ppocr_mobile_v2.0_det_converter.py -------------------------------------------------------------------------------- /converter/ch_ppocr_mobile_v2.0_rec_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/ch_ppocr_mobile_v2.0_rec_converter.py -------------------------------------------------------------------------------- /converter/ch_ppocr_server_v2.0_det_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/ch_ppocr_server_v2.0_det_converter.py -------------------------------------------------------------------------------- /converter/ch_ppocr_server_v2.0_rec_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/ch_ppocr_server_v2.0_rec_converter.py -------------------------------------------------------------------------------- /converter/ch_ppocr_v2_det_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/ch_ppocr_v2_det_converter.py -------------------------------------------------------------------------------- /converter/ch_ppocr_v2_rec_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/ch_ppocr_v2_rec_converter.py -------------------------------------------------------------------------------- /converter/ch_ppocr_v3_det_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/ch_ppocr_v3_det_converter.py -------------------------------------------------------------------------------- /converter/ch_ppocr_v3_det_converter_github_qa.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /converter/ch_ppocr_v3_rec_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/ch_ppocr_v3_rec_converter.py -------------------------------------------------------------------------------- /converter/ch_ppocr_v3_rec_converter_nodistill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/ch_ppocr_v3_rec_converter_nodistill.py -------------------------------------------------------------------------------- /converter/ch_ppocr_v4_det_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/ch_ppocr_v4_det_converter.py -------------------------------------------------------------------------------- /converter/ch_ppocr_v4_det_converter_from_pytorchocr.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /converter/ch_ppocr_v4_det_server_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/ch_ppocr_v4_det_server_converter.py -------------------------------------------------------------------------------- /converter/ch_ppocr_v4_rec_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/ch_ppocr_v4_rec_converter.py -------------------------------------------------------------------------------- /converter/ch_ppocr_v4_rec_server_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/ch_ppocr_v4_rec_server_converter.py -------------------------------------------------------------------------------- /converter/det_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/det_converter.py -------------------------------------------------------------------------------- /converter/det_fcenet_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/det_fcenet_converter.py -------------------------------------------------------------------------------- /converter/e2e_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/e2e_converter.py -------------------------------------------------------------------------------- /converter/layoutxlm_re_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/layoutxlm_re_converter.py -------------------------------------------------------------------------------- /converter/layoutxlm_ser_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/layoutxlm_ser_converter.py -------------------------------------------------------------------------------- /converter/multilingual_mobile_v2.0_rec_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/multilingual_mobile_v2.0_rec_converter.py -------------------------------------------------------------------------------- /converter/multilingual_ppocr_v3_rec_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/multilingual_ppocr_v3_rec_converter.py -------------------------------------------------------------------------------- /converter/ppocr_v5_det_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/ppocr_v5_det_converter.py -------------------------------------------------------------------------------- /converter/ppocr_v5_rec_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/ppocr_v5_rec_converter.py -------------------------------------------------------------------------------- /converter/ppstructure_table_det_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/ppstructure_table_det_converter.py -------------------------------------------------------------------------------- /converter/ppstructure_table_rec_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/ppstructure_table_rec_converter.py -------------------------------------------------------------------------------- /converter/ppstructure_table_structure_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/ppstructure_table_structure_converter.py -------------------------------------------------------------------------------- /converter/rec_can_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/rec_can_converter.py -------------------------------------------------------------------------------- /converter/rec_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/rec_converter.py -------------------------------------------------------------------------------- /converter/rec_nrtr_mtb_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/rec_nrtr_mtb_converter.py -------------------------------------------------------------------------------- /converter/rec_sar_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/rec_sar_converter.py -------------------------------------------------------------------------------- /converter/rec_svtr_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/rec_svtr_converter.py -------------------------------------------------------------------------------- /converter/rec_vitstr_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/rec_vitstr_converter.py -------------------------------------------------------------------------------- /converter/sr_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/sr_converter.py -------------------------------------------------------------------------------- /converter/srn_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/converter/srn_converter.py -------------------------------------------------------------------------------- /doc/datasets/ArT.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/ArT.jpg -------------------------------------------------------------------------------- /doc/datasets/CASIA_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/CASIA_0.jpg -------------------------------------------------------------------------------- /doc/datasets/CDLA_demo/val_0633.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/CDLA_demo/val_0633.jpg -------------------------------------------------------------------------------- /doc/datasets/CDLA_demo/val_0941.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/CDLA_demo/val_0941.jpg -------------------------------------------------------------------------------- /doc/datasets/LSVT_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/LSVT_1.jpg -------------------------------------------------------------------------------- /doc/datasets/LSVT_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/LSVT_2.jpg -------------------------------------------------------------------------------- /doc/datasets/VoTT.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/VoTT.jpg -------------------------------------------------------------------------------- /doc/datasets/captcha_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/captcha_demo.png -------------------------------------------------------------------------------- /doc/datasets/ccpd_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/ccpd_demo.png -------------------------------------------------------------------------------- /doc/datasets/ch_doc1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/ch_doc1.jpg -------------------------------------------------------------------------------- /doc/datasets/ch_doc3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/ch_doc3.jpg -------------------------------------------------------------------------------- /doc/datasets/ch_street_rec_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/ch_street_rec_1.png -------------------------------------------------------------------------------- /doc/datasets/ch_street_rec_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/ch_street_rec_2.png -------------------------------------------------------------------------------- /doc/datasets/cmb_demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/cmb_demo.jpg -------------------------------------------------------------------------------- /doc/datasets/crohme_demo/hme_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/crohme_demo/hme_00.jpg -------------------------------------------------------------------------------- /doc/datasets/crohme_demo/hme_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/crohme_demo/hme_01.jpg -------------------------------------------------------------------------------- /doc/datasets/crohme_demo/hme_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/crohme_demo/hme_02.jpg -------------------------------------------------------------------------------- /doc/datasets/doc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/doc.jpg -------------------------------------------------------------------------------- /doc/datasets/funsd_demo/gt_train_00040534.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/funsd_demo/gt_train_00040534.jpg -------------------------------------------------------------------------------- /doc/datasets/funsd_demo/gt_train_00070353.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/funsd_demo/gt_train_00070353.jpg -------------------------------------------------------------------------------- /doc/datasets/ic15_location_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/ic15_location_download.png -------------------------------------------------------------------------------- /doc/datasets/icdar_rec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/icdar_rec.png -------------------------------------------------------------------------------- /doc/datasets/labelimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/labelimg.jpg -------------------------------------------------------------------------------- /doc/datasets/labelme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/labelme.jpg -------------------------------------------------------------------------------- /doc/datasets/nist_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/nist_demo.png -------------------------------------------------------------------------------- /doc/datasets/publaynet_demo/gt_PMC3724501_00006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/publaynet_demo/gt_PMC3724501_00006.jpg -------------------------------------------------------------------------------- /doc/datasets/publaynet_demo/gt_PMC5086060_00002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/publaynet_demo/gt_PMC5086060_00002.jpg -------------------------------------------------------------------------------- /doc/datasets/rctw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/rctw.jpg -------------------------------------------------------------------------------- /doc/datasets/roLabelImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/roLabelImg.png -------------------------------------------------------------------------------- /doc/datasets/table_PubTabNet_demo/PMC524509_007_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/table_PubTabNet_demo/PMC524509_007_00.png -------------------------------------------------------------------------------- /doc/datasets/table_PubTabNet_demo/PMC535543_007_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/table_PubTabNet_demo/PMC535543_007_01.png -------------------------------------------------------------------------------- /doc/datasets/table_tal_demo/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/table_tal_demo/1.jpg -------------------------------------------------------------------------------- /doc/datasets/table_tal_demo/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/table_tal_demo/2.jpg -------------------------------------------------------------------------------- /doc/datasets/tablebank_demo/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/tablebank_demo/004.png -------------------------------------------------------------------------------- /doc/datasets/tablebank_demo/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/tablebank_demo/005.png -------------------------------------------------------------------------------- /doc/datasets/wildreceipt_demo/1bbe854b8817dedb8585e0732089fd1f752d2cec.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/wildreceipt_demo/1bbe854b8817dedb8585e0732089fd1f752d2cec.jpeg -------------------------------------------------------------------------------- /doc/datasets/wildreceipt_demo/2769.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/wildreceipt_demo/2769.jpeg -------------------------------------------------------------------------------- /doc/datasets/xfund_demo/gt_zh_train_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/xfund_demo/gt_zh_train_0.jpg -------------------------------------------------------------------------------- /doc/datasets/xfund_demo/gt_zh_train_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/datasets/xfund_demo/gt_zh_train_1.jpg -------------------------------------------------------------------------------- /doc/doc_ch/inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/doc_ch/inference.md -------------------------------------------------------------------------------- /doc/doc_ch/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/doc_ch/installation.md -------------------------------------------------------------------------------- /doc/doc_ch/models_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/doc_ch/models_list.md -------------------------------------------------------------------------------- /doc/doc_ch/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/doc_ch/reference.md -------------------------------------------------------------------------------- /doc/doc_en/inference_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/doc_en/inference_en.md -------------------------------------------------------------------------------- /doc/doc_en/installation_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/doc_en/installation_en.md -------------------------------------------------------------------------------- /doc/doc_en/models_list_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/doc_en/models_list_en.md -------------------------------------------------------------------------------- /doc/doc_en/reference_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/doc_en/reference_en.md -------------------------------------------------------------------------------- /doc/fonts/arabic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/fonts/arabic.ttf -------------------------------------------------------------------------------- /doc/fonts/chinese_cht.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/fonts/chinese_cht.ttf -------------------------------------------------------------------------------- /doc/fonts/cyrillic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/fonts/cyrillic.ttf -------------------------------------------------------------------------------- /doc/fonts/french.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/fonts/french.ttf -------------------------------------------------------------------------------- /doc/fonts/german.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/fonts/german.ttf -------------------------------------------------------------------------------- /doc/fonts/hindi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/fonts/hindi.ttf -------------------------------------------------------------------------------- /doc/fonts/japan.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/fonts/japan.ttc -------------------------------------------------------------------------------- /doc/fonts/kannada.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/fonts/kannada.ttf -------------------------------------------------------------------------------- /doc/fonts/korean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/fonts/korean.ttf -------------------------------------------------------------------------------- /doc/fonts/latin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/fonts/latin.ttf -------------------------------------------------------------------------------- /doc/fonts/marathi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/fonts/marathi.ttf -------------------------------------------------------------------------------- /doc/fonts/nepali.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/fonts/nepali.ttf -------------------------------------------------------------------------------- /doc/fonts/persian.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/fonts/persian.ttf -------------------------------------------------------------------------------- /doc/fonts/simfang.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/fonts/simfang.ttf -------------------------------------------------------------------------------- /doc/fonts/spanish.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/fonts/spanish.ttf -------------------------------------------------------------------------------- /doc/fonts/tamil.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/fonts/tamil.ttf -------------------------------------------------------------------------------- /doc/fonts/telugu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/fonts/telugu.ttf -------------------------------------------------------------------------------- /doc/fonts/urdu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/fonts/urdu.ttf -------------------------------------------------------------------------------- /doc/fonts/uyghur.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/fonts/uyghur.ttf -------------------------------------------------------------------------------- /doc/imgs/00006737.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs/00006737.jpg -------------------------------------------------------------------------------- /doc/imgs/00009282.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs/00009282.jpg -------------------------------------------------------------------------------- /doc/imgs/00015504.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs/00015504.jpg -------------------------------------------------------------------------------- /doc/imgs/00018069.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs/00018069.jpg -------------------------------------------------------------------------------- /doc/imgs/00056221.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs/00056221.jpg -------------------------------------------------------------------------------- /doc/imgs/00057937.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs/00057937.jpg -------------------------------------------------------------------------------- /doc/imgs/00059985.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs/00059985.jpg -------------------------------------------------------------------------------- /doc/imgs/00077949.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs/00077949.jpg -------------------------------------------------------------------------------- /doc/imgs/00111002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs/00111002.jpg -------------------------------------------------------------------------------- /doc/imgs/00207393.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs/00207393.jpg -------------------------------------------------------------------------------- /doc/imgs/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs/1.jpg -------------------------------------------------------------------------------- /doc/imgs/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs/11.jpg -------------------------------------------------------------------------------- /doc/imgs/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs/12.jpg -------------------------------------------------------------------------------- /doc/imgs/french_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs/french_0.jpg -------------------------------------------------------------------------------- /doc/imgs/ger_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs/ger_1.jpg -------------------------------------------------------------------------------- /doc/imgs/ger_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs/ger_2.jpg -------------------------------------------------------------------------------- /doc/imgs/japan_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs/japan_1.jpg -------------------------------------------------------------------------------- /doc/imgs/japan_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs/japan_2.jpg -------------------------------------------------------------------------------- /doc/imgs/korean_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs/korean_1.jpg -------------------------------------------------------------------------------- /doc/imgs_en/254.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_en/254.jpg -------------------------------------------------------------------------------- /doc/imgs_en/img623.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_en/img623.jpg -------------------------------------------------------------------------------- /doc/imgs_en/img_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_en/img_10.jpg -------------------------------------------------------------------------------- /doc/imgs_en/img_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_en/img_11.jpg -------------------------------------------------------------------------------- /doc/imgs_en/img_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_en/img_12.jpg -------------------------------------------------------------------------------- /doc/imgs_en/img_195.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_en/img_195.jpg -------------------------------------------------------------------------------- /doc/imgs_results/angle_class_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/angle_class_example.jpg -------------------------------------------------------------------------------- /doc/imgs_results/ch_ptocr_mobile_v2.0/00006737.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/ch_ptocr_mobile_v2.0/00006737.jpg -------------------------------------------------------------------------------- /doc/imgs_results/ch_ptocr_mobile_v2.0/00009282.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/ch_ptocr_mobile_v2.0/00009282.jpg -------------------------------------------------------------------------------- /doc/imgs_results/ch_ptocr_mobile_v2.0/00015504.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/ch_ptocr_mobile_v2.0/00015504.jpg -------------------------------------------------------------------------------- /doc/imgs_results/ch_ptocr_mobile_v2.0/00018069.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/ch_ptocr_mobile_v2.0/00018069.jpg -------------------------------------------------------------------------------- /doc/imgs_results/ch_ptocr_mobile_v2.0/00056221.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/ch_ptocr_mobile_v2.0/00056221.jpg -------------------------------------------------------------------------------- /doc/imgs_results/ch_ptocr_mobile_v2.0/00057937.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/ch_ptocr_mobile_v2.0/00057937.jpg -------------------------------------------------------------------------------- /doc/imgs_results/ch_ptocr_mobile_v2.0/00059985.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/ch_ptocr_mobile_v2.0/00059985.jpg -------------------------------------------------------------------------------- /doc/imgs_results/ch_ptocr_mobile_v2.0/00077949.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/ch_ptocr_mobile_v2.0/00077949.jpg -------------------------------------------------------------------------------- /doc/imgs_results/ch_ptocr_mobile_v2.0/00111002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/ch_ptocr_mobile_v2.0/00111002.jpg -------------------------------------------------------------------------------- /doc/imgs_results/ch_ptocr_mobile_v2.0/00207393.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/ch_ptocr_mobile_v2.0/00207393.jpg -------------------------------------------------------------------------------- /doc/imgs_results/ch_ptocr_mobile_v2.0/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/ch_ptocr_mobile_v2.0/1.jpg -------------------------------------------------------------------------------- /doc/imgs_results/ch_ptocr_mobile_v2.0/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/ch_ptocr_mobile_v2.0/11.jpg -------------------------------------------------------------------------------- /doc/imgs_results/ch_ptocr_mobile_v2.0/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/ch_ptocr_mobile_v2.0/12.jpg -------------------------------------------------------------------------------- /doc/imgs_results/ch_ptocr_mobile_v2.0/french_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/ch_ptocr_mobile_v2.0/french_0.jpg -------------------------------------------------------------------------------- /doc/imgs_results/ch_ptocr_mobile_v2.0/ger_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/ch_ptocr_mobile_v2.0/ger_1.jpg -------------------------------------------------------------------------------- /doc/imgs_results/ch_ptocr_mobile_v2.0/ger_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/ch_ptocr_mobile_v2.0/ger_2.jpg -------------------------------------------------------------------------------- /doc/imgs_results/ch_ptocr_mobile_v2.0/img_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/ch_ptocr_mobile_v2.0/img_12.jpg -------------------------------------------------------------------------------- /doc/imgs_results/ch_ptocr_mobile_v2.0/japan_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/ch_ptocr_mobile_v2.0/japan_1.jpg -------------------------------------------------------------------------------- /doc/imgs_results/ch_ptocr_mobile_v2.0/japan_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/ch_ptocr_mobile_v2.0/japan_2.jpg -------------------------------------------------------------------------------- /doc/imgs_results/ch_ptocr_mobile_v2.0/korean_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/ch_ptocr_mobile_v2.0/korean_1.jpg -------------------------------------------------------------------------------- /doc/imgs_results/ch_ptocr_mobile_v2.0/rotate_00052204.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/ch_ptocr_mobile_v2.0/rotate_00052204.jpg -------------------------------------------------------------------------------- /doc/imgs_results/ch_ptocr_mobile_v2.0/test_add_91.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/ch_ptocr_mobile_v2.0/test_add_91.jpg -------------------------------------------------------------------------------- /doc/imgs_results/det_res_00018069.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/det_res_00018069.jpg -------------------------------------------------------------------------------- /doc/imgs_results/det_res_img623_sast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/det_res_img623_sast.jpg -------------------------------------------------------------------------------- /doc/imgs_results/det_res_img_10_db.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/det_res_img_10_db.jpg -------------------------------------------------------------------------------- /doc/imgs_results/det_res_img_10_east.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/det_res_img_10_east.jpg -------------------------------------------------------------------------------- /doc/imgs_results/det_res_img_10_sast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/det_res_img_10_sast.jpg -------------------------------------------------------------------------------- /doc/imgs_results/e2e_res_img293_pgnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/e2e_res_img293_pgnet.png -------------------------------------------------------------------------------- /doc/imgs_results/e2e_res_img295_pgnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/e2e_res_img295_pgnet.png -------------------------------------------------------------------------------- /doc/imgs_results/e2e_res_img623_pgnet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/e2e_res_img623_pgnet.jpg -------------------------------------------------------------------------------- /doc/imgs_results/e2e_res_img_10_pgnet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/e2e_res_img_10_pgnet.jpg -------------------------------------------------------------------------------- /doc/imgs_results/french_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/french_0.jpg -------------------------------------------------------------------------------- /doc/imgs_results/img_10_east_starnet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/img_10_east_starnet.jpg -------------------------------------------------------------------------------- /doc/imgs_results/korean.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/korean.jpg -------------------------------------------------------------------------------- /doc/imgs_results/multi_lang/arabic_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/multi_lang/arabic_0.jpg -------------------------------------------------------------------------------- /doc/imgs_results/multi_lang/en_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/multi_lang/en_1.jpg -------------------------------------------------------------------------------- /doc/imgs_results/multi_lang/en_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/multi_lang/en_2.jpg -------------------------------------------------------------------------------- /doc/imgs_results/multi_lang/en_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/multi_lang/en_3.jpg -------------------------------------------------------------------------------- /doc/imgs_results/multi_lang/french_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/multi_lang/french_0.jpg -------------------------------------------------------------------------------- /doc/imgs_results/multi_lang/img_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/multi_lang/img_01.jpg -------------------------------------------------------------------------------- /doc/imgs_results/multi_lang/img_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/multi_lang/img_02.jpg -------------------------------------------------------------------------------- /doc/imgs_results/multi_lang/img_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/multi_lang/img_12.jpg -------------------------------------------------------------------------------- /doc/imgs_results/multi_lang/japan_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/multi_lang/japan_2.jpg -------------------------------------------------------------------------------- /doc/imgs_results/multi_lang/korean_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/multi_lang/korean_0.jpg -------------------------------------------------------------------------------- /doc/imgs_results/sr/sr_word_52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/sr/sr_word_52.png -------------------------------------------------------------------------------- /doc/imgs_results/system_res_00018069.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_results/system_res_00018069.jpg -------------------------------------------------------------------------------- /doc/imgs_words/arabic/ar_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/arabic/ar_1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/arabic/ar_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/arabic/ar_2.jpg -------------------------------------------------------------------------------- /doc/imgs_words/belarusian/be_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/belarusian/be_1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/belarusian/be_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/belarusian/be_2.jpg -------------------------------------------------------------------------------- /doc/imgs_words/bulgarian/bg_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/bulgarian/bg_1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/bulgarian/bg_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/bulgarian/bg_2.jpg -------------------------------------------------------------------------------- /doc/imgs_words/ch/word_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/ch/word_1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/ch/word_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/ch/word_2.jpg -------------------------------------------------------------------------------- /doc/imgs_words/ch/word_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/ch/word_3.jpg -------------------------------------------------------------------------------- /doc/imgs_words/ch/word_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/ch/word_4.jpg -------------------------------------------------------------------------------- /doc/imgs_words/ch/word_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/ch/word_5.jpg -------------------------------------------------------------------------------- /doc/imgs_words/chinese_traditional/chinese_cht_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/chinese_traditional/chinese_cht_1.png -------------------------------------------------------------------------------- /doc/imgs_words/chinese_traditional/chinese_cht_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/chinese_traditional/chinese_cht_2.png -------------------------------------------------------------------------------- /doc/imgs_words/en/word_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/en/word_1.png -------------------------------------------------------------------------------- /doc/imgs_words/en/word_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/en/word_2.png -------------------------------------------------------------------------------- /doc/imgs_words/en/word_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/en/word_3.png -------------------------------------------------------------------------------- /doc/imgs_words/en/word_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/en/word_4.png -------------------------------------------------------------------------------- /doc/imgs_words/en/word_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/en/word_5.png -------------------------------------------------------------------------------- /doc/imgs_words/french/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/french/1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/french/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/french/2.jpg -------------------------------------------------------------------------------- /doc/imgs_words/german/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/german/1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/hindi/hi_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/hindi/hi_1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/hindi/hi_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/hindi/hi_2.jpg -------------------------------------------------------------------------------- /doc/imgs_words/italian/it_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/italian/it_1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/italian/it_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/italian/it_2.jpg -------------------------------------------------------------------------------- /doc/imgs_words/japan/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/japan/1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/kannada/kn_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/kannada/kn_1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/kannada/kn_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/kannada/kn_2.jpg -------------------------------------------------------------------------------- /doc/imgs_words/korean/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/korean/1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/korean/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/korean/2.jpg -------------------------------------------------------------------------------- /doc/imgs_words/marathi/mr_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/marathi/mr_1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/marathi/mr_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/marathi/mr_2.jpg -------------------------------------------------------------------------------- /doc/imgs_words/nepali/ne_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/nepali/ne_1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/nepali/ne_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/nepali/ne_2.jpg -------------------------------------------------------------------------------- /doc/imgs_words/occitan/oc_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/occitan/oc_1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/occitan/oc_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/occitan/oc_2.jpg -------------------------------------------------------------------------------- /doc/imgs_words/persian/fa_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/persian/fa_1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/persian/fa_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/persian/fa_2.jpg -------------------------------------------------------------------------------- /doc/imgs_words/portuguese/pt_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/portuguese/pt_1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/portuguese/pt_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/portuguese/pt_2.jpg -------------------------------------------------------------------------------- /doc/imgs_words/russia/ru_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/russia/ru_1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/russia/ru_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/russia/ru_2.jpg -------------------------------------------------------------------------------- /doc/imgs_words/serbian_cyrillic/rsc_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/serbian_cyrillic/rsc_1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/serbian_cyrillic/rsc_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/serbian_cyrillic/rsc_2.jpg -------------------------------------------------------------------------------- /doc/imgs_words/serbian_latin/rs_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/serbian_latin/rs_1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/serbian_latin/rs_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/serbian_latin/rs_2.jpg -------------------------------------------------------------------------------- /doc/imgs_words/spanish/es_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/spanish/es_1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/spanish/es_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/spanish/es_2.jpg -------------------------------------------------------------------------------- /doc/imgs_words/tamil/ta_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/tamil/ta_1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/tamil/ta_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/tamil/ta_2.jpg -------------------------------------------------------------------------------- /doc/imgs_words/telugu/te_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/telugu/te_1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/telugu/te_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/telugu/te_2.jpg -------------------------------------------------------------------------------- /doc/imgs_words/ukranian/uk_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/ukranian/uk_1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/ukranian/uk_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/ukranian/uk_2.jpg -------------------------------------------------------------------------------- /doc/imgs_words/urdu/ur_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/urdu/ur_1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/urdu/ur_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/urdu/ur_2.jpg -------------------------------------------------------------------------------- /doc/imgs_words/uyghur/ug_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/uyghur/ug_1.jpg -------------------------------------------------------------------------------- /doc/imgs_words/uyghur/ug_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words/uyghur/ug_2.jpg -------------------------------------------------------------------------------- /doc/imgs_words_en/word_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words_en/word_10.png -------------------------------------------------------------------------------- /doc/imgs_words_en/word_116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words_en/word_116.png -------------------------------------------------------------------------------- /doc/imgs_words_en/word_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words_en/word_19.png -------------------------------------------------------------------------------- /doc/imgs_words_en/word_201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words_en/word_201.png -------------------------------------------------------------------------------- /doc/imgs_words_en/word_308.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words_en/word_308.png -------------------------------------------------------------------------------- /doc/imgs_words_en/word_336.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words_en/word_336.png -------------------------------------------------------------------------------- /doc/imgs_words_en/word_401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words_en/word_401.png -------------------------------------------------------------------------------- /doc/imgs_words_en/word_461.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words_en/word_461.png -------------------------------------------------------------------------------- /doc/imgs_words_en/word_52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words_en/word_52.png -------------------------------------------------------------------------------- /doc/imgs_words_en/word_545.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/imgs_words_en/word_545.png -------------------------------------------------------------------------------- /doc/pgnet_framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/pgnet_framework.png -------------------------------------------------------------------------------- /doc/ppocr_framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/ppocr_framework.png -------------------------------------------------------------------------------- /doc/ppocrv2_framework.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/ppocrv2_framework.jpg -------------------------------------------------------------------------------- /doc/table/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/table/1.png -------------------------------------------------------------------------------- /doc/table/layout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/table/layout.jpg -------------------------------------------------------------------------------- /doc/table/paper-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/table/paper-image.jpg -------------------------------------------------------------------------------- /doc/table/pipeline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/table/pipeline.jpg -------------------------------------------------------------------------------- /doc/table/pipeline_en.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/table/pipeline_en.jpg -------------------------------------------------------------------------------- /doc/table/ppstructure.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/table/ppstructure.GIF -------------------------------------------------------------------------------- /doc/table/result_all.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/table/result_all.jpg -------------------------------------------------------------------------------- /doc/table/result_text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/table/result_text.jpg -------------------------------------------------------------------------------- /doc/table/table.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/table/table.jpg -------------------------------------------------------------------------------- /doc/table/tableocr_pipeline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/table/tableocr_pipeline.jpg -------------------------------------------------------------------------------- /doc/table/tableocr_pipeline_en.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/doc/table/tableocr_pipeline_en.jpg -------------------------------------------------------------------------------- /misc/attention_grucell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/attention_grucell.py -------------------------------------------------------------------------------- /misc/attention_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/attention_head.py -------------------------------------------------------------------------------- /misc/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/common.py -------------------------------------------------------------------------------- /misc/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/conv.py -------------------------------------------------------------------------------- /misc/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/diff.py -------------------------------------------------------------------------------- /misc/fc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/fc.py -------------------------------------------------------------------------------- /misc/gelu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/gelu.py -------------------------------------------------------------------------------- /misc/gru_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/gru_cell.py -------------------------------------------------------------------------------- /misc/hard_swish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/hard_swish.py -------------------------------------------------------------------------------- /misc/hs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/hs.py -------------------------------------------------------------------------------- /misc/layernorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/layernorm.py -------------------------------------------------------------------------------- /misc/lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/lstm.py -------------------------------------------------------------------------------- /misc/onnx_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/onnx_optimizer.py -------------------------------------------------------------------------------- /misc/pp_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/pp_ocr.py -------------------------------------------------------------------------------- /misc/pp_rec_resnet_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/pp_rec_resnet_fpn.py -------------------------------------------------------------------------------- /misc/pp_rec_srn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/pp_rec_srn_head.py -------------------------------------------------------------------------------- /misc/pp_self_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/pp_self_attention.py -------------------------------------------------------------------------------- /misc/pp_table_att_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/pp_table_att_head.py -------------------------------------------------------------------------------- /misc/pp_table_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/pp_table_fpn.py -------------------------------------------------------------------------------- /misc/pp_table_mobilenet_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/pp_table_mobilenet_v3.py -------------------------------------------------------------------------------- /misc/pt_rec_resnet_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/pt_rec_resnet_fpn.py -------------------------------------------------------------------------------- /misc/pt_rec_srn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/pt_rec_srn_head.py -------------------------------------------------------------------------------- /misc/pt_self_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/pt_self_attention.py -------------------------------------------------------------------------------- /misc/pt_table_att_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/pt_table_att_head.py -------------------------------------------------------------------------------- /misc/pt_table_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/pt_table_fpn.py -------------------------------------------------------------------------------- /misc/pt_table_mobilenet_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/pt_table_mobilenet_v3.py -------------------------------------------------------------------------------- /misc/rec_resnet_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/rec_resnet_fpn.py -------------------------------------------------------------------------------- /misc/rec_srn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/rec_srn.py -------------------------------------------------------------------------------- /misc/rec_srn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/rec_srn_head.py -------------------------------------------------------------------------------- /misc/table_att_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/table_att_head.py -------------------------------------------------------------------------------- /misc/table_det.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/table_det.py -------------------------------------------------------------------------------- /misc/table_mobile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/table_mobile.py -------------------------------------------------------------------------------- /misc/table_mobilenet_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/misc/table_mobilenet_v3.py -------------------------------------------------------------------------------- /ptstructure/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ptstructure/examples/data/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/examples/data/1.png -------------------------------------------------------------------------------- /ptstructure/examples/data/example-table.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/examples/data/example-table.jpeg -------------------------------------------------------------------------------- /ptstructure/examples/data/paper-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/examples/data/paper-image.jpg -------------------------------------------------------------------------------- /ptstructure/layout/ptppyolov2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ptstructure/layout/ptppyolov2/ppyolo_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/layout/ptppyolov2/ppyolo_utils.py -------------------------------------------------------------------------------- /ptstructure/layout/ptppyolov2/ppyolov2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/layout/ptppyolov2/ppyolov2.py -------------------------------------------------------------------------------- /ptstructure/layout/ptppyolov2/ppyolov2_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/layout/ptppyolov2/ppyolov2_base.py -------------------------------------------------------------------------------- /ptstructure/layout/ptppyolov2/ppyolov2_darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/layout/ptppyolov2/ppyolov2_darknet.py -------------------------------------------------------------------------------- /ptstructure/layout/ptppyolov2/ppyolov2_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/layout/ptppyolov2/ppyolov2_layout.py -------------------------------------------------------------------------------- /ptstructure/layout/ptppyolov2/ppyolov2_pt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/layout/ptppyolov2/ppyolov2_pt.py -------------------------------------------------------------------------------- /ptstructure/layout/ptppyolov2/ppyolov2_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/layout/ptppyolov2/ppyolov2_resnet.py -------------------------------------------------------------------------------- /ptstructure/layout/ptppyolov2/ppyolov2_yolo_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/layout/ptppyolov2/ppyolov2_yolo_fpn.py -------------------------------------------------------------------------------- /ptstructure/layout/ptppyolov2/ppyolov2_yolo_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/layout/ptppyolov2/ppyolov2_yolo_head.py -------------------------------------------------------------------------------- /ptstructure/layout/ptppyolov2/pt_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/layout/ptppyolov2/pt_utils.py -------------------------------------------------------------------------------- /ptstructure/layout/ptppyolov2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/layout/ptppyolov2/utils.py -------------------------------------------------------------------------------- /ptstructure/output/table/table.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/output/table/table.xlsx -------------------------------------------------------------------------------- /ptstructure/predict_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/predict_system.py -------------------------------------------------------------------------------- /ptstructure/table/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ptstructure/table/matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/table/matcher.py -------------------------------------------------------------------------------- /ptstructure/table/predict_structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/table/predict_structure.py -------------------------------------------------------------------------------- /ptstructure/table/predict_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/table/predict_table.py -------------------------------------------------------------------------------- /ptstructure/table/tablepyxl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/table/tablepyxl/__init__.py -------------------------------------------------------------------------------- /ptstructure/table/tablepyxl/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/table/tablepyxl/style.py -------------------------------------------------------------------------------- /ptstructure/table/tablepyxl/tablepyxl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/table/tablepyxl/tablepyxl.py -------------------------------------------------------------------------------- /ptstructure/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/utility.py -------------------------------------------------------------------------------- /ptstructure/vqa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/README.md -------------------------------------------------------------------------------- /ptstructure/vqa/README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/README_en.md -------------------------------------------------------------------------------- /ptstructure/vqa/README_en_pp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/README_en_pp.md -------------------------------------------------------------------------------- /ptstructure/vqa/README_pp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/README_pp.md -------------------------------------------------------------------------------- /ptstructure/vqa/images/id_cards/id1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/images/id_cards/id1.jpg -------------------------------------------------------------------------------- /ptstructure/vqa/images/id_cards/id2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/images/id_cards/id2.jpg -------------------------------------------------------------------------------- /ptstructure/vqa/images/id_cards/id3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/images/id_cards/id3.jpg -------------------------------------------------------------------------------- /ptstructure/vqa/images/id_cards/id4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/images/id_cards/id4.jpg -------------------------------------------------------------------------------- /ptstructure/vqa/images/id_cards/id5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/images/id_cards/id5.jpg -------------------------------------------------------------------------------- /ptstructure/vqa/images/id_cards/id6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/images/id_cards/id6.jpg -------------------------------------------------------------------------------- /ptstructure/vqa/images/id_cards/id7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/images/id_cards/id7.jpg -------------------------------------------------------------------------------- /ptstructure/vqa/images/input/zh_val_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/images/input/zh_val_0.jpg -------------------------------------------------------------------------------- /ptstructure/vqa/images/input/zh_val_21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/images/input/zh_val_21.jpg -------------------------------------------------------------------------------- /ptstructure/vqa/images/input/zh_val_40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/images/input/zh_val_40.jpg -------------------------------------------------------------------------------- /ptstructure/vqa/images/input/zh_val_42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/images/input/zh_val_42.jpg -------------------------------------------------------------------------------- /ptstructure/vqa/images/result_re/zh_val_21_re.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/images/result_re/zh_val_21_re.jpg -------------------------------------------------------------------------------- /ptstructure/vqa/images/result_re/zh_val_40_re.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/images/result_re/zh_val_40_re.jpg -------------------------------------------------------------------------------- /ptstructure/vqa/images/result_ser/zh_val_0_ser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/images/result_ser/zh_val_0_ser.jpg -------------------------------------------------------------------------------- /ptstructure/vqa/images/result_ser/zh_val_42_ser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/images/result_ser/zh_val_42_ser.jpg -------------------------------------------------------------------------------- /ptstructure/vqa/infer_ser_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/infer_ser_e2e.py -------------------------------------------------------------------------------- /ptstructure/vqa/infer_ser_re_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/infer_ser_re_e2e.py -------------------------------------------------------------------------------- /ptstructure/vqa/labels/labels_ser.txt: -------------------------------------------------------------------------------- 1 | QUESTION 2 | ANSWER 3 | HEADER 4 | -------------------------------------------------------------------------------- /ptstructure/vqa/output/ser_e2e/zh_val_0_ser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/output/ser_e2e/zh_val_0_ser.jpg -------------------------------------------------------------------------------- /ptstructure/vqa/output/ser_e2e/zh_val_42_ser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/output/ser_e2e/zh_val_42_ser.jpg -------------------------------------------------------------------------------- /ptstructure/vqa/output/ser_re_e2e/zh_val_21_re.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/output/ser_re_e2e/zh_val_21_re.jpg -------------------------------------------------------------------------------- /ptstructure/vqa/output/ser_re_e2e/zh_val_40_re.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/output/ser_re_e2e/zh_val_40_re.jpg -------------------------------------------------------------------------------- /ptstructure/vqa/pytorchnlp/data/__init__.py: -------------------------------------------------------------------------------- 1 | from .vocab import * -------------------------------------------------------------------------------- /ptstructure/vqa/pytorchnlp/data/vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/pytorchnlp/data/vocab.py -------------------------------------------------------------------------------- /ptstructure/vqa/pytorchnlp/transformers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/pytorchnlp/transformers/__init__.py -------------------------------------------------------------------------------- /ptstructure/vqa/pytorchnlp/transformers/bert/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ptstructure/vqa/pytorchnlp/transformers/bert/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/pytorchnlp/transformers/bert/tokenizer.py -------------------------------------------------------------------------------- /ptstructure/vqa/pytorchnlp/transformers/layoutlm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ptstructure/vqa/pytorchnlp/transformers/layoutlm/modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/pytorchnlp/transformers/layoutlm/modeling.py -------------------------------------------------------------------------------- /ptstructure/vqa/pytorchnlp/transformers/layoutlm/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/pytorchnlp/transformers/layoutlm/tokenizer.py -------------------------------------------------------------------------------- /ptstructure/vqa/pytorchnlp/transformers/layoutxlm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ptstructure/vqa/pytorchnlp/transformers/layoutxlm/modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/pytorchnlp/transformers/layoutxlm/modeling.py -------------------------------------------------------------------------------- /ptstructure/vqa/pytorchnlp/transformers/layoutxlm/network.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/pytorchnlp/transformers/layoutxlm/network.txt -------------------------------------------------------------------------------- /ptstructure/vqa/pytorchnlp/transformers/layoutxlm/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/pytorchnlp/transformers/layoutxlm/tokenizer.py -------------------------------------------------------------------------------- /ptstructure/vqa/pytorchnlp/transformers/layoutxlm/visual_backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/pytorchnlp/transformers/layoutxlm/visual_backbone.py -------------------------------------------------------------------------------- /ptstructure/vqa/pytorchnlp/transformers/layoutxlm/visual_backbone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/pytorchnlp/transformers/layoutxlm/visual_backbone.yaml -------------------------------------------------------------------------------- /ptstructure/vqa/pytorchnlp/transformers/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/pytorchnlp/transformers/model_utils.py -------------------------------------------------------------------------------- /ptstructure/vqa/pytorchnlp/transformers/tokenizer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/pytorchnlp/transformers/tokenizer_utils.py -------------------------------------------------------------------------------- /ptstructure/vqa/pytorchnlp/transformers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/pytorchnlp/transformers/utils.py -------------------------------------------------------------------------------- /ptstructure/vqa/vqa_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/ptstructure/vqa/vqa_utils.py -------------------------------------------------------------------------------- /pytorchocr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorchocr/base_ocr_v20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/base_ocr_v20.py -------------------------------------------------------------------------------- /pytorchocr/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/data/__init__.py -------------------------------------------------------------------------------- /pytorchocr/data/imaug/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/data/imaug/__init__.py -------------------------------------------------------------------------------- /pytorchocr/data/imaug/gen_table_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/data/imaug/gen_table_mask.py -------------------------------------------------------------------------------- /pytorchocr/data/imaug/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/data/imaug/operators.py -------------------------------------------------------------------------------- /pytorchocr/modeling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorchocr/modeling/architectures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/architectures/__init__.py -------------------------------------------------------------------------------- /pytorchocr/modeling/architectures/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/architectures/base_model.py -------------------------------------------------------------------------------- /pytorchocr/modeling/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/backbones/__init__.py -------------------------------------------------------------------------------- /pytorchocr/modeling/backbones/det_mobilenet_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/backbones/det_mobilenet_v3.py -------------------------------------------------------------------------------- /pytorchocr/modeling/backbones/det_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/backbones/det_resnet.py -------------------------------------------------------------------------------- /pytorchocr/modeling/backbones/det_resnet_vd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/backbones/det_resnet_vd.py -------------------------------------------------------------------------------- /pytorchocr/modeling/backbones/det_resnet_vd_sast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/backbones/det_resnet_vd_sast.py -------------------------------------------------------------------------------- /pytorchocr/modeling/backbones/e2e_resnet_vd_pg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/backbones/e2e_resnet_vd_pg.py -------------------------------------------------------------------------------- /pytorchocr/modeling/backbones/rec_densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/backbones/rec_densenet.py -------------------------------------------------------------------------------- /pytorchocr/modeling/backbones/rec_donut_swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/backbones/rec_donut_swin.py -------------------------------------------------------------------------------- /pytorchocr/modeling/backbones/rec_hgnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/backbones/rec_hgnet.py -------------------------------------------------------------------------------- /pytorchocr/modeling/backbones/rec_lcnetv3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/backbones/rec_lcnetv3.py -------------------------------------------------------------------------------- /pytorchocr/modeling/backbones/rec_lcnetv3_bak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/backbones/rec_lcnetv3_bak.py -------------------------------------------------------------------------------- /pytorchocr/modeling/backbones/rec_mobilenet_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/backbones/rec_mobilenet_v3.py -------------------------------------------------------------------------------- /pytorchocr/modeling/backbones/rec_mv1_enhance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/backbones/rec_mv1_enhance.py -------------------------------------------------------------------------------- /pytorchocr/modeling/backbones/rec_nrtr_mtb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/backbones/rec_nrtr_mtb.py -------------------------------------------------------------------------------- /pytorchocr/modeling/backbones/rec_pphgnetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/backbones/rec_pphgnetv2.py -------------------------------------------------------------------------------- /pytorchocr/modeling/backbones/rec_resnet_31.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/backbones/rec_resnet_31.py -------------------------------------------------------------------------------- /pytorchocr/modeling/backbones/rec_resnet_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/backbones/rec_resnet_fpn.py -------------------------------------------------------------------------------- /pytorchocr/modeling/backbones/rec_resnet_vd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/backbones/rec_resnet_vd.py -------------------------------------------------------------------------------- /pytorchocr/modeling/backbones/rec_svtrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/backbones/rec_svtrnet.py -------------------------------------------------------------------------------- /pytorchocr/modeling/backbones/rec_vitstr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/backbones/rec_vitstr.py -------------------------------------------------------------------------------- /pytorchocr/modeling/backbones/table_mobilenet_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/backbones/table_mobilenet_v3.py -------------------------------------------------------------------------------- /pytorchocr/modeling/backbones/table_resnet_vd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/backbones/table_resnet_vd.py -------------------------------------------------------------------------------- /pytorchocr/modeling/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/common.py -------------------------------------------------------------------------------- /pytorchocr/modeling/heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/heads/__init__.py -------------------------------------------------------------------------------- /pytorchocr/modeling/heads/cls_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/heads/cls_head.py -------------------------------------------------------------------------------- /pytorchocr/modeling/heads/det_db_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/heads/det_db_head.py -------------------------------------------------------------------------------- /pytorchocr/modeling/heads/det_east_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/heads/det_east_head.py -------------------------------------------------------------------------------- /pytorchocr/modeling/heads/det_fce_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/heads/det_fce_head.py -------------------------------------------------------------------------------- /pytorchocr/modeling/heads/det_pse_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/heads/det_pse_head.py -------------------------------------------------------------------------------- /pytorchocr/modeling/heads/det_sast_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/heads/det_sast_head.py -------------------------------------------------------------------------------- /pytorchocr/modeling/heads/e2e_pg_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/heads/e2e_pg_head.py -------------------------------------------------------------------------------- /pytorchocr/modeling/heads/multiheadAttention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/heads/multiheadAttention.py -------------------------------------------------------------------------------- /pytorchocr/modeling/heads/rec_att_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/heads/rec_att_head.py -------------------------------------------------------------------------------- /pytorchocr/modeling/heads/rec_can_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/heads/rec_can_head.py -------------------------------------------------------------------------------- /pytorchocr/modeling/heads/rec_ctc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/heads/rec_ctc_head.py -------------------------------------------------------------------------------- /pytorchocr/modeling/heads/rec_multi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/heads/rec_multi_head.py -------------------------------------------------------------------------------- /pytorchocr/modeling/heads/rec_nrtr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/heads/rec_nrtr_head.py -------------------------------------------------------------------------------- /pytorchocr/modeling/heads/rec_sar_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/heads/rec_sar_head.py -------------------------------------------------------------------------------- /pytorchocr/modeling/heads/rec_srn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/heads/rec_srn_head.py -------------------------------------------------------------------------------- /pytorchocr/modeling/heads/self_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/heads/self_attention.py -------------------------------------------------------------------------------- /pytorchocr/modeling/heads/sr_rensnet_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/heads/sr_rensnet_transformer.py -------------------------------------------------------------------------------- /pytorchocr/modeling/heads/table_att_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/heads/table_att_head.py -------------------------------------------------------------------------------- /pytorchocr/modeling/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/necks/__init__.py -------------------------------------------------------------------------------- /pytorchocr/modeling/necks/db_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/necks/db_fpn.py -------------------------------------------------------------------------------- /pytorchocr/modeling/necks/east_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/necks/east_fpn.py -------------------------------------------------------------------------------- /pytorchocr/modeling/necks/fce_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/necks/fce_fpn.py -------------------------------------------------------------------------------- /pytorchocr/modeling/necks/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/necks/fpn.py -------------------------------------------------------------------------------- /pytorchocr/modeling/necks/intracl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/necks/intracl.py -------------------------------------------------------------------------------- /pytorchocr/modeling/necks/pg_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/necks/pg_fpn.py -------------------------------------------------------------------------------- /pytorchocr/modeling/necks/rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/necks/rnn.py -------------------------------------------------------------------------------- /pytorchocr/modeling/necks/sast_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/necks/sast_fpn.py -------------------------------------------------------------------------------- /pytorchocr/modeling/necks/table_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/necks/table_fpn.py -------------------------------------------------------------------------------- /pytorchocr/modeling/transforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/transforms/__init__.py -------------------------------------------------------------------------------- /pytorchocr/modeling/transforms/stn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/transforms/stn.py -------------------------------------------------------------------------------- /pytorchocr/modeling/transforms/tbsrn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/transforms/tbsrn.py -------------------------------------------------------------------------------- /pytorchocr/modeling/transforms/tps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/transforms/tps.py -------------------------------------------------------------------------------- /pytorchocr/modeling/transforms/tps_spatial_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/transforms/tps_spatial_transformer.py -------------------------------------------------------------------------------- /pytorchocr/modeling/transforms/tsrn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/modeling/transforms/tsrn.py -------------------------------------------------------------------------------- /pytorchocr/postprocess/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/postprocess/__init__.py -------------------------------------------------------------------------------- /pytorchocr/postprocess/cls_postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/postprocess/cls_postprocess.py -------------------------------------------------------------------------------- /pytorchocr/postprocess/db_postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/postprocess/db_postprocess.py -------------------------------------------------------------------------------- /pytorchocr/postprocess/east_postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/postprocess/east_postprocess.py -------------------------------------------------------------------------------- /pytorchocr/postprocess/fce_postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/postprocess/fce_postprocess.py -------------------------------------------------------------------------------- /pytorchocr/postprocess/locality_aware_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/postprocess/locality_aware_nms.py -------------------------------------------------------------------------------- /pytorchocr/postprocess/pg_postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/postprocess/pg_postprocess.py -------------------------------------------------------------------------------- /pytorchocr/postprocess/pse_postprocess/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/postprocess/pse_postprocess/__init__.py -------------------------------------------------------------------------------- /pytorchocr/postprocess/pse_postprocess/pse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/postprocess/pse_postprocess/pse/README.md -------------------------------------------------------------------------------- /pytorchocr/postprocess/pse_postprocess/pse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/postprocess/pse_postprocess/pse/__init__.py -------------------------------------------------------------------------------- /pytorchocr/postprocess/pse_postprocess/pse/pse.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/postprocess/pse_postprocess/pse/pse.pyx -------------------------------------------------------------------------------- /pytorchocr/postprocess/pse_postprocess/pse/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/postprocess/pse_postprocess/pse/setup.py -------------------------------------------------------------------------------- /pytorchocr/postprocess/pse_postprocess/pse_postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/postprocess/pse_postprocess/pse_postprocess.py -------------------------------------------------------------------------------- /pytorchocr/postprocess/rec_postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/postprocess/rec_postprocess.py -------------------------------------------------------------------------------- /pytorchocr/postprocess/sast_postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/postprocess/sast_postprocess.py -------------------------------------------------------------------------------- /pytorchocr/utils/EN_symbol_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/EN_symbol_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorchocr/utils/dict/ar_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/ar_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/arabic_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/arabic_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/be_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/be_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/bg_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/bg_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/ch_tra_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/ch_tra_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/chinese_cht_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/chinese_cht_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/cyrillic_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/cyrillic_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/devanagari_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/devanagari_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/en_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/en_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/es_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/es_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/fa_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/fa_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/french_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/french_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/german_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/german_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/hi_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/hi_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/it_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/it_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/japan_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/japan_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/ka_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/ka_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/kn_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/kn_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/korean_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/korean_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/latex_symbol_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/latex_symbol_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/latin_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/latin_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/mr_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/mr_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/ne_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/ne_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/oc_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/oc_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/ppocrv5_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/ppocrv5_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/pt_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/pt_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/pu_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/pu_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/rs_cyrillic_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/rs_cyrillic_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/rs_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/rs_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/rs_latin_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/rs_latin_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/rsc_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/rsc_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/ru_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/ru_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/ta_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/ta_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/table_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/table_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/table_structure_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/table_structure_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/te_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/te_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/ug_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/ug_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/uk_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/uk_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/ur_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/ur_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict/xi_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict/xi_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/dict90.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/dict90.txt -------------------------------------------------------------------------------- /pytorchocr/utils/e2e_utils/extract_batchsize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/e2e_utils/extract_batchsize.py -------------------------------------------------------------------------------- /pytorchocr/utils/e2e_utils/extract_textpoint_fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/e2e_utils/extract_textpoint_fast.py -------------------------------------------------------------------------------- /pytorchocr/utils/e2e_utils/extract_textpoint_slow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/e2e_utils/extract_textpoint_slow.py -------------------------------------------------------------------------------- /pytorchocr/utils/e2e_utils/pgnet_pp_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/e2e_utils/pgnet_pp_utils.py -------------------------------------------------------------------------------- /pytorchocr/utils/e2e_utils/visual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/e2e_utils/visual.py -------------------------------------------------------------------------------- /pytorchocr/utils/en_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/en_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/ic15_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/ic15_dict.txt -------------------------------------------------------------------------------- /pytorchocr/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/logging.py -------------------------------------------------------------------------------- /pytorchocr/utils/poly_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/poly_nms.py -------------------------------------------------------------------------------- /pytorchocr/utils/ppocr_keys_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/ppocr_keys_v1.txt -------------------------------------------------------------------------------- /pytorchocr/utils/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/pytorchocr/utils/utility.py -------------------------------------------------------------------------------- /tools/infer/predict_cls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/tools/infer/predict_cls.py -------------------------------------------------------------------------------- /tools/infer/predict_det.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/tools/infer/predict_det.py -------------------------------------------------------------------------------- /tools/infer/predict_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/tools/infer/predict_e2e.py -------------------------------------------------------------------------------- /tools/infer/predict_rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/tools/infer/predict_rec.py -------------------------------------------------------------------------------- /tools/infer/predict_sr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/tools/infer/predict_sr.py -------------------------------------------------------------------------------- /tools/infer/predict_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/tools/infer/predict_system.py -------------------------------------------------------------------------------- /tools/infer/pytorchocr_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frotms/PaddleOCR2Pytorch/HEAD/tools/infer/pytorchocr_utility.py --------------------------------------------------------------------------------