├── .gitattributes ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── aigc_check_fun.py ├── check.py ├── examples ├── 识别效果-ernie3-nano- (glm4).docx ├── 识别效果-ernie3-nano- (gpt4).docx ├── 识别效果-ernie3-nano- (文心3.5).docx ├── 识别效果-ernie3-nano-(chatglm).docx └── 识别效果-ernie3-nano-(原文).docx ├── main.py ├── model ├── config.json ├── pytorch_model.bin ├── special_tokens_map.json ├── tokenizer.json ├── tokenizer_config.json └── vocab.txt ├── requirements.txt ├── static ├── dragonos.jpg └── sponsor.jpg └── utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslongjin/TextRecogn/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslongjin/TextRecogn/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslongjin/TextRecogn/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslongjin/TextRecogn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslongjin/TextRecogn/HEAD/README.md -------------------------------------------------------------------------------- /aigc_check_fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslongjin/TextRecogn/HEAD/aigc_check_fun.py -------------------------------------------------------------------------------- /check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslongjin/TextRecogn/HEAD/check.py -------------------------------------------------------------------------------- /examples/识别效果-ernie3-nano- (glm4).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslongjin/TextRecogn/HEAD/examples/识别效果-ernie3-nano- (glm4).docx -------------------------------------------------------------------------------- /examples/识别效果-ernie3-nano- (gpt4).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslongjin/TextRecogn/HEAD/examples/识别效果-ernie3-nano- (gpt4).docx -------------------------------------------------------------------------------- /examples/识别效果-ernie3-nano- (文心3.5).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslongjin/TextRecogn/HEAD/examples/识别效果-ernie3-nano- (文心3.5).docx -------------------------------------------------------------------------------- /examples/识别效果-ernie3-nano-(chatglm).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslongjin/TextRecogn/HEAD/examples/识别效果-ernie3-nano-(chatglm).docx -------------------------------------------------------------------------------- /examples/识别效果-ernie3-nano-(原文).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslongjin/TextRecogn/HEAD/examples/识别效果-ernie3-nano-(原文).docx -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslongjin/TextRecogn/HEAD/main.py -------------------------------------------------------------------------------- /model/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslongjin/TextRecogn/HEAD/model/config.json -------------------------------------------------------------------------------- /model/pytorch_model.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslongjin/TextRecogn/HEAD/model/pytorch_model.bin -------------------------------------------------------------------------------- /model/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslongjin/TextRecogn/HEAD/model/special_tokens_map.json -------------------------------------------------------------------------------- /model/tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslongjin/TextRecogn/HEAD/model/tokenizer.json -------------------------------------------------------------------------------- /model/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslongjin/TextRecogn/HEAD/model/tokenizer_config.json -------------------------------------------------------------------------------- /model/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslongjin/TextRecogn/HEAD/model/vocab.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslongjin/TextRecogn/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/dragonos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslongjin/TextRecogn/HEAD/static/dragonos.jpg -------------------------------------------------------------------------------- /static/sponsor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslongjin/TextRecogn/HEAD/static/sponsor.jpg -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fslongjin/TextRecogn/HEAD/utils.py --------------------------------------------------------------------------------