Image-to-Text
Transformers
Safetensors
qwen3_5
image-text-to-text
vision-language
vlm
document-understanding
structured-extraction
information-extraction
ocr
document-to-markdown
markdown
rag
reasoning
multilingual
conversational
Eval Results
Instructions to use numind/NuExtract3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use numind/NuExtract3 with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "image-to-text" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("image-to-text", model="numind/NuExtract3") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("numind/NuExtract3") model = AutoModelForMultimodalLM.from_pretrained("numind/NuExtract3", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
Add ExtractBench evaluation results
#4
by boyang-runllama - opened
.eval_results/extractbench.yaml
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
- dataset:
|
| 2 |
+
id: llamaindex/ExtractBench
|
| 3 |
+
task_id: mean
|
| 4 |
+
value: 82.35
|
| 5 |
+
date: '2026-08-20'
|
| 6 |
+
source:
|
| 7 |
+
url: https://huggingface.co/datasets/llamaindex/ExtractBench
|
| 8 |
+
name: ExtractBench
|
| 9 |
+
user: boyang-runllama
|
| 10 |
+
notes: "Pipeline name: nuextract3_extract; served checkpoint numind/NuExtract3 on vLLM, one-shot template-guided extraction (the JSON Schema is converted to a NuExtract template)"
|
| 11 |
+
- dataset:
|
| 12 |
+
id: llamaindex/ExtractBench
|
| 13 |
+
task_id: short
|
| 14 |
+
value: 88.06
|
| 15 |
+
date: '2026-08-20'
|
| 16 |
+
source:
|
| 17 |
+
url: https://huggingface.co/datasets/llamaindex/ExtractBench
|
| 18 |
+
name: ExtractBench
|
| 19 |
+
user: boyang-runllama
|
| 20 |
+
notes: "Pipeline name: nuextract3_extract; served checkpoint numind/NuExtract3 on vLLM, one-shot template-guided extraction (the JSON Schema is converted to a NuExtract template)"
|
| 21 |
+
- dataset:
|
| 22 |
+
id: llamaindex/ExtractBench
|
| 23 |
+
task_id: medium
|
| 24 |
+
value: 76.76
|
| 25 |
+
date: '2026-08-20'
|
| 26 |
+
source:
|
| 27 |
+
url: https://huggingface.co/datasets/llamaindex/ExtractBench
|
| 28 |
+
name: ExtractBench
|
| 29 |
+
user: boyang-runllama
|
| 30 |
+
notes: "Pipeline name: nuextract3_extract; served checkpoint numind/NuExtract3 on vLLM, one-shot template-guided extraction (the JSON Schema is converted to a NuExtract template)"
|
| 31 |
+
- dataset:
|
| 32 |
+
id: llamaindex/ExtractBench
|
| 33 |
+
task_id: long
|
| 34 |
+
value: 37.72
|
| 35 |
+
date: '2026-08-20'
|
| 36 |
+
source:
|
| 37 |
+
url: https://huggingface.co/datasets/llamaindex/ExtractBench
|
| 38 |
+
name: ExtractBench
|
| 39 |
+
user: boyang-runllama
|
| 40 |
+
notes: "Pipeline name: nuextract3_extract; served checkpoint numind/NuExtract3 on vLLM, one-shot template-guided extraction (the JSON Schema is converted to a NuExtract template)"
|