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

← All models

ibm-granite_granite-docling-258M

ibm-granite · 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.


license: apache-2.0 datasets:

  • ds4sd/SynthCodeNet
  • ds4sd/SynthFormulaNet
  • ds4sd/SynthChartNet
  • HuggingFaceM4/DoclingMatix tags:
  • text-generation
  • documents
  • code
  • formula
  • chart
  • ocr
  • layout
  • table
  • document-parse
  • docling
  • granite
  • extraction
  • math language:
  • en pipeline_tag: image-text-to-text library_name: transformers

granite-docling-258m

Granite Docling is a multimodal Image-Text-to-Text model engineered for efficient document conversion. It preserves the core features of Docling while maintaining seamless integration with DoclingDocuments to ensure full compatibility.

Model Summary:

Granite Docling 258M builds upon the Idefics3 architecture, but introduces two key modifications: it replaces the vision encoder with siglip2-base-patch16-512 and substitutes the language model with a Granite 165M LLM. Try out our Granite-Docling-258 demo today.

  • Developed by: IBM Research
  • Model type: Multi-modal model (image+text-to-text)
  • Language(s): English (NLP)
  • License: Apache 2.0
  • Release Date: September 17, 2025

Granite-docling-258M is fully integrated into the Docling pipelines, carrying over existing features while introducing a number of powerful new features, including:

  • 🔢 Enhanced Equation Recognition: More accurate detection and formatting of mathematical formulas
  • 🧩 Flexible Inference Modes: Choose between full-page inference, bbox-guided region inference
  • 🧘 Improved Stability: Tends to avoid infinite loops more effectively
  • 🧮 Enhanced Inline Equations: Better inline math recognition
  • 🧾 Document Element QA: Answer questions about a document’s structure such as the presence and order of document elements
  • 🌍 Japanese, Arabic and Chinese support (experimental)

Getting started

The easiest way to use this model is through the 🐥Docling library. It will automatically download this model and convert documents to various formats for you.

Install the latest version of docling through pip, then use the following CLI command:

# Convert to HTML and Markdown:
docling --to html --to md --pipeline vlm --vlm-model granite_docling "https://arxiv.org/pdf/2501.17887" # accepts files, urls or directories

# Convert to HTML including layout visualization:
docling --to html_split_page --show-layout --pipeline vlm --vlm-model granite_docling "https://arxiv.org/pdf/2501.17887"

You can also set this model up within the Docling SDK:

from docling.datamodel import vlm_model_specs
from docling.datamodel.base_models import InputFormat
from docling.datamodel.pipeline_options import (
    VlmPipelineOptions,
)
from docling.document_converter import DocumentConverter, PdfFormatOption
from docling.pipeline.vlm_pipeline import VlmPipeline

source = "https://arxiv.org/pdf/2501.17887"

###### USING SIMPLE DEFAULT VALUES
# - GraniteDocling model
# - Using the transformers framework

converter = DocumentConverter(
    format_options={
        InputFormat.PDF: PdfFormatOption(
            pipeline_cls=VlmPipeline,
        ),
    }
)

doc = converter.convert(source=source).document

print(doc.export_to_markdown())


###### USING MACOS MPS ACCELERATOR
# For more options see the compare_vlm_models.py example.

pipeline_options = VlmPipelineOptions(
    vlm_options=vlm_model_specs.GRANITEDOCLING_MLX,
)

converter = DocumentConverter(
    format_options={
        InputFormat.PDF: PdfFormatOption(
            pipeline_cls=VlmPipeline,
            pipeline_options=pipeline_options,
        ),
    }
)

doc = converter.convert(source=source).document

print(doc.export_to_markdown())

Alternatively, you can use bare transformers, vllm, onnx or mlx-vlm to perform inference, and docling-core APIs to convert results to variety of output formats (md, html, etc.):

📄 Single page image inference using plain 🤗 tranformers 🤖

# Prerequisites:
# pip install torch
# pip install docling_core
# pip install transformers

import torch
from docling_core.types.doc import DoclingDocument
from docling_core.types.doc.document import DocTagsDocument
from transformers import AutoProcessor, AutoModelForVision2Seq
from transformers.image_utils import load_image
from pathlib import Path

