AI SeedbankHelp preserve open and free AI for humanity's future

← All models

moonshotai_Kimi-VL-A3B-Thinking

moonshotai · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: · Leechers:

Model card

The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.


base_model:

  • moonshotai/Kimi-VL-A3B-Instruct license: mit pipeline_tag: image-text-to-text library_name: transformers new_version: moonshotai/Kimi-VL-A3B-Thinking-2506

[!Warning] This model has a new version: Kimi-VL-A3B-Thinking-2506. Please consider using the new 2506 version for better abilties on general visual understanding, reasoning, video and agent scenarios.

Please set a higher temperature for thinking model, especially when your problem requires relatively long thinking process. We have updated the following sample script for HF inference.

📄 Tech Report  |  📄 Github  |  💬 Chat Web

1. Introduction

We present Kimi-VL, an efficient open-source Mixture-of-Experts (MoE) vision-language model (VLM) that offers advanced multimodal reasoning, long-context understanding, and strong agent capabilities—all while activating only 2.8B parameters in its language decoder (Kimi-VL-A3B).

Kimi-VL demonstrates strong performance across challenging domains: as a general-purpose VLM, Kimi-VL excels in multi-turn agent interaction tasks (e.g.,OSWorld), achieving state-of-the-art results comparable to flagship models. Furthermore, it exhibits remarkable capabilities across diverse challenging vision language tasks, including college-level image and video comprehension, optical character recognition (OCR), mathematical reasoning, multi-image understanding, and etc.

In comparative evaluations, it effectively competes with cutting-edge efficient VLMs such as GPT-4o-mini, Qwen2.5-VL-7B, and Gemma-3-12B-IT, while surpassing GPT-4o in several specialized domains.

Kimi-VL also advances the pareto frontiers of multimodal models in processing long contexts and perceiving clearly: Equipped with a 128K extended context window, Kimi-VL can processes long and diverse inputs, achieving impressive scores of 64.5 on LongVideoBench, and 35.1 on MMLongBench-Doc; Its native-resolution vision encoder, MoonViT, further allows it to see and understand ultra-high-resolution visual inputs, achieving 83.2 on InfoVQA and 34.5 on ScreenSpot-Pro, while maintaining lower computational cost with common visual inputs and general tasks.

Building on this foundation, we introduce an advanced long-thinking variant: Kimi-VL-Thinking. Developed through long chain-of-thought (CoT) supervised fine-tuning (SFT) and reinforcement learning (RL), this model exhibits strong long-horizon reasoning capabilities. It achieves scores of 61.7 on MMMU, 36.8 on MathVision, and 71.3 on MathVista while maintaining the compact 2.8B activated LLM parameter footprint, setting a new standard for efficient yet capable multimodal thinking models.

More information can be found in our technical report: Kimi-VL Technical Report.

2. Architecture

The model adopts an MoE language model, a native-resolution visual encoder (MoonViT), and an MLP projector, as illustrated in the following image.

3. Model Variants

🤗 For general multimodal perception and understanding, OCR, long video and long document, video perception, and agent uses, we recommend Kimi-VL-A3B-Instruct for efficient inference; for advanced text and multimodal reasoning (e.g. math), please consider using Kimi-VL-A3B-Thinking.

Model #Total Params #Activated Params Context Length Download Link
Kimi-VL-A3B-Instruct 16B 3B 128K 🤗 Hugging Face
Kimi-VL-A3B-Thinking 16B 3B 128K 🤗 Hugging Face

[!Note] Recommended parameter settings:

  • For Thinking models, it is recommended to use Temperature = 0.8.
  • For Instruct models, it is recommended to use Temperature = 0.2.

4. Performance

With effective long-thinking abilitites, Kimi-VL-A3B-Thinking can match the performance of 30B/70B frontier open-source VLMs on MathVision benchmark:

Full comparison on MMMU, MathVision, and MathVista-mini:

