├── LICENSE ├── README.md ├── cli.py ├── converters.py ├── main.py ├── processor.py ├── requirements.txt └── test_ocr.pdf /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathinml/pdf2md/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathinml/pdf2md/HEAD/README.md -------------------------------------------------------------------------------- /cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathinml/pdf2md/HEAD/cli.py -------------------------------------------------------------------------------- /converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathinml/pdf2md/HEAD/converters.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathinml/pdf2md/HEAD/main.py -------------------------------------------------------------------------------- /processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathinml/pdf2md/HEAD/processor.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pdf2image 2 | transformers 3 | vllm 4 | qwen_vl_utils 5 | pillow -------------------------------------------------------------------------------- /test_ocr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathinml/pdf2md/HEAD/test_ocr.pdf --------------------------------------------------------------------------------