Image-Text-to-Text
Transformers
GGUF
Safetensors
qwen3_5
vision-language
vlm
document-understanding
structured-extraction
information-extraction
ocr
document-to-markdown
markdown
rag
reasoning
multilingual
conversational
Instructions to use numind/NuExtract3-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use numind/NuExtract3-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="numind/NuExtract3-GGUF") 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 AutoModel model = AutoModel.from_pretrained("numind/NuExtract3-GGUF", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use numind/NuExtract3-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "numind/NuExtract3-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "numind/NuExtract3-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/numind/NuExtract3-GGUF
- SGLang
How to use numind/NuExtract3-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "numind/NuExtract3-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "numind/NuExtract3-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "numind/NuExtract3-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "numind/NuExtract3-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use numind/NuExtract3-GGUF with Docker Model Runner:
docker model run hf.co/numind/NuExtract3-GGUF
add new quantization + rename Q4 for huggingface
Browse files- .gitattributes +1 -0
- NuExtract3-Q2_K.gguf +3 -0
- NuExtract3-Q3_K_M.gguf +3 -0
- NuExtract3-Q4_K.gguf → NuExtract3-Q4_K_M.gguf +0 -0
- NuExtract3-Q5_K_M.gguf +3 -0
- NuExtract3-Q8_0.gguf +3 -0
.gitattributes
CHANGED
|
@@ -43,3 +43,4 @@ markdown.png filter=lfs diff=lfs merge=lfs -text
|
|
| 43 |
markdown_base.png filter=lfs diff=lfs merge=lfs -text
|
| 44 |
markdown_reasoning.png filter=lfs diff=lfs merge=lfs -text
|
| 45 |
ocr_benchmark_specialized.png filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 43 |
markdown_base.png filter=lfs diff=lfs merge=lfs -text
|
| 44 |
markdown_reasoning.png filter=lfs diff=lfs merge=lfs -text
|
| 45 |
ocr_benchmark_specialized.png filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
*.gguf filter=lfs diff=lfs merge=lfs -text
|
NuExtract3-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae8040a107da878eb86291d4ea2e7699daa64afee61413225e96277c8e63d996
|
| 3 |
+
size 1915469696
|
NuExtract3-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b92c95791863dd2cc97b28c50df34bd1dd50b7af6e6ebce007854eddd297aca0
|
| 3 |
+
size 2262062976
|
NuExtract3-Q4_K.gguf → NuExtract3-Q4_K_M.gguf
RENAMED
|
File without changes
|
NuExtract3-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b3e7032c34fc01f491b5a7da6bb6213c9b36dc71bf453b65a92e1b160fe7b5cb
|
| 3 |
+
size 3074985856
|
NuExtract3-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2b5be201fafceb721819685765cb75ed13b51e38cea61c0d111253484de41a19
|
| 3 |
+
size 4482402176
|