DEVICE = "cuda" if torch.cuda.is_available() else "cpu"

# Load images
image = load_image("https://huggingface.co/ibm-granite/granite-docling-258M/resolve/main/assets/new_arxiv.png")

# Initialize processor and model
processor = AutoProcessor.from_pretrained("ibm-granite/granite-docling-258M")
model = AutoModelForVision2Seq.from_pretrained(
    "ibm-granite/granite-docling-258M",
    torch_dtype=torch.bfloat16,
    _attn_implementation="flash_attention_2" if DEVICE == "cuda" else "sdpa",
).to(DEVICE)

# Create input messages
messages = [
    {
        "role": "user",
        "content": [
            {"type": "image"},
            {"type": "text", "text": "Convert this page to docling."}
        ]
    },
]

# Prepare inputs
prompt = processor.apply_chat_template(messages, add_generation_prompt=True)
inputs = processor(text=prompt, images=[image], return_tensors="pt")
inputs = inputs.to(DEVICE)

# Generate outputs
generated_ids = model.generate(**inputs, max_new_tokens=8192)
prompt_length = inputs.input_ids.shape[1]
trimmed_generated_ids = generated_ids[:, prompt_length:]
doctags = processor.batch_decode(
    trimmed_generated_ids,
    skip_special_tokens=False,
)[0].lstrip()

print(f"DocTags: \n{doctags}\n")


# Populate document
doctags_doc = DocTagsDocument.from_doctags_and_image_pairs([doctags], [image])
# create a docling document
doc = DoclingDocument.load_from_doctags(doctags_doc, document_name="Document")
print(f"Markdown:\n{doc.export_to_markdown()}\n")

## export as any format.
# Path("out/").mkdir(parents=True, exist_ok=True)
# HTML:
# output_path_html = Path("out/") / "example.html"
# doc.save_as_html(output_path_html)
# Markdown:
# output_path_md = Path("out/") / "example.md"
# doc.save_as_markdown(output_path_md)

🚀 Fast Batch Inference with VLLM

# Prerequisites:
# pip install vllm
# pip install docling_core
# place page images you want to convert into "img/" dir

import time
import os
from vllm import LLM, SamplingParams
from transformers import AutoProcessor
from PIL import Image
from docling_core.types.doc import DoclingDocument
from docling_core.types.doc.document import DocTagsDocument
from pathlib import Path

# Configuration
MODEL_PATH = "ibm-granite/granite-docling-258M"
IMAGE_DIR = "img/"  # Place your page images here
OUTPUT_DIR = "out/"
PROMPT_TEXT = "Convert this page to docling."

messages = [
    {
        "role": "user",
        "content": [
            {"type": "image"},
            {"type": "text", "text": PROMPT_TEXT},
        ],
    },
]


# Ensure output directory exists
os.makedirs(OUTPUT_DIR, exist_ok=True)

# Initialize LLM
llm = LLM(model=MODEL_PATH, revision="untied", limit_mm_per_prompt={"image": 1})
processor = AutoProcessor.from_pretrained(MODEL_PATH)

sampling_params = SamplingParams(
    temperature=0.0,
    max_tokens=8192,
    skip_special_tokens=False,
)

# Load and prepare all images and prompts up front
batched_inputs = []
image_names = []

for img_file in sorted(os.listdir(IMAGE_DIR)):
    if img_file.lower().endswith((".png", ".jpg", ".jpeg")):
        img_path = os.path.join(IMAGE_DIR, img_file)
        with Image.open(img_path) as im:
            image = im.convert("RGB")

        prompt = processor.apply_chat_template(messages, add_generation_prompt=True)
        batched_inputs.append({"prompt": prompt, "multi_modal_data": {"image": image}})
        image_names.append(os.path.splitext(img_file)[0])

# Run batch inference
start_time = time.time()
outputs = llm.generate(batched_inputs, sampling_params=sampling_params)

# Postprocess all results
for img_fn, output, input_data in zip(image_names, outputs, batched_inputs):
    doctags = output.outputs[0].text
    output_path_dt = Path(OUTPUT_DIR) / f"{img_fn}.dt"
    output_path_md = Path(OUTPUT_DIR) / f"{img_fn}.md"

    with open(output_path_dt, "w", encoding="utf-8") as f:
        f.write(doctags)

    # Convert to DoclingDocument and save markdown
    doctags_doc = DocTagsDocument.from_doctags_and_image_pairs([doctags], [input_data["multi_modal_data"]["image"]])
    doc = DoclingDocument.load_from_doctags(doctags_doc, document_name="Document")
    doc.save_as_markdown(output_path_md)

print(f"Total time: {time.time() - start_time:.2f} sec")

💻 Local inference on Apple Silicon with MLX: see here

ℹ️ If you see trouble running granite-docling with the codes above, check the troubleshooting section at the bottom ⬇️.

Intended Use

Granite-Docling is designed to complement the Docling library, not replace it. It integrates as a component within larger Docling library, consolidating the functions of multiple single-purpose models into a single, compact VLM. However, Granite-Docling is not intended for general image understanding. For tasks focused solely on image-text input, we recommend using Granite Vision models, which are purpose-built and optimized for image-text processing.

Evaluations

A comprehensive discussion of evaluation methods and findings has already been presented in our previous publication [citation]. As this model is an update, we refer readers to that work for additional details. The evaluation can be performed using the docling-eval framework for the document related tasks, and lmms-eval for MMStar and OCRBench.

Layout
MAP ↑ F1 ↑ Precision ↑ Recall ↑
smoldocling-256m-preview 0.230.850.90.84
granite-docling-258m 0.270.860.920.88
Full Page OCR
Edit-distance ↓ F1 ↑ Precision ↑ Recall ↑ BLEU ↑ Meteor ↑
smoldocling-256m-preview 0.480.800.89 0.790.580.67
granite-docling-258m 0.450.840.91 0.830.650.72
Code Recognition
Edit-distance ↓ F1 ↑ Precision ↑ Recall ↑ BLEU ↑ Meteor ↑
smoldocling-256m-preview 0.1140.9150.940.9090.8750.889
granite-docling-258m 0.0130.9880.990.988 0.9830.986
Equation Recognition
Edit-distance ↓ F1 ↑ Precision ↑ Recall ↑ BLEU ↑ Meteor ↑
smoldocling-256m-preview 0.1190.9470.9590.9410.8240.878
granite-docling-258m 0.0730.9680.9680.969 0.8930.927
Table Recognition (FinTabNet 150dpi)
TEDS (structure) ↑ TEDS (w/content) ↑
smoldocling-256m-preview 0.820.76
granite-docling-258m 0.970.96
Other Benchmarks
MMStar ↑ OCRBench ↑
smoldocling-256m-preview 0.17338
granite-docling-258m 0.30500

💻 Local inference on Apple Silicon with MLX: see here

Supported Instructions

Description Instruction Short Instruction
Full conversion Convert this page to docling. -
Chart Convert chart to table. <chart>
Formula Convert formula to LaTeX. <formula>
Code Convert code to text. <code>
Table Convert table to OTSL. (Lysak et al., 2023) <otsl>
Actions and Pipelines OCR the text in a specific location: <loc_155><loc_233><loc_206><loc_237> -
Identify element at: <loc_247><loc_482><loc_252><loc_486> -
Find all 'text' elements on the page, retrieve all section headers. -
Detect footer elements on the page. -

Model Architecture:

The architecture of granite-docling-258m consists of the following components:

(1) Vision encoder: siglip2-base-patch16-512.

(2) Vision-language connector: pixel shuffle projector (as in idefics3)

(3) Large language model: Granite 165M.

We built upon Idefics3 to train our model. We incorporated DocTags into our LLM’s supervised fine-tuning (SFT) data to help the model become familiar with the format, enabling faster convergence and mitigating issues previously observed with SmolDocling. The model was trained using the nanoVLM framework, which provides a lightweight and efficient training setup for vision-language models

Training Data: Our training corpus consists of two principal sources: (1) publicly available datasets and (2) internally constructed synthetic datasets designed to elicit specific document understanding capabilities.

In particular, we incorporate:

  • SynthCodeNet — a large-scale collection of synthetically rendered code snippets spanning over 50 programming languages
  • SynthFormulaNet — a dataset of synthetic mathematical expressions paired with ground-truth LaTeX representations
  • SynthChartNet — synthetic chart images annotated with structured table outputs
  • DoclingMatix — a curated corpus of real-world document pages sampled from diverse domains

Infrastructure: We train granite-docling-258m using IBM's super computing cluster, Blue Vela, which is outfitted with NVIDIA H100 GPUs. This cluster provides a scalable and efficient infrastructure for training our models over thousands of GPUs.

Responsible Use and Limitations Some use cases for Vision Language Models can trigger certain risks and ethical considerations, including but not limited to: bias and fairness, misinformation, and autonomous decision-making. Although our alignment processes include safety considerations, the model may in some cases produce inaccurate, biased, offensive or unwanted responses to user prompts. Additionally, whether smaller models may exhibit increased susceptibility to hallucination in generation scenarios due to their reduced sizes, which could limit their ability to generate coherent and contextually accurate responses, remains uncertain. This aspect is currently an active area of research, and we anticipate more rigorous exploration, comprehension, and mitigations in this domain. We urge the community to use granite-docling-258m in a responsible way and avoid any malicious utilization. We recommend using this model only as part of the Docling library. More general vision tasks may pose higher inherent risks of triggering unwanted output. To enhance safety, we recommend using granite-docling-258m alongside Granite Guardian. Granite Guardian is a fine-tuned instruct model designed to detect and flag risks in prompts and responses across key dimensions outlined in the IBM AI Risk Atlas. Its training, which includes both human-annotated and synthetic data informed by internal red-teaming, enables it to outperform similar open-source models on standard benchmarks, providing an additional layer of safety.

Resources

  • ⭐️ Learn about the latest updates with Docling: https://docling-project.github.io/docling/#features
  • 🚀 Get started with Docling concepts, integrations and tutorials: https://docling-project.github.io/docling/getting_started/
  • 💡 Learn about the latest Granite learning resources: https://ibm.biz/granite-learning-resources
  • 🖥️ Learn more about how to use Granite-Docling, explore the Docling library, and see what’s coming next for Docling in the release blog: https://ibm.com/new/announcements/granite-docling-end-to-end-document-conversion

Troubleshooting

Running with VLLM

  1. You receive AttributeError: 'LlamaModel' object has no attribute 'wte' when launching the model through VLLM.

    With current versions of VLLM (including 0.10.2), support for tied weights as used in granite-docling is limited and breaks. We provide a version with untied weights on the untied branch of this model repo. To use the untied version, please pass the revision argument to VLLM:

    # Serve the model through VLLM
    $> vllm serve ibm-granite/granite-docling-258M --revision untied
    
    # If using the VLLM python SDK:
    from vllm import LLM
    ... 
    
    llm = LLM(model=MODEL_PATH, revision="untied", limit_mm_per_prompt={"image": 1})
    
  2. The model outputs only exclamation marks (i.e. "!!!!!!!!!!!!!!!").

    This is seen on older NVIDIA GPUs, such as the T4 GPU available in Google Colab, because it lacks support for bfloat16 format. You can work around it by setting the dtype to float32.

     # Serve the model through VLLM
     $> vllm serve ibm-granite/granite-docling-258M --revision untied --dtype float32
    
    # If using the VLLM python SDK:
    from vllm import LLM
    ... 
    
    llm = LLM(model=MODEL_PATH, revision="untied", limit_mm_per_prompt={"image": 1}, dtype="float32")
    

Magnet link

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

magnet:?xt=urn:btih:83619e351ec35c3e037aa46b5ee68d1e4040fb05&dn=ibm-granite_granite-docling-258M

Open magnet in torrent client · infohash 83619e351ec35c3e037aa46b5ee68d1e4040fb05

Files & hashes

