Views
No views yet
| Model Name | Description | Download |
|---|---|---|
| JanusCoder-8B | 8B text model based on Qwen3-8B. | 🤗 Model |
| JanusCoder-14B | 14B text model based on Qwen3-14B. | 🤗 Model |
| 👉 JanusCoderV-7B | 7B multimodal model based on Qwen2.5-VL-7B. | 🤗 Model |
| JanusCoderV-8B | 8B multimodal model based on InternVL3.5-8B. | 🤗 Model |
| Model | JanusCoderV-7B | Qwen2.5VL-7B-Instruct | InternVL3-8B | InternVL3.5-8B | MiniCPM-V-2-6 | Llama3.2-11B-Vision-Instruct | GPT-4o |
|---|---|---|---|---|---|---|---|
| ChartMimic (Customized) | 72.77 | 58.69 | 60.04 | 59.55 | 48.18 | 39.63 | 67.42 |
| DesignBench (Gen) | 73.31 | 72.73 | 69.34 | 71.73 | 66.25 | 62.24 | 76.83 |
| DesignBench (Edit) | 8.79 | 6.85 | 7.76 | 8.63 | 4.56 | 6.61 | 9.23 |
| WebCode2M | 26.21 | 12.83 | 12.40 | 11.95 | 9.73 | 6.57 | 13.00 |
| InteractScience (Func.) | 17.73 | 8.40 | 8.93 | 11.47 | 0.13 | 6.67 | 27.20 |
| InteractScience (Visual) | 27.67 | 19.83 | 53.35 | 24.17 | 7.70 | 13.24 | 46.01 |
Please use transformers >= 4.55.0 to ensure the model works normally.
1from transformers import AutoProcessor, AutoModelForCausalLM
2import torch
3
4model_name = "internlm/JanusCoderV-7B"
5processor = AutoProcessor.from_pretrained(model_name, trust_remote_code=True)
6model = AutoModelForCausalLM.from_pretrained(model_name, device_map="auto", torch_dtype="auto", trust_remote_code=True)
7
8messages = [
9 {
10 "role": "user",
11 "content": [
12 {"type": "image", "url": "http://images.cocodataset.org/val2017/000000039769.jpg"},
13 {"type": "text", "text": "Please describe the image explicitly."},
14 ],
15 }
16]
17
18inputs = processor.apply_chat_template(messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt").to(model.device, dtype=torch.bfloat16)
19
20generate_ids = model.generate(**inputs, max_new_tokens=32768)
21decoded_output = processor.decode(generate_ids[0, inputs["input_ids"].shape[1] :], skip_special_tokens=True)
22print(decoded_output)1@article{sun2025januscoder,
2 title={JanusCoder: Towards a Foundational Visual-Programmatic Interface for Code Intelligence},
3 author={Sun, Qiushi and Gong, Jingyang and Liu, Yang and Chen, Qiaosheng and Li, Lei and Chen, Kai and Guo, Qipeng and Kao, Ben and Yuan, Fei},
4 journal={arXiv preprint arXiv:2510.23538},
5 year={2025}
6}
7
8@article{sun2024survey,
9 title={A survey of neural code intelligence: Paradigms, advances and beyond},
10 author={Sun, Qiushi and Chen, Zhirui and Xu, Fangzhi and Cheng, Kanzhi and Ma, Chang and Yin, Zhangyue and Wang, Jianing and Han, Chengcheng and Zhu, Renyu and Yuan, Shuai and others},
11 journal={arXiv preprint arXiv:2403.14734},
12 year={2024}
13}
14
15@article{chen2025interactscience,
16 title={InteractScience: Programmatic and Visually-Grounded Evaluation of Interactive Scientific Demonstration Code Generation},
17 author={Chen, Qiaosheng and Liu, Yang and Li, Lei and Chen, Kai and Guo, Qipeng and Cheng, Gong and Yuan, Fei},
18 journal={arXiv preprint arXiv:2510.09724},
19 year={2025}
20}
21
22@article{sun2025codeevo,
23 title={CodeEvo: Interaction-Driven Synthesis of Code-centric Data through Hybrid and Iterative Feedback},
24 author={Sun, Qiushi and Gong, Jinyang and Li, Lei and Guo, Qipeng and Yuan, Fei},
25 journal={arXiv preprint arXiv:2507.22080},
26 year={2025}
27}