deepseek-ai/Janus-Pro-7B 已完整同步
1. Introduction
Janus-Pro is a novel autoregressive framework that unifies multimodal understanding and generation. It addresses the limitations of previous approaches by decoupling visual encoding into separate pathways, while still utilizing a single, unified transformer architecture for processing. The decoupling not only alleviates the conflict between the visual encoder’s roles in understanding and generation, but also enhances the framework’s flexibility. Janus-Pro surpasses previous unified model and matches or exceeds the performance of task-specific models. The simplicity, high flexibility, and effectiveness of Janus-Pro make it a strong candidate for next-generation unified multimodal models.
2. Model Summary
Janus-Pro is a unified understanding and generation MLLM, which decouples visual encoding for multimodal understanding and generation. Janus-Pro is constructed based on the DeepSeek-LLM-1.5b-base/DeepSeek-LLM-7b-base.
For multimodal understanding, it uses the SigLIP-L as the vision encoder, which supports 384 x 384 image input. For image generation, Janus-Pro uses the tokenizer from here with a downsample rate of 16.
3. Quick Start
Please refer to Github Repository
4. License
This code repository is licensed under the MIT License. The use of Janus-Pro models is subject to DeepSeek Model License.
5. Citation
@article{chen2025janus,
title={Janus-Pro: Unified Multimodal Understanding and Generation with Data and Model Scaling},
author={Chen, Xiaokang and Wu, Zhiyu and Liu, Xingchao and Pan, Zizheng and Liu, Wen and Xie, Zhenda and Yu, Xingkai and Ruan, Chong},
journal={arXiv preprint arXiv:2501.17811},
year={2025}
}
6. Contact
If you have any questions, please raise an issue or contact us at service@deepseek.com.
13 个文件
浏览文件数据集版权信息
本数据集的许可证为 MIT License。如有违反相关条款,请联系 WEHUB,我们将及时处理。 查看许可证
通过 WeHub CLI 下载当前数据集快照。下列命令会固定为当前页面展示的数据版本(如果页面提供版本)。文件字节由本机直连存储下载,浏览器不会签发或保存下载链接。
前置要求
需要 Node.js 18 及以上,以及 npm(或 npx)。
1. 安装 CLI
npm install -g wehub-cli@latest
2. 下载此数据集
wehub datasets download ds_ext_2498_0ac7d0938f --revision 5c3eb3fb2a3b61094328465ba61fcd4272090d67 --output ./ds_ext_2498_0ac7d0938f
若中断或部分失败,在同一目录重新执行同一命令即可续传。默认会校验 SHA-256。
免全局安装
npx --yes wehub-cli@latest datasets download ds_ext_2498_0ac7d0938f --revision 5c3eb3fb2a3b61094328465ba61fcd4272090d67 --output ./ds_ext_2498_0ac7d0938f
高级选项
以下为 wehub datasets download 已支持的参数示例:
强制重新下载,不复用已校验的本地文件
wehub datasets download ds_ext_2498_0ac7d0938f --revision 5c3eb3fb2a3b61094328465ba61fcd4272090d67 --output ./ds_ext_2498_0ac7d0938f --overwrite
仅包含匹配路径
wehub datasets download ds_ext_2498_0ac7d0938f --revision 5c3eb3fb2a3b61094328465ba61fcd4272090d67 --output ./ds_ext_2498_0ac7d0938f --include "*.jsonl"
排除匹配路径
wehub datasets download ds_ext_2498_0ac7d0938f --revision 5c3eb3fb2a3b61094328465ba61fcd4272090d67 --output ./ds_ext_2498_0ac7d0938f --exclude "*.md"
提高并发下载数
wehub datasets download ds_ext_2498_0ac7d0938f --revision 5c3eb3fb2a3b61094328465ba61fcd4272090d67 --output ./ds_ext_2498_0ac7d0938f --jobs 8
完整帮助:wehub datasets download --help