Instructions to use zai-org/GLM-OCR with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use zai-org/GLM-OCR 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="zai-org/GLM-OCR") 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("zai-org/GLM-OCR") model = AutoModelForMultimodalLM.from_pretrained("zai-org/GLM-OCR", 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
- AMD Developer Cloud
Commit ·
2e85a62
1
Parent(s): 52cd0df
Tag as image-to-text (revert https://huggingface.co/zai-org/GLM-OCR/discussions/57) (#58)
Browse files- Tag as image-to-text (revert https://huggingface.co/zai-org/GLM-OCR/discussions/57) (008e2b18dcd519877eebbc9d523640b07b6ed1f1)
Co-authored-by: Lucain Pouget <Wauplin@users.noreply.huggingface.co>
README.md
CHANGED
|
@@ -9,7 +9,10 @@ language:
|
|
| 9 |
- de
|
| 10 |
- ja
|
| 11 |
- ko
|
|
|
|
| 12 |
library_name: transformers
|
|
|
|
|
|
|
| 13 |
---
|
| 14 |
|
| 15 |
# GLM-OCR
|
|
|
|
| 9 |
- de
|
| 10 |
- ja
|
| 11 |
- ko
|
| 12 |
+
pipeline_tag: image-to-text
|
| 13 |
library_name: transformers
|
| 14 |
+
tags:
|
| 15 |
+
- conversational
|
| 16 |
---
|
| 17 |
|
| 18 |
# GLM-OCR
|