Benchmark (Metric) GPT-4o GPT-4o-mini Qwen2.5-VL-72B Qwen2.5-VL-7B Gemma-3-27B Gemma-3-12B o1-1217 QVQ-72B Kimi-k1.5 Kimi-VL-Thinking-A3B
Thinking Model?
MathVision (full) (Pass@1) 30.4 - 38.1 25.1 35.5 32.1 - 35.9 38.6 36.8
MathVista (mini) (Pass@1) 63.8 56.7 74.8 68.2 62.3 56.4 71.0 71.4 74.9 71.3
MMMU (val) (Pass@1) 69.1 60.0 74.8 58.6 64.8 59.6 77.3 70.3 70.0 61.7

Inference with 🤗 Hugging Face Transformers

We introduce how to use our model at inference stage using transformers library. It is recommended to use python=3.10, torch>=2.1.0, and transformers=4.48.2 as the development environment.

from PIL import Image
from transformers import AutoModelForCausalLM, AutoProcessor

model_path = "moonshotai/Kimi-VL-A3B-Thinking"
model = AutoModelForCausalLM.from_pretrained(
    model_path,
    torch_dtype="auto",
    device_map="auto",
    trust_remote_code=True,
)
processor = AutoProcessor.from_pretrained(model_path, trust_remote_code=True)

image_paths = ["./figures/demo1.png", "./figures/demo2.png"]
images = [Image.open(path) for path in image_paths]
messages = [
    {
        "role": "user",
        "content": [
            {"type": "image", "image": image_path} for image_path in image_paths
        ] + [{"type": "text", "text": "Please infer step by step who this manuscript belongs to and what it records"}],
    },
]
text = processor.apply_chat_template(messages, add_generation_prompt=True, return_tensors="pt")
inputs = processor(images=images, text=text, return_tensors="pt", padding=True, truncation=True).to(model.device)
generated_ids = model.generate(**inputs, max_new_tokens=32768, temperature=0.8)
generated_ids_trimmed = [
    out_ids[len(in_ids) :] for in_ids, out_ids in zip(inputs.input_ids, generated_ids)
]
response = processor.batch_decode(
    generated_ids_trimmed, skip_special_tokens=True, clean_up_tokenization_spaces=False
)[0]
print(response)

Inference with VLLM

We have submitted a Merge Request #16387 to vLLM. You are welcome to deploy Kimi-VL using the branch corresponding to the vLLM MR until the MR is merged.

5. Citation