PathSizesha1sha256
README.md20.5 KB (21,039 B)9ca91f891770e0e507bee3f299c01a9d72ae1775b43727febeba2c6ce20b8746322e7687ca667d81a12d0364f346148f30622d84
added_tokens.json35 B (35 B)2895b6710d6bb8d5e7cc5d1137d79eff8ad06df2882e49757a3bea90e00df1d2dc8c18b2b526ff77380db20439feeb1f053a63cd
assets/granite_docling_split_page.png2.2 MB (2,321,944 B)87974bcba22af274df7859a5745ca870f62d3aefa1bd51ff1cea9daabc7f00522c7cc4b5905fa5cd3f67c40d0d707ee0686ce94b
assets/new_arxiv.png511.2 KB (523,477 B)fa9ee1b276da7ce7374804e1e392b5b60c501a5215e72aca956d9e796788eaa4b0debb9ae988ca7a9637ae3b6df1e6ce671d73d0
chat_template.jinja588 B (588 B)3b66e93d4b31ff6ba4fbea744407c43bad179212a4b0bf4348b014acca131da664d05b61e39d5dc8af980f1913846a57ccc6d289
config.json1.6 KB (1,641 B)6a652f5b56550a9291c6a6bb019ade3744a8c8bb4fbb5d2ad9549663e5740b36a5f45cb3d861d20d2e1c158af8569765f9864f30
generation_config.json169 B (169 B)172b1f940804da1f6d8b8c2a807e0f3163122211369256b622c73d709b248da31ba4332ef19c01dec6e311d8e4b671bc1321bc06
granite_docling.png2.1 MB (2,185,867 B)8c44a7ea1fbb460b76e7605b8f548a128c1523abf4d43939df541ab6958e989e7a6761a8db1ccb484dcb0c2749fedbb1357d2bb8
merges.txt895.2 KB (916,646 B)354558edcdbd64ca7abd407b8be3d5d09d39d781b6fe424e334903f7fb84d3a106d9730455f4744b9fe3c21ee136d97a00e72502
model.safetensors491.2 MB (515,093,104 B)15100791ff965bb31977ab14d9473018fee9cfc91cdad234deb1cde18ee6a586f849057f19851daf1fedce2e40aff791dbe46f61
preprocessor_config.json486 B (486 B)893236748032d4bf033823d6a4a0d62b78b6bc0e6cb6e36d6fcb88ca1502c4a26750715dc3e7dedddc9a8f17b27d8d167d1457e7
processor_config.json68 B (68 B)b3b1deadd0e6e18c2070fdb0c29074892ea58ffee7bff42da73ae9eec9042ef20e066e11f1ee20f025358ff79131e3c0fb549b46
special_tokens_map.json812 B (812 B)e8e87b5f11beb05b0c8205811fc65d27d895ccc045c073d82ba37a1fc69c8d6a772d17a8e4f78b64b63c0fce2c77d18a3259d18e
tokenizer.json6.8 MB (7,153,134 B)d3eef61ed03b4b5f9a18bbd7c330a0ef7e5de02e673ef3c60759806916ebf37c5d9b79f7ffd53a1419f1ebd75bfec8f177c2b1b3
tokenizer_config.json17.4 KB (17,774 B)1b20bc7d876f053bf0bc1ef0fb25ef24e1ef6a61261f9491897226589c131a4ac5993c495eec2104dace144f69c397682865a3a0
vocab.json1.5 MB (1,612,698 B)07fe068601babcefc22b1f9ce254ed0eede3d7fde2bad0ce74e6ddfece426ef99e18067f4a6c3d4e65bb6dd9cfd638450cca0142

Cite this release

Canonical URL
https://aiseedbank.org/models/ibm-granite_granite-docling-258M/
Slug
ibm-granite_granite-docling-258M
Infohash
83619e351ec35c3e037aa46b5ee68d1e4040fb05
License
apache-2.0
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: ibm-granite_granite-docling-258M.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositoryibm-granite/granite-docling-258M
Revision (pinned)982fe3b40f2fa73c365bdb1bcacf6c81b7184bfe
Fetched at2026-09-04T00:40:14Z
License at fetchapache-2.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-04T00:40:21Z

apache-2.0505.3 MB (529,849,482 bytes)transformerssafetensorsidefics3image-text-to-texttext-generationdocumentscodeformulachartocrlayouttabledocument-parsedoclinggraniteextractionmathconversationalendpoints_compatible1 language (en)paper: 2501.17887paper: 2503.11576paper: 2305.03393