czczup commited on
Commit
c936f55
β€’
1 Parent(s): 2e39173

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -9
README.md CHANGED
@@ -15,9 +15,9 @@ new_version: OpenGVLab/InternViT-6B-448px-V2_5
15
 
16
  # InternViT-6B-448px-V1-0
17
 
18
- [\[πŸ“‚ GitHub\]](https://github.com/OpenGVLab/InternVL) [\[πŸ†• Blog\]](https://internvl.github.io/blog/) [\[πŸ“œ InternVL 1.0\]](https://arxiv.org/abs/2312.14238) [\[πŸ“œ InternVL 1.5\]](https://arxiv.org/abs/2404.16821) [\[πŸ“œ Mini-InternVL\]](https://arxiv.org/abs/2410.16261)
19
 
20
- [\[πŸ—¨οΈ Chat Demo\]](https://internvl.opengvlab.com/) [\[πŸ€— HF Demo\]](https://huggingface.co/spaces/OpenGVLab/InternVL) [\[πŸš€ Quick Start\]](#quick-start) [\[πŸ“– 中文解读\]](https://zhuanlan.zhihu.com/p/706547971) [\[πŸ“– Documents\]](https://internvl.readthedocs.io/en/latest/)
21
 
22
  <div align="center">
23
  <img width="500" alt="image" src="https://cdn-uploads.huggingface.co/production/uploads/64006c09330a45b03605bba3/zJsd2hqd3EevgXo6fNgC-.png">
@@ -33,7 +33,10 @@ We release InternViT-6B-448px-V1-0, which is integrated into [InternVL-Chat-V1-1
33
  - **Pretrain Dataset:** LAION-en, LAION-COCO, COYO, CC12M, CC3M, SBU, Wukong, LAION-multi, OCR-related datasets.
34
  - **Note:** This model has 48 blocks, and we found that using the output after the fourth-to-last block worked best for MLLM. Therefore, when building a MLLM with this model, **please use the features from the fourth-to-last layer.**
35
 
36
- ## Model Usage (Image Embeddings)
 
 
 
37
 
38
  ```python
39
  import torch
@@ -61,22 +64,29 @@ outputs = model(pixel_values)
61
  If you find this project useful in your research, please consider citing:
62
 
63
  ```BibTeX
 
 
 
 
 
 
64
  @article{gao2024mini,
65
  title={Mini-internvl: A flexible-transfer pocket multimodal model with 5\% parameters and 90\% performance},
66
  author={Gao, Zhangwei and Chen, Zhe and Cui, Erfei and Ren, Yiming and Wang, Weiyun and Zhu, Jinguo and Tian, Hao and Ye, Shenglong and He, Junjun and Zhu, Xizhou and others},
67
  journal={arXiv preprint arXiv:2410.16261},
68
  year={2024}
69
  }
70
- @article{chen2023internvl,
71
- title={InternVL: Scaling up Vision Foundation Models and Aligning for Generic Visual-Linguistic Tasks},
72
- author={Chen, Zhe and Wu, Jiannan and Wang, Wenhai and Su, Weijie and Chen, Guo and Xing, Sen and Zhong, Muyan and Zhang, Qinglong and Zhu, Xizhou and Lu, Lewei and Li, Bin and Luo, Ping and Lu, Tong and Qiao, Yu and Dai, Jifeng},
73
- journal={arXiv preprint arXiv:2312.14238},
74
- year={2023}
75
- }
76
  @article{chen2024far,
77
  title={How Far Are We to GPT-4V? Closing the Gap to Commercial Multimodal Models with Open-Source Suites},
78
  author={Chen, Zhe and Wang, Weiyun and Tian, Hao and Ye, Shenglong and Gao, Zhangwei and Cui, Erfei and Tong, Wenwen and Hu, Kongzhi and Luo, Jiapeng and Ma, Zheng and others},
79
  journal={arXiv preprint arXiv:2404.16821},
80
  year={2024}
81
  }
 
 
 
 
 
 
 
82
  ```
 
15
 
16
  # InternViT-6B-448px-V1-0
17
 
18
+ [\[πŸ“‚ GitHub\]](https://github.com/OpenGVLab/InternVL) [\[πŸ“œ InternVL 1.0\]](https://huggingface.co/papers/2312.14238) [\[πŸ“œ InternVL 1.5\]](https://huggingface.co/papers/2404.16821) [\[πŸ“œ Mini-InternVL\]](https://arxiv.org/abs/2410.16261) [\[πŸ“œ InternVL 2.5\]](https://huggingface.co/papers/2412.05271)
19
 
20
+ [\[πŸ†• Blog\]](https://internvl.github.io/blog/) [\[πŸ—¨οΈ Chat Demo\]](https://internvl.opengvlab.com/) [\[πŸ€— HF Demo\]](https://huggingface.co/spaces/OpenGVLab/InternVL) [\[πŸš€ Quick Start\]](#quick-start) [\[πŸ“– Documents\]](https://internvl.readthedocs.io/en/latest/)
21
 
22
  <div align="center">
23
  <img width="500" alt="image" src="https://cdn-uploads.huggingface.co/production/uploads/64006c09330a45b03605bba3/zJsd2hqd3EevgXo6fNgC-.png">
 
33
  - **Pretrain Dataset:** LAION-en, LAION-COCO, COYO, CC12M, CC3M, SBU, Wukong, LAION-multi, OCR-related datasets.
34
  - **Note:** This model has 48 blocks, and we found that using the output after the fourth-to-last block worked best for MLLM. Therefore, when building a MLLM with this model, **please use the features from the fourth-to-last layer.**
35
 
36
+ ## Quick Start
37
+
38
+ > \[!Warning\]
39
+ > 🚨 Note: In our experience, the InternViT V2.5 series is better suited for building MLLMs than traditional computer vision tasks.
40
 
41
  ```python
42
  import torch
 
64
  If you find this project useful in your research, please consider citing:
65
 
66
  ```BibTeX
67
+ @article{chen2024expanding,
68
+ title={Expanding Performance Boundaries of Open-Source Multimodal Models with Model, Data, and Test-Time Scaling},
69
+ author={Chen, Zhe and Wang, Weiyun and Cao, Yue and Liu, Yangzhou and Gao, Zhangwei and Cui, Erfei and Zhu, Jinguo and Ye, Shenglong and Tian, Hao and Liu, Zhaoyang and others},
70
+ journal={arXiv preprint arXiv:2412.05271},
71
+ year={2024}
72
+ }
73
  @article{gao2024mini,
74
  title={Mini-internvl: A flexible-transfer pocket multimodal model with 5\% parameters and 90\% performance},
75
  author={Gao, Zhangwei and Chen, Zhe and Cui, Erfei and Ren, Yiming and Wang, Weiyun and Zhu, Jinguo and Tian, Hao and Ye, Shenglong and He, Junjun and Zhu, Xizhou and others},
76
  journal={arXiv preprint arXiv:2410.16261},
77
  year={2024}
78
  }
 
 
 
 
 
 
79
  @article{chen2024far,
80
  title={How Far Are We to GPT-4V? Closing the Gap to Commercial Multimodal Models with Open-Source Suites},
81
  author={Chen, Zhe and Wang, Weiyun and Tian, Hao and Ye, Shenglong and Gao, Zhangwei and Cui, Erfei and Tong, Wenwen and Hu, Kongzhi and Luo, Jiapeng and Ma, Zheng and others},
82
  journal={arXiv preprint arXiv:2404.16821},
83
  year={2024}
84
  }
85
+ @inproceedings{chen2024internvl,
86
+ title={Internvl: Scaling up vision foundation models and aligning for generic visual-linguistic tasks},
87
+ author={Chen, Zhe and Wu, Jiannan and Wang, Wenhai and Su, Weijie and Chen, Guo and Xing, Sen and Zhong, Muyan and Zhang, Qinglong and Zhu, Xizhou and Lu, Lewei and others},
88
+ booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
89
+ pages={24185--24198},
90
+ year={2024}
91
+ }
92
  ```