@misc{kimiteam2025kimivltechnicalreport,
      title={{Kimi-VL} Technical Report}, 
      author={Kimi Team and Angang Du and Bohong Yin and Bowei Xing and Bowen Qu and Bowen Wang and Cheng Chen and Chenlin Zhang and Chenzhuang Du and Chu Wei and Congcong Wang and Dehao Zhang and Dikang Du and Dongliang Wang and Enming Yuan and Enzhe Lu and Fang Li and Flood Sung and Guangda Wei and Guokun Lai and Han Zhu and Hao Ding and Hao Hu and Hao Yang and Hao Zhang and Haoning Wu and Haotian Yao and Haoyu Lu and Heng Wang and Hongcheng Gao and Huabin Zheng and Jiaming Li and Jianlin Su and Jianzhou Wang and Jiaqi Deng and Jiezhong Qiu and Jin Xie and Jinhong Wang and Jingyuan Liu and Junjie Yan and Kun Ouyang and Liang Chen and Lin Sui and Longhui Yu and Mengfan Dong and Mengnan Dong and Nuo Xu and Pengyu Cheng and Qizheng Gu and Runjie Zhou and Shaowei Liu and Sihan Cao and Tao Yu and Tianhui Song and Tongtong Bai and Wei Song and Weiran He and Weixiao Huang and Weixin Xu and Xiaokun Yuan and Xingcheng Yao and Xingzhe Wu and Xinxing Zu and Xinyu Zhou and Xinyuan Wang and Y. Charles and Yan Zhong and Yang Li and Yangyang Hu and Yanru Chen and Yejie Wang and Yibo Liu and Yibo Miao and Yidao Qin and Yimin Chen and Yiping Bao and Yiqin Wang and Yongsheng Kang and Yuanxin Liu and Yulun Du and Yuxin Wu and Yuzhi Wang and Yuzi Yan and Zaida Zhou and Zhaowei Li and Zhejun Jiang and Zheng Zhang and Zhilin Yang and Zhiqi Huang and Zihao Huang and Zijia Zhao and Ziwei Chen},
      year={2025},
      eprint={2504.07491},
      archivePrefix={arXiv},
      primaryClass={cs.CV},
      url={https://arxiv.org/abs/2504.07491}, 
}

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:ae96b7f82578a0312cbce4a0840f524a546e0500&dn=moonshotai_Kimi-VL-A3B-Thinking

Open magnet in torrent client · infohash ae96b7f82578a0312cbce4a0840f524a546e0500

Files & hashes

PathSizesha1sha256
README.md9.0 KB (9,248 B)2e35bec7ac7befe5038f61b30521f2fe5d8f0363354c2afe44ef831cf4311db4cf4d1a056bde978ce2b9cc57f5b47a880c601aa2
chat_template.jinja1.0 KB (1,032 B)019818d19d81c16c4dfe66ee89d937b6ca808843172c7450a66b9b3644538888ffa24d02047e535e9d1f911564460203fbf7e8e8
config.json2.0 KB (2,005 B)7acee6b033fa560af68b650afcc2457ac807f3d4af3810295de6b08232776b74110ed482fa0183f4aeaec586ff4f7593910951cb
configuration_kimi_vl.py12.8 KB (13,151 B)7542fddd8ae87c59cef2a91627bf2ce823d1c11ed30462b89993b9fef138db983d3884bbc39750effadf2efe67f404d28ee40e5b
figures/arch.png626.3 KB (641,358 B)d5ad53910d3474818ca2e9e1bb8081af4c03447a5195d9f99c08f7e135eedb19cf370d92c36b7b3387e9c1b7cad5e24990a0d6d0
figures/demo1.png217.8 KB (223,025 B)54b641f3e8c48387e6f9e95c6c9cf6307850c15b2761a3226f9cd4d894e822c6dc98a4a418a89c4f82e1cc00a57d960fb66fc51f
figures/demo2.png257.8 KB (264,009 B)6b07ae3ba9c617019f72a54c605ccc7a87d5bba3927541679993f7bd2bcd344c04d648bed64ba1a97a4473a16eab1647fa190e8d
figures/logo.png12.8 KB (13,101 B)87e6f690e521ac191323414d6cf6ab9b7c6b9e447870b48105beb49cdb29bb3090abb7bbca688bef862507904c23d9c472df221c
figures/thinking_perf.png221.9 KB (227,177 B)55092ece90bec8add3c9fd6eb72e04ccd1638800f77578d270a6d1d84320743dedbaf1dd4bc460aaccd2b14bcb6b2f1f91821206
generation_config.json149 B (149 B)73065bd17b83216d5fd6abf1fb101d1f7d3d1aed35ad1985a08535077a2c1dbe678ff7c41d84f3e671864a310403a2967c663d85
image_processing_kimi_vl.py4.6 KB (4,680 B)1ec0fea53681b1c6e7a91f5e14db0bf738460ddebb58551e088f3bb0027b1886ca5ff42776c485acec1a9aafe91553ff76926870
model-00001-of-00007.safetensors4.65 GB (4,994,390,288 B)0b781f7ca1d4f1ff60c747f18ed4441a0a58d6867755d72abf3eb6c18f033edca8fb3be247ae45409aa8604b8a3a61591f00ec3c
model-00002-of-00007.safetensors4.65 GB (4,995,061,424 B)6e5f2a18f5698fc41902a3407ce0c296fc6ca58a9828143cb1ab73d0e539ab0a16e5d6866f91b08c5a8c4ef72827e93df4669fee
model-00003-of-00007.safetensors4.65 GB (4,996,100,112 B)85e7c853b536e8814baf36dd6dc3427fe95d9d4fc7319693f8d967ee5362f32f3efefa2e2d3d87e55f284a20acb229d1fcc14c24
model-00004-of-00007.safetensors4.65 GB (4,996,100,320 B)45b6117cdfd0429015f7b843e1350a7150443aa31622da9d023cbcffef61e334977197339d6bbc0fb0ed2cb9375042a7ac816acd
model-00005-of-00007.safetensors4.65 GB (4,998,185,720 B)f340b904378f36db3d1e6bcbca9c8931330fd6232ecaa7da93f6455359188447655a7121ee69b6ef9d16a92214558df779db8159
model-00006-of-00007.safetensors4.65 GB (4,996,099,448 B)11a2905918865f61ed4ebd9206f217fcadea6c2e16b8f08724dae1b64f8f5fb787cbd291b8c2c0d50c4ec1f34f4cd9cce40ee0cb
model-00007-of-00007.safetensors2.65 GB (2,840,161,216 B)1f4e7ced2da81756a45dc2531d67af926e14d23a5dd3ac9086384d6f005a6f9cc61c4403a8ee921566786addd490d4edd3c1c6ed
model.safetensors.index.json574.4 KB (588,207 B)eec736471c95bc8b36217d039f12b029fff97438178ba3a15cb12f6ceac42aecfe665a8f041d47e948220d75b073088957efedd8
modeling_kimi_vl.py103.4 KB (105,842 B)4c6afdac1fe4a3e2323c24a1e7d443b88e625f98a3a7caeecdeec75bc56e6c857c16fb049c5d107957ae97765d75fd8038cf9c43
preprocessor_config.json401 B (401 B)ed5370a944f5052d5c879f3c2723fa1aaaa43cabd968a7d7f83f82c3b0e1061079dcdbefd6f2c75b7ee4240cce995afaeae1f622
processing_kimi_vl.py7.4 KB (7,537 B)70296b617e5f485e1de6665f0bade946f27abf5af8e64816baed0a92d85d0a987b587028ad55a0779f3ace8c5b68db705dc61561
tiktoken.model2.7 MB (2,795,286 B)eccfd7f565e85359f70872805f2c899571fd17d4b6c497a7469b33ced9c38afb1ad6e47f03f5e5dc05f15930799210ec050c5103
tokenization_moonshot.py10.7 KB (10,958 B)2dfe8f5a715a9f36bc81b1b227a1de23446b10130ae85e29c37689fefe41b8bfdb7aebd9a0152defedbf37fae0f8413000512029
tokenizer_config.json3.8 KB (3,857 B)655acb84881b7d76aad1e8ee0f81c292b05a9863d7861718cab22c7962e14b4693b4009dd526115cd392dc779069a8173be95703

Cite this release

Canonical URL
https://aiseedbank.org/models/moonshotai_Kimi-VL-A3B-Thinking/
Slug
moonshotai_Kimi-VL-A3B-Thinking
Infohash
ae96b7f82578a0312cbce4a0840f524a546e0500
License
mit
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: moonshotai_Kimi-VL-A3B-Thinking.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositorymoonshotai/Kimi-VL-A3B-Thinking
Revision (pinned)7d99e220af610d8624fcba22b2c076c7ed528f14
Fetched at2026-09-04T03:08:21Z
License at fetchmit
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-04T03:14:18Z

mit30.57 GB (32,821,009,551 bytes)transformerssafetensorskimi_vlfeature-extractionimage-text-to-textconversationalcustom_codepaper: 2504.07491