--- language: en license: mit --- # Kosmos-2.5 [Microsoft Document AI](https://www.microsoft.com/en-us/research/project/document-ai/) | [GitHub](https://github.com/microsoft/unilm/tree/master/kosmos-2.5) ## Model description Kosmos-2.5 is a multimodal literate model for machine reading of text-intensive images. Pre-trained on large-scale text-intensive images, Kosmos-2.5 excels in two distinct yet cooperative transcription tasks: (1) generating spatially-aware text blocks, where each block of text is assigned its spatial coordinates within the image, and (2) producing structured text output that captures styles and structures into the markdown format. This unified multimodal literate capability is achieved through a shared decoder-only auto-regressive Transformer architecture, task-specific prompts, and flexible text representations. We evaluate Kosmos-2.5 on end-to-end document-level text recognition and image-to-markdown text generation. Furthermore, the model can be readily adapted for any text-intensive image understanding task with different prompts through supervised fine-tuning, making it a general-purpose tool for real-world applications involving text-rich images. This work also paves the way for the future scaling of multimodal large language models. [Kosmos-2.5: A Multimodal Literate Model](https://arxiv.org/abs/2309.11419) ## NOTE Since this is a generative model, there is a risk of **hallucination** during the generation process, and it **CAN NOT** guarantee the accuracy of all OCR/Markdown results in the images. ## How to Use? This repo will be soon merged to official Transformers. ```bash pip install git+https://github.com/tic-top/transformers.git ``` ### Markdown Task Run with [md.py](md.py). ```text - **1 \[REG\] BLACK SAKURA** 45,455 - **1 COOKIE DOH SAUCES** 0 - **1 NATA DE COCO** 0 - **Sub Total** 45,455 - **PB1 (10%)** 4,545 - **Rounding** 0 - **Total** **50,000** Card Payment 50,000 ``` ### OCR Task Run with [ocr.py](ocr.py). ```text 55,595,71,595,71,629,55,629,1 82,595,481,595,481,635,82,635,[REG] BLACK SAKURA 716,590,841,590,841,629,716,629,45,455 55,637,71,637,71,672,55,672,1 82,637,486,637,486,675,82,675,COOKIE DOH SAUCES 818,632,843,632,843,668,818,668,0 51,683,71,683,71,719,51,719,1 82,683,371,683,371,719,82,719,NATA DE COCO 820,677,845,677,845,713,820,713,0 32,770,851,770,851,811,32,811,Sub Total 45,455 28,811,853,811,853,858,28,858,PB1 (10%) 4,545 28,857,855,857,855,905,28,905,Rounding 0 24,905,858,905,858,956,24,956,Total 50,000 17,1096,868,1096,868,1150,17,1150,Card Payment 50,000 ``` ![output](output.png) ## Citation If you find Kosmos-2.5 useful in your research, please cite the following paper: ``` @article{lv2023kosmos, title={Kosmos-2.5: A multimodal literate model}, author={Lv, Tengchao and Huang, Yupan and Chen, Jingye and Cui, Lei and Ma, Shuming and Chang, Yaoyao and Huang, Shaohan and Wang, Wenhui and Dong, Li and Luo, Weiyao and others}, journal={arXiv preprint arXiv:2309.11419}, year={2023} } ``` ## License The content of this project itself is licensed under the [MIT](https://github.com/microsoft/unilm/blob/master/kosmos-2.5/LICENSE) [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct)