Image-Text-to-Text
Transformers
Safetensors
glm_ocr
pruning
bitsandbytes
int8
conversational
8-bit precision
Instructions to use ManiKumarAdapala/glm-ocr-pruned-8bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ManiKumarAdapala/glm-ocr-pruned-8bit with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="ManiKumarAdapala/glm-ocr-pruned-8bit") 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 AutoTokenizer, AutoModelForMultimodalLM tokenizer = AutoTokenizer.from_pretrained("ManiKumarAdapala/glm-ocr-pruned-8bit") model = AutoModelForMultimodalLM.from_pretrained("ManiKumarAdapala/glm-ocr-pruned-8bit", 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 = tokenizer.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(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use ManiKumarAdapala/glm-ocr-pruned-8bit with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ManiKumarAdapala/glm-ocr-pruned-8bit" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ManiKumarAdapala/glm-ocr-pruned-8bit", "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/ManiKumarAdapala/glm-ocr-pruned-8bit
- SGLang
How to use ManiKumarAdapala/glm-ocr-pruned-8bit 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 "ManiKumarAdapala/glm-ocr-pruned-8bit" \ --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": "ManiKumarAdapala/glm-ocr-pruned-8bit", "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 "ManiKumarAdapala/glm-ocr-pruned-8bit" \ --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": "ManiKumarAdapala/glm-ocr-pruned-8bit", "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 ManiKumarAdapala/glm-ocr-pruned-8bit with Docker Model Runner:
docker model run hf.co/ManiKumarAdapala/glm-ocr-pruned-8bit
updated readme.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,117 @@
|
|
| 1 |
-
---
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: GLM-OCR Pruned 8-bit Safetensors (1.3GB)
|
| 3 |
+
emoji: π
|
| 4 |
+
license: mit
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
- fr
|
| 8 |
+
- es
|
| 9 |
+
- ru
|
| 10 |
+
- de
|
| 11 |
+
- ja
|
| 12 |
+
- ko
|
| 13 |
+
- zh
|
| 14 |
+
base_model:
|
| 15 |
+
- zai-org/GLM-OCR
|
| 16 |
+
pipeline_tag: image-text-to-text
|
| 17 |
+
library_name: transformers
|
| 18 |
+
tags:
|
| 19 |
+
- pruning
|
| 20 |
+
- bitsandbytes
|
| 21 |
+
- int8
|
| 22 |
+
---
|
| 23 |
+
|
| 24 |
+
# GLM-OCR-Pruned-8bit
|
| 25 |
+
  
|
| 26 |
+
|
| 27 |
+
**Production GLM-OCR: 52% smaller (2.7GBβ1.3GB), fully 8-bit, OCR optimized**
|
| 28 |
+
|
| 29 |
+
## π Performance
|
| 30 |
+
| Metric | Original | **Optimized** |
|
| 31 |
+
|--------|----------|---------------|
|
| 32 |
+
| **Parameters** | 1.1B | **1.1B (4.3% pruned)** |
|
| 33 |
+
| **Disk** | 2.7GB | **1.3GB** (52%β) |
|
| 34 |
+
| **GPU** | 3.5GB+ | **2.3GB** |
|
| 35 |
+
| **Speed** | 1x | **2-3x** |
|
| 36 |
+
|
| 37 |
+
## π Quickstart
|
| 38 |
+
```python
|
| 39 |
+
from transformers import BitsAndBytesConfig, AutoProcessor, AutoModelForImageTextToText
|
| 40 |
+
import torch
|
| 41 |
+
|
| 42 |
+
MODEL_PATH = "ManiKumarAdapala/glm-ocr-pruned-8bit"
|
| 43 |
+
|
| 44 |
+
messages = [
|
| 45 |
+
{
|
| 46 |
+
"role": "user",
|
| 47 |
+
"content": [
|
| 48 |
+
{
|
| 49 |
+
"type": "image",
|
| 50 |
+
"url": "Image.jpeg"
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"type": "text",
|
| 54 |
+
"text": "Text Recognition:"
|
| 55 |
+
}
|
| 56 |
+
],
|
| 57 |
+
}
|
| 58 |
+
]
|
| 59 |
+
|
| 60 |
+
quant_config = BitsAndBytesConfig(load_in_8bit=True)
|
| 61 |
+
|
| 62 |
+
processor = AutoProcessor.from_pretrained(MODEL_PATH)
|
| 63 |
+
model = AutoModelForImageTextToText.from_pretrained(
|
| 64 |
+
pretrained_model_name_or_path=MODEL_PATH,
|
| 65 |
+
quantization_config=quant_config,
|
| 66 |
+
device_map="auto",
|
| 67 |
+
)
|
| 68 |
+
|
| 69 |
+
inputs = processor.apply_chat_template(
|
| 70 |
+
messages,
|
| 71 |
+
tokenize=True,
|
| 72 |
+
add_generation_prompt=True,
|
| 73 |
+
return_dict=True,
|
| 74 |
+
return_tensors="pt"
|
| 75 |
+
).to(model.device)
|
| 76 |
+
|
| 77 |
+
inputs.pop("token_type_ids", None)
|
| 78 |
+
|
| 79 |
+
generated_ids = model.generate(**inputs, max_new_tokens=8192)
|
| 80 |
+
|
| 81 |
+
output_text = processor.decode(generated_ids[0][inputs["input_ids"].shape[1]:], skip_special_tokens=False)
|
| 82 |
+
|
| 83 |
+
print(output_text)
|
| 84 |
+
```
|
| 85 |
+
|
| 86 |
+
## π Optimizations Applied
|
| 87 |
+
|
| 88 |
+
- β
Selective Pruning: q_proj, v_proj, fc2, vision_tower (52%)
|
| 89 |
+
- β
BitsAndBytes 8-bit: Linear8bitLt (vision+text decoder)
|
| 90 |
+
- β
Protected: lm_head, early vision, final decoder layers
|
| 91 |
+
|
| 92 |
+
|
| 93 |
+
## π Citation
|
| 94 |
+
|
| 95 |
+
```bibtex
|
| 96 |
+
@misc{GLM-OCR-Pruned8bit-2026,
|
| 97 |
+
author = {Mani, {ADAPALA MANI KUMAR} and {ZAI-org}},
|
| 98 |
+
title = {GLM-OCR Pruned & 8-bit quantized (1.1B params, 4.3% sparsity)},
|
| 99 |
+
year = {2026},
|
| 100 |
+
month = {march},
|
| 101 |
+
publisher = {Hugging Face},
|
| 102 |
+
url = {https://huggingface.co/adapala-manikumar/glm-ocr-pruned-8bit},
|
| 103 |
+
note = {1.3GB disk, 2.3GB GPU, OCR optimized, MIT}
|
| 104 |
+
}
|
| 105 |
+
```
|
| 106 |
+
|
| 107 |
+
<font size="2">
|
| 108 |
+
|
| 109 |
+
**Acknowledgements (from ZAI-org/GLM-OCR)**
|
| 110 |
+
|
| 111 |
+
This project is inspired by the excellent work of:
|
| 112 |
+
- [PP-DocLayout-V3](https://huggingface.co/PaddlePaddle/PP-DocLayoutV3) (Apache 2.0)
|
| 113 |
+
- [PaddleOCR](https://github.com/PaddlePaddle/PaddleOCR)
|
| 114 |
+
- [MinerU](https://github.com/opendatalab/MinerU)
|
| 115 |
+
|
| 116 |
+
**License Notice**: The GLM-OCR model is MIT licensed. When using the complete OCR pipeline, users should comply with Apache License 2.0 for PP-DocLayoutV3 components.
|
| 117 |
+
</font>
|