GraySoft
Projects Models Compare Cloud benchmarks FAQ Download guIDE →
Model Intelligence Sheet

cstr/texteller-3-GGUF overview

TexTeller 3.0 GGUF GGUF conversions of OleehyO/TexTeller https://huggingface.co/OleehyO/TexTeller for CrispEmbed https://github.com/CrispStrobe/CrispEmbed infe…

ggufmath-ocrlatexvision-encoder-decodercrispembedggmlenzhbase_model:OleehyO/TexTellerbase_model:quantized:OleehyO/TexTellerlicense:apache-2.0region:us

Runs locally from ~169.2 MB disk (4 GB VRAM class GPUs with llama.cpp / guIDE).

Downloads
0
Likes
0
Pipeline
Author

Repository Files & Downloads

3 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
texteller-3-f16.ggufGGUFF16567.7 MBDownload
texteller-3-q4_k.ggufGGUFQ4_K169.2 MBDownload
texteller-3-q8_0.ggufGGUFQ8_0302.7 MBDownload

Model Details

Model IDcstr/texteller-3-GGUF
Authorcstr
Pipeline
Licenseapache-2.0
Base modelOleehyO/TexTeller
Last modified2026-06-20T20:12:19.000Z

Model README

---

license: apache-2.0

base_model: OleehyO/TexTeller

tags:

- math-ocr

- latex

- vision-encoder-decoder

- gguf

- crispembed

- ggml

language:

- en

- zh

---

TexTeller 3.0 GGUF

GGUF conversions of OleehyO/TexTeller for CrispEmbed inference.

Lightweight math OCR model (310M params). Converts images of printed and handwritten math expressions into LaTeX. Trained on 80M image-LaTeX pairs, supports mixed English/Chinese formulas.

Model variants

| File | Quant | Size | Notes |

|------|-------|------|-------|

| texteller-3-f16.gguf | F16 | 568 MB | Full precision |

| texteller-3-q8_0.gguf | Q8_0 | 302 MB | Recommended |

| texteller-3-q4_k.gguf | Q4_K | 169 MB | Max compression |

Architecture

  • Encoder: ViT (12L, 768d, 12 heads, patch=16, 448x448 grayscale input)
  • Decoder: TrOCR (12L, 1024d, 16 heads, 4096 FFN, GELU, cross-attention)
  • Vocabulary: 15,000 tokens (BPE + 3,500 Chinese characters)
  • Parameters: 310M total (86M encoder + 224M decoder)
  • Input: 1-channel grayscale, 448x448 pixels
  • Output: LaTeX string

Usage

# CLI
./crispembed -m texteller-3-q8_0.gguf --ocr formula.png

# Server
./crispembed-server --ocr texteller-3-q8_0.gguf --port 8080
curl -X POST http://localhost:8080/math/ocr -F "image=@formula.png"
from crispembed import CrispMathOcr

ocr = CrispMathOcr("texteller-3-q8_0.gguf")
latex = ocr.recognize("formula.png")
print(latex)  # \mathrm{x}+\mathrm{y}

License

Apache-2.0 — same as the base model.

Credits

Original model by OleehyO/TexTeller. GGUF conversion and inference engine by CrispEmbed.

Run cstr/texteller-3-GGUF with guIDE

Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.

Download guIDE → · Browse 524k+ models · Compare models

Source: Hugging Face · Compare models