Image-Text-to-Text
Transformers
GGUF
English
conversational
langdaohlb commited on
Commit
acfeb7d
·
verified ·
1 Parent(s): c8b7cca

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +64 -3
README.md CHANGED
@@ -1,3 +1,64 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model:
3
+ - Qwen/Qwen3-VL-2B-Instruct
4
+ - inclusionAI/ZwZ-2B
5
+ datasets:
6
+ - inclusionAI/ZwZ-RL-VQA
7
+ - inclusionAI/ZoomBench
8
+ language:
9
+ - en
10
+ license: apache-2.0
11
+ library_name: transformers
12
+ pipeline_tag: image-text-to-text
13
+ ---
14
+ **ZwZ-2B-GGUF**
15
+
16
+ This repository provides GGUF-format weights for [ZwZ-2B](https://huggingface.co/inclusionAI/ZwZ-2B), split into two components:
17
+
18
+ - Language model (LLM): FP16, Q8_0, Q4_K_M
19
+ - Vision encoder (mmproj): FP16, Q8_0, Q4_K_M
20
+
21
+ These files are compatible with llama.cpp, Ollama, and other GGUF-based tools, supporting inference on CPU, NVIDIA GPU (CUDA), Apple Silicon (Metal), Intel GPUs (SYCL), and more. You can mix precision levels for the language and vision components based on your hardware and performance needs, and even perform custom quantization starting from the FP16 weights.
22
+
23
+ Enjoy running this multimodal model on your personal device! 🚀
24
+
25
+
26
+ ## How to Use
27
+
28
+ To use these models with `llama.cpp`, please ensure you are using the **latest version**—either by [building from source](https://github.com/ggml-org/llama.cpp/blob/master/docs/build.md) or downloading the most recent [release](https://github.com/ggml-org/llama.cpp/releases/tag/b6907) according to the devices.
29
+
30
+ You can run inference via the command line or through a web-based chat interface.
31
+
32
+ ### CLI Inference (`llama-mtmd-cli`)
33
+
34
+ For example, to run ZwZ-2B with an Q8_0 vision encoder and Q8_0 quantized LLM:
35
+ ```bash
36
+ llama-mtmd-cli \
37
+ -m path/to/ZwZ-2B-Q8_0.gguf \
38
+ --mmproj mmproj-ZwZ-2B-Q8_0.gguf\
39
+ --image test.jpeg \
40
+ -p "What is the publisher name of the newspaper?" \
41
+ --temp 1.0 --top-k 20 --top-p 0.95 -n 1024
42
+ ```
43
+ ### Web Chat (using `llama-server`)
44
+ To serve ZwZ-2B via an OpenAI-compatible API with a web UI:
45
+ ```bash
46
+ llama-server \
47
+ -m path/to/ZwZ-2B-Q8_0.gguf \
48
+ --mmproj mmproj-ZwZ-2B-Q8_0.gguf
49
+ ```
50
+
51
+ ## Citation
52
+
53
+ ```bibtex
54
+ @article{wei2026zooming,
55
+ title={Zooming without Zooming: Region-to-Image Distillation for Fine-Grained Multimodal Perception},
56
+ author={Wei, Lai and He, Liangbo and Lan, Jun and Dong, Lingzhong and Cai, Yutong and Li, Siyuan and Zhu, Huijia and Wang, Weiqiang and Kong, Linghe and Wang, Yue and Zhang, Zhuosheng and Huang, Weiran},
57
+ journal={arXiv preprint arXiv:2602.11858},
58
+ year={2026}
59
+ }
60
+ ```
61
+
62
+ ## License
63
+
64
+ This model follows the license of Apache 2.0 License.