zai-org / GLM-4.5V

huggingface.co
Total runs: 45.9K
24-hour runs: 0
7-day runs: -391
30-day runs: -71.2K
Model's Last Updated: October 25 2025
image-text-to-text

Introduction of GLM-4.5V

Model Details of GLM-4.5V

GLM-4.5V

👋 Join our Discord communities.
📖 Check out the paper .
📍 Access the GLM-V series models via API on the ZhipuAI Open Platform .

Introduction

Vision-language models (VLMs) have become a key cornerstone of intelligent systems. As real-world AI tasks grow increasingly complex, VLMs urgently need to enhance reasoning capabilities beyond basic multimodal perception — improving accuracy, comprehensiveness, and intelligence — to enable complex problem solving, long-context understanding, and multimodal agents.

Through our open-source work, we aim to explore the technological frontier together with the community while empowering more developers to create exciting and innovative applications.

GLM-4.5V is based on ZhipuAI’s next-generation flagship text foundation model GLM-4.5-Air (106B parameters, 12B active). It continues the technical approach of GLM-4.1V-Thinking, achieving SOTA performance among models of the same scale on 42 public vision-language benchmarks. It covers common tasks such as image, video, and document understanding, as well as GUI agent operations.

bench_45

Beyond benchmark performance, GLM-4.5V focuses on real-world usability. Through efficient hybrid training, it can handle diverse types of visual content, enabling full-spectrum vision reasoning, including:

  • Image reasoning (scene understanding, complex multi-image analysis, spatial recognition)
  • Video understanding (long video segmentation and event recognition)
  • GUI tasks (screen reading, icon recognition, desktop operation assistance)
  • Complex chart & long document parsing (research report analysis, information extraction)
  • Grounding (precise visual element localization)

The model also introduces a Thinking Mode switch, allowing users to balance between quick responses and deep reasoning. This switch works the same as in the GLM-4.5 language model.

Quick Start

Using with transformers:

pip install transformers-v4.55.0-GLM-4.5V-preview

and then run:

from transformers import AutoProcessor, Glm4vMoeForConditionalGeneration
import torch

MODEL_PATH = "zai-org/GLM-4.5V"
messages = [
    {
        "role": "user",
        "content": [
            {
                "type": "image",
                "url": "https://upload.wikimedia.org/wikipedia/commons/f/fa/Grayscale_8bits_palette_sample_image.png"
            },
            {
                "type": "text",
                "text": "describe this image"
            }
        ],
    }
]
processor = AutoProcessor.from_pretrained(MODEL_PATH)
model = Glm4vMoeForConditionalGeneration.from_pretrained(
    pretrained_model_name_or_path=MODEL_PATH,
    torch_dtype="auto",
    device_map="auto",
)
inputs = processor.apply_chat_template(
    messages,
    tokenize=True,
    add_generation_prompt=True,
    return_dict=True,
    return_tensors="pt"
).to(model.device)
inputs.pop("token_type_ids", None)
generated_ids = model.generate(**inputs, max_new_tokens=8192)
output_text = processor.decode(generated_ids[0][inputs["input_ids"].shape[1]:], skip_special_tokens=False)
print(output_text)

The special tokens <|begin_of_box|> and <|end_of_box|> in the response mark the answer’s bounding box in the image. The bounding box is given as four numbers — for example [x1, y1, x2, y2] , where (x1, y1) is the top-left corner and (x2, y2 )` is the bottom-right corner. The bracket style may vary ([], [[]], (), <>, etc.), but the meaning is the same: it encloses the coordinates of the box. These coordinates are relative values between 0 and 1000, normalized to the image size.

For more code information, please visit our GitHub .

Citation

If you use this model, please cite the following paper:

@misc{glmvteam2025glm41vthinkingversatilemultimodalreasoning,
      title={GLM-4.1V-Thinking: Towards Versatile Multimodal Reasoning with Scalable Reinforcement Learning},
      author={GLM-V Team and Wenyi Hong and Wenmeng Yu and Xiaotao Gu and Guo Wang and Guobing Gan and Haomiao Tang and Jiale Cheng and Ji Qi and Junhui Ji and Lihang Pan and Shuaiqi Duan and Weihan Wang and Yan Wang and Yean Cheng and Zehai He and Zhe Su and Zhen Yang and Ziyang Pan and Aohan Zeng and Baoxu Wang and Boyan Shi and Changyu Pang and Chenhui Zhang and Da Yin and Fan Yang and Guoqing Chen and Jiazheng Xu and Jiali Chen and Jing Chen and Jinhao Chen and Jinghao Lin and Jinjiang Wang and Junjie Chen and Leqi Lei and Letian Gong and Leyi Pan and Mingzhi Zhang and Qinkai Zheng and Sheng Yang and Shi Zhong and Shiyu Huang and Shuyuan Zhao and Siyan Xue and Shangqin Tu and Shengbiao Meng and Tianshu Zhang and Tianwei Luo and Tianxiang Hao and Wenkai Li and Wei Jia and Xin Lyu and Xuancheng Huang and Yanling Wang and Yadong Xue and Yanfeng Wang and Yifan An and Yifan Du and Yiming Shi and Yiheng Huang and Yilin Niu and Yuan Wang and Yuanchang Yue and Yuchen Li and Yutao Zhang and Yuxuan Zhang and Zhanxiao Du and Zhenyu Hou and Zhao Xue and Zhengxiao Du and Zihan Wang and Peng Zhang and Debing Liu and Bin Xu and Juanzi Li and Minlie Huang and Yuxiao Dong and Jie Tang},
      year={2025},
      eprint={2507.01006},
      archivePrefix={arXiv},
      primaryClass={cs.CV},
      url={https://arxiv.org/abs/2507.01006},
}

Runs of zai-org GLM-4.5V on huggingface.co

45.9K
Total runs
0
24-hour runs
226
3-day runs
-391
7-day runs
-71.2K
30-day runs

More Information About GLM-4.5V huggingface.co Model

More GLM-4.5V license Visit here:

https://choosealicense.com/licenses/mit

GLM-4.5V huggingface.co

GLM-4.5V huggingface.co is an AI model on huggingface.co that provides GLM-4.5V's model effect (), which can be used instantly with this zai-org GLM-4.5V model. huggingface.co supports a free trial of the GLM-4.5V model, and also provides paid use of the GLM-4.5V. Support call GLM-4.5V model through api, including Node.js, Python, http.

zai-org GLM-4.5V online free

GLM-4.5V huggingface.co is an online trial and call api platform, which integrates GLM-4.5V's modeling effects, including api services, and provides a free online trial of GLM-4.5V, you can try GLM-4.5V online for free by clicking the link below.

zai-org GLM-4.5V online free url in huggingface.co:

https://huggingface.co/zai-org/GLM-4.5V

GLM-4.5V install

GLM-4.5V is an open source model from GitHub that offers a free installation service, and any user can find GLM-4.5V on GitHub to install. At the same time, huggingface.co provides the effect of GLM-4.5V install, users can directly use GLM-4.5V installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

GLM-4.5V install url in huggingface.co:

https://huggingface.co/zai-org/GLM-4.5V

Url of GLM-4.5V

GLM-4.5V huggingface.co Url

Provider of GLM-4.5V huggingface.co

zai-org
ORGANIZATIONS

Other API from zai-org

huggingface.co

Total runs: 2.4M
Run Growth: 2.2M
Growth Rate: 100.00%
Updated:September 07 2026
huggingface.co

Total runs: 1.9M
Run Growth: -136.7K
Growth Rate: -7.29%
Updated:January 29 2026
huggingface.co

Total runs: 1.8M
Run Growth: -1.3M
Growth Rate: -71.57%
Updated:September 11 2026
huggingface.co

Total runs: 1.3M
Run Growth: -339.8K
Growth Rate: -25.19%
Updated:September 01 2026
huggingface.co

Total runs: 988.5K
Run Growth: -1.7M
Growth Rate: -177.76%
Updated:September 01 2026
huggingface.co

Total runs: 838.4K
Run Growth: 736.9K
Growth Rate: 98.82%
Updated:September 04 2026
huggingface.co

Total runs: 456.1K
Run Growth: -6.1K
Growth Rate: -1.34%
Updated:August 04 2024
huggingface.co

Total runs: 200.3K
Run Growth: -238.2K
Growth Rate: -104.95%
Updated:April 16 2026
huggingface.co

Total runs: 107.0K
Run Growth: -914.8K
Growth Rate: -696.12%
Updated:April 05 2026
huggingface.co

Total runs: 104.1K
Run Growth: -121.8K
Growth Rate: -118.84%
Updated:August 11 2025
huggingface.co

Total runs: 101.3K
Run Growth: 29.7K
Growth Rate: 29.53%
Updated:January 29 2026
huggingface.co

Total runs: 90.6K
Run Growth: 12.0K
Growth Rate: 13.31%
Updated:May 13 2026
huggingface.co

Total runs: 90.4K
Run Growth: -34.5K
Growth Rate: -39.22%
Updated:August 11 2025
huggingface.co

Total runs: 78.2K
Run Growth: -76.8K
Growth Rate: -101.51%
Updated:December 10 2025
huggingface.co

Total runs: 67.5K
Run Growth: -16.9K
Growth Rate: -25.06%
Updated:December 05 2024
huggingface.co

Total runs: 54.7K
Run Growth: -68.9K
Growth Rate: -124.27%
Updated:August 11 2026
huggingface.co

Total runs: 22.1K
Run Growth: 6.9K
Growth Rate: 30.99%
Updated:November 23 2024
huggingface.co

Total runs: 20.4K
Run Growth: -56.6K
Growth Rate: -277.32%
Updated:March 03 2025
huggingface.co

Total runs: 19.3K
Run Growth: -9.3K
Growth Rate: -48.01%
Updated:September 30 2025
huggingface.co

Total runs: 19.1K
Run Growth: -20.3K
Growth Rate: -103.22%
Updated:April 14 2025
huggingface.co

Total runs: 15.5K
Run Growth: 14.4K
Growth Rate: 96.76%
Updated:September 04 2026
huggingface.co

Total runs: 14.6K
Run Growth: -3.9K
Growth Rate: -26.89%
Updated:November 23 2024
huggingface.co

Total runs: 14.3K
Run Growth: -12.2K
Growth Rate: -85.22%
Updated:December 23 2025
huggingface.co

Total runs: 13.2K
Run Growth: 2.4K
Growth Rate: 17.87%
Updated:December 09 2025
huggingface.co

Total runs: 9.5K
Run Growth: -389
Growth Rate: -4.09%
Updated:January 15 2026
huggingface.co

Total runs: 8.1K
Run Growth: -1.9K
Growth Rate: -24.16%
Updated:October 16 2025
huggingface.co

Total runs: 7.0K
Run Growth: -1.5K
Growth Rate: -20.79%
Updated:March 11 2025
huggingface.co

Total runs: 6.9K
Run Growth: -7.1K
Growth Rate: -100.30%
Updated:April 22 2025
huggingface.co

Total runs: 4.4K
Run Growth: -4.1K
Growth Rate: -92.25%
Updated:December 09 2025
huggingface.co

Total runs: 3.7K
Run Growth: -5.4K
Growth Rate: -145.93%
Updated:January 27 2025
huggingface.co

Total runs: 3.1K
Run Growth: -998
Growth Rate: -31.29%
Updated:October 25 2025
huggingface.co

Total runs: 2.9K
Run Growth: 883
Growth Rate: 30.11%
Updated:August 04 2024
huggingface.co

Total runs: 1.6K
Run Growth: 660
Growth Rate: 35.97%
Updated:August 12 2025
huggingface.co

Total runs: 674
Run Growth: 279
Growth Rate: 41.21%
Updated:March 02 2023
huggingface.co

Total runs: 488
Run Growth: 266
Growth Rate: 59.64%
Updated:October 20 2023
huggingface.co

Total runs: 472
Run Growth: -278
Growth Rate: -59.78%
Updated:August 11 2025
huggingface.co

Total runs: 409
Run Growth: -1.0K
Growth Rate: -232.58%
Updated:January 02 2025
huggingface.co

Total runs: 393
Run Growth: 137
Growth Rate: 34.86%
Updated:December 10 2024
huggingface.co

Total runs: 356
Run Growth: -382
Growth Rate: -110.40%
Updated:October 25 2025
huggingface.co

Total runs: 291
Run Growth: 121
Growth Rate: 41.02%
Updated:March 02 2023
huggingface.co

Total runs: 275
Run Growth: 57
Growth Rate: 20.73%
Updated:November 20 2023
huggingface.co

Total runs: 262
Run Growth: 115
Growth Rate: 43.73%
Updated:October 20 2023
huggingface.co

Total runs: 253
Run Growth: 106
Growth Rate: 42.06%
Updated:October 20 2023