AI SeedbankHelp preserve open and free AI for humanity's future

← All models

breezedeus_pix2text-mfr

breezedeus · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: · Leechers:

Model card

The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.


tags:

  • latex-ocr
  • math-ocr
  • math-formula-recognition
  • mfr
  • pix2text
  • p2t
  • image-to-text license: mit library_name: transformers

Model Card: Pix2Text-MFR

Mathematical Formula Recognition (MFR) model from Pix2Text (P2T).

Model Details / 模型细节

This MFR model utilizes the TrOCR architecture developed by Microsoft, starting with its initial values and retrained using a dataset of mathematical formula images. The resulting MFR model can be used to convert images of mathematical formulas into LaTeX text representation. More detailed can be found: Pix2Text V1.0 New Release: The Best Open-Source Formula Recognition Model | Breezedeus.com.

此 MFR 模型使用了微软的 TrOCR 架构,以其为初始值并利用数学公式图片数据集进行了重新训练。 获得的 MFR 模型可用于把数学公式图片转换为 LaTeX 文本表示。更多细节请见:Pix2Text V1.0 新版发布:最好的开源公式识别模型 | Breezedeus.com

Usage and Limitations / 使用和限制

  • Purpose: This model is a mathematical formula recognition model, capable of converting input images of mathematical formulas into LaTeX text representation.

  • Limitation: Since the model is trained on images of mathematical formulas, it may not work when recognizing other types of images.

  • 用途:此模型为数学公式识别模型,它可以把输入的数学公式图片转换为 LaTeX 文本表示。

  • 限制:由于模型是在数学公式图片数据上训练的,它在识别其他类型的图片时可能无法工作。

Documents / 文档

  • Pix2Text V1.0 New Release: The Best Open-Source Formula Recognition Model | Breezedeus.com ;
  • Pix2Text (P2T) Github: breezedeus/pix2text ;
  • Pix2Text Online Free Service: p2t.breezedeus.com ;
  • Pix2Text Online Docs: Docs ;
  • Pix2Text More: breezedeus.com/pix2text ;
  • Pix2Text Discard: https://discord.gg/GgD87WM8Tf

Examples / 示例

Printed Math Formula Images / 印刷体公式图片

Handwritten Math Formula Images / 印刷体公式图片

Model Use / 模型使用

Method 1: Using the model Directly

This method doesn't need to install pix2text, but can only recognize pure formula images.

这种方法无需安装 pix2text,但只能识别纯公式图片。

#! pip install transformers>=4.37.0 pillow optimum[onnxruntime]
from PIL import Image
from transformers import TrOCRProcessor
from optimum.onnxruntime import ORTModelForVision2Seq

processor = TrOCRProcessor.from_pretrained('breezedeus/pix2text-mfr')
model = ORTModelForVision2Seq.from_pretrained('breezedeus/pix2text-mfr', use_cache=False)

image_fps = [
    'examples/example.jpg',
    'examples/42.png',
    'examples/0000186.png',
]
images = [Image.open(fp).convert('RGB') for fp in image_fps]
pixel_values = processor(images=images, return_tensors="pt").pixel_values
generated_ids = model.generate(pixel_values)
generated_text = processor.batch_decode(generated_ids, skip_special_tokens=True)
print(f'generated_ids: {generated_ids}, \ngenerated text: {generated_text}')

Method 2: Using Pix2Text

This method requires the installation of pix2text, utilizing the Mathematical Formula Detection model (MFD) within Pix2Text. It is capable of recognizing not only pure formula images but also mixed images containing text.

这种方法需要安装 pix2text,借助 Pix2Text 中的数学公式检测模型(MFD),它不仅可以识别纯公式图片,还可以识别包含文本的混合图片。

$ pip install pix2text>=1.1
#! pip install pix2text>=1.1

from pix2text import Pix2Text, merge_line_texts

image_fps = [
    'examples/example.jpg',
    'examples/42.png',
    'examples/0000186.png',
]
p2t = Pix2Text.from_config()
outs = p2t.recognize_formula(image_fps)  # recognize pure formula images

outs2 = p2t.recognize('examples/mixed.jpg', file_type='text_formula', return_text=True, save_analysis_res='mixed-out.jpg')  # recognize mixed images
print(outs2)

Method 3: Notebook

Just try Pix2Text with this notebook: https://github.com/breezedeus/Pix2Text/blob/main/pix2text_v1_1.ipynb.

Performance / 性能

The original images for the test data are derived from real data uploaded by users on the Pix2Text Online Service. Initially, real user data from a specific period is selected, and then the Mathematical Formula Detection model (MFD) within Pix2Text is used to detect the mathematical formulas in these images and crop the corresponding parts. A subset of these formula images is then randomly chosen for manual annotation to create the test dataset. The following image shows some sample pictures from the test dataset. It is evident that the images in the test dataset are quite diverse, including mathematical formulas of various lengths and complexities, from single letters to formula groups and even matrices. This test dataset includes 485 images.

测试数据对应的原始图片来源于 Pix2Text 网页版 用户上传的真实数据。首先选取一段时间内用户的真实数据,然后利用 Pix2Text 中数学公式检测模型(MFD)检测出这些图片中的数学公式并截取出对应的部分,再从中随机选取部分公式图片进行人工标注。就获得了用于测试的测试数据集了。下图是测试数据集中的部分样例图片。从中可以看出测试数据集中的图片比较多样,包括了各种不同长度和复杂度的数学公式,有单个字母的图片,也有公式组甚至矩阵图片。本测试数据集包括了 485 张图片。

Below are the Character Error Rates (CER, the lower, the better) of various models on this test dataset. For the true annotated results, as well as the output of each model, normalization was first performed to ensure that irrelevant factors such as spaces do not affect the test outcomes. For the recognition results of Texify, the leading and trailing symbols $ or $$ of the formula are removed first.

以下是各个模型在此测试数据集上的 CER(字错误率,越小越好)。其中对真实标注结果,以及每个模型的输出都首先进行了标准化,以保证不会因为空格等无关因素影响测试结果。对 Texify 的识别结果会首先去掉公式的首尾符号$或$$。

As can be seen from the figure above, the Pix2Text V1.0 MFR open-source free version model has significantly outperformed the previous versions of the paid model. Moreover, compared to the V1.0 MFR open-source free model, the precision of the Pix2Text V1.0 MFR paid model has been further improved.

由上图可见,Pix2Text V1.0 MFR 开源免费版模型已经大大优于之前版本的付费模型。而相比 V1.0 MFR 开源免费模型,Pix2Text V1.0 MFR 付费模型精度得到了进一步的提升。

Texify is more suited for recognizing images with standard formatting. It performs poorly in recognizing images containing single letters. This is the main reason why Texify's performance on this test dataset is inferior to that of Latex-OCR.

Texify 更适用于识别标准排版的图片,它对包含单字母的图片识别较差。这也是 Texify 在此测试数据集上效果比 Latex-OCR 还差的主要原因。

Feedback / 反馈

Where to send questions or comments about the model.

Welcome to contact the author Breezedeus.

欢迎联系作者 Breezedeus

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:54d8bf03441fcd994cd2707a2bf1a0176204a703&dn=breezedeus_pix2text-mfr

Open magnet in torrent client · infohash 54d8bf03441fcd994cd2707a2bf1a0176204a703

Files & hashes

PathSizesha1sha256
README.md9.0 KB (9,258 B)f1f7f7e9fd414188448336e7c4cf4183298a6091f9e8f66ad98e223df8e333d27b8430e20064ea427cc94feee495329906ee21e3
config.json4.4 KB (4,556 B)c6f828ccd5f3e8781dc7c7a715bc4b8f80ff41bc9f3812441d397c871b9b2a74e8d956b939aec5f4f45745bba9214e968d56449d
decoder_model.onnx28.7 MB (30,114,937 B)4ccb5ef5f23f23c1442e35ad33e62322872f90f3fd0f92d7a012f3dae41e1ac79421aea0ea888b5a66cb3f9a004e424f82f3daed
encoder_model.onnx83.4 MB (87,496,990 B)589241d78714760e2785af4292065117627ca954bd8d5c322792e9ec45793af5569e9748f82a3d728a9e00213dbfc56c1486f37d
generation_config.json210 B (210 B)a3d09b3add4319b3c2d0ca15011f3618109df47bcbea88288d5576a9655ad04e2456768544be22273a1c5ca160e0d16384639b4f
preprocessor_config.json450 B (450 B)c2bbec3a0dbefdd3ecce8a82458664790ce39b2036a945a7cc645688b9ef64dabae16979cf5f7c1c448569cc306694edc0598b9b
special_tokens_map.json964 B (964 B)b1879d702821e753ffe4245048eee415d54a93858c785abebea9ae3257b61681b4e6fd8365ceafde980c21970d001e834cf10835
tokenizer.json38.2 KB (39,161 B)c07aa39397f33b7822ef84e435e911a70a4ce3033e2ab757277d22639bec28c9d7972e352d3d1dba223051fa674002dc5ab64df3
tokenizer_config.json1.2 KB (1,181 B)bdfa7cd6ca95d1662e765144547e7952869bed337ffff31747c73b1a462b766abfc128e03f669e5b8452fe6e175b1430a078ac8d

Cite this release

Canonical URL
https://aiseedbank.org/models/breezedeus_pix2text-mfr/
Slug
breezedeus_pix2text-mfr
Infohash
54d8bf03441fcd994cd2707a2bf1a0176204a703
License
mit
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: breezedeus_pix2text-mfr.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositorybreezedeus/pix2text-mfr
Revision (pinned)bea257edb2653f2ae413b084f2ac0e8299d08df0
Fetched at2026-09-03T21:10:33Z
License at fetchmit
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-03T21:10:37Z

mit112.2 MB (117,667,707 bytes)transformersonnxvision-encoder-decoderimage-text-to-textlatex-ocrmath-ocrmath-formula-recognitionmfrpix2textp2timage-to-textendpoints_compatible