|
Put [model files]() here: |
|
|
|
``` |
|
models |
|
├── Layout |
|
│ ├── LayoutLMv3 |
|
│ │ ├── config.json |
|
│ │ └── model_final.pth |
|
│ └── YOLO |
|
│ └── yolov10l_ft.pt |
|
├── MFD |
|
│ └── YOLO |
|
│ └── yolo_v8_ft.pt |
|
├── MFR |
|
│ ├── UniMERNet |
|
│ │ ├── README.md |
|
│ │ ├── config.json |
|
│ │ ├── preprocessor_config.json |
|
│ │ ├── pytorch_model.bin |
|
│ │ ├── tokenizer.json |
|
│ │ └── tokenizer_config.json |
|
│ ├── unimernet_base |
|
│ │ ├── README.md |
|
│ │ ├── config.json |
|
│ │ ├── configuration.json |
|
│ │ ├── preprocessor_config.json |
|
│ │ ├── pytorch_model.pth |
|
│ │ ├── tokenizer.json |
|
│ │ ├── tokenizer_config.json |
|
│ │ └── unimernet_base.yaml |
|
│ ├── unimernet_small |
|
│ │ ├── README.md |
|
│ │ ├── config.json |
|
│ │ ├── configuration.json |
|
│ │ ├── preprocessor_config.json |
|
│ │ ├── pytorch_model.pth |
|
│ │ ├── tokenizer.json |
|
│ │ ├── tokenizer_config.json |
|
│ │ └── unimernet_small.yaml |
|
│ └── unimernet_tiny |
|
│ ├── README.md |
|
│ ├── config.json |
|
│ ├── configuration.json |
|
│ ├── preprocessor_config.json |
|
│ ├── pytorch_model.pth |
|
│ ├── tokenizer.json |
|
│ ├── tokenizer_config.json |
|
│ └── unimernet_tiny.yaml |
|
├── README.md |
|
└── TabRec |
|
├── StructEqTable |
|
│ ├── config.json |
|
│ ├── generation_config.json |
|
│ ├── model.safetensors |
|
│ ├── preprocessor_config.json |
|
│ ├── special_tokens_map.json |
|
│ ├── spiece.model |
|
│ ├── tokenizer.json |
|
│ └── tokenizer_config.json |
|
└── TableMaster |
|
├── ch_PP-OCRv3_det_infer |
|
│ ├── inference.pdiparams |
|
│ ├── inference.pdiparams.info |
|
│ └── inference.pdmodel |
|
├── ch_PP-OCRv3_rec_infer |
|
│ ├── inference.pdiparams |
|
│ ├── inference.pdiparams.info |
|
│ └── inference.pdmodel |
|
├── ppocr_keys_v1.txt |
|
├── table_master_structure_dict.txt |
|
└── table_structure_tablemaster_infer |
|
├── inference.pdiparams |
|
├── inference.pdiparams.info |
|
└── inference.pdmodel |
|
``` |
|
|