deepseek-ai / deepseek-vl2

huggingface.co
Total runs: 5.0K
24-hour runs: 0
7-day runs: -120
30-day runs: 2.3K
Model's Last Updated: December 18 2024
image-text-to-text

Introduction of deepseek-vl2

Model Details of deepseek-vl2

1. Introduction

Introducing DeepSeek-VL2, an advanced series of large Mixture-of-Experts (MoE) Vision-Language Models that significantly improves upon its predecessor, DeepSeek-VL. DeepSeek-VL2 demonstrates superior capabilities across various tasks, including but not limited to visual question answering, optical character recognition, document/table/chart understanding, and visual grounding. Our model series is composed of three variants: DeepSeek-VL2-Tiny, DeepSeek-VL2-Small and DeepSeek-VL2, with 1.0B, 2.8B and 4.5B activated parameters respectively. DeepSeek-VL2 achieves competitive or state-of-the-art performance with similar or fewer activated parameters compared to existing open-source dense and MoE-based models.

DeepSeek-VL2: Mixture-of-Experts Vision-Language Models for Advanced Multimodal Understanding

Github Repository

Zhiyu Wu*, Xiaokang Chen*, Zizheng Pan*, Xingchao Liu*, Wen Liu**, Damai Dai, Huazuo Gao, Yiyang Ma, Chengyue Wu, Bingxuan Wang, Zhenda Xie, Yu Wu, Kai Hu, Jiawei Wang, Yaofeng Sun, Yukun Li, Yishi Piao, Kang Guan, Aixin Liu, Xin Xie, Yuxiang You, Kai Dong, Xingkai Yu, Haowei Zhang, Liang Zhao, Yisong Wang, Chong Ruan*** (* Equal Contribution, ** Project Lead, *** Corresponding author)

2. Model Summary

DeepSeek-VL2 is built on DeepSeekMoE-27B.

3. Quick Start
Installation

On the basis of Python >= 3.8 environment, install the necessary dependencies by running the following command:

pip install -e .
Simple Inference Example
import torch
from transformers import AutoModelForCausalLM

from deepseek_vl.models import DeepseekVLV2Processor, DeepseekVLV2ForCausalLM
from deepseek_vl.utils.io import load_pil_images


# specify the path to the model
model_path = "deepseek-ai/deepseek-vl2-small"
vl_chat_processor: DeepseekVLV2Processor = DeepseekVLV2Processor.from_pretrained(model_path)
tokenizer = vl_chat_processor.tokenizer

vl_gpt: DeepseekVLV2ForCausalLM = AutoModelForCausalLM.from_pretrained(model_path, trust_remote_code=True)
vl_gpt = vl_gpt.to(torch.bfloat16).cuda().eval()

## single image conversation example
conversation = [
    {
        "role": "<|User|>",
        "content": "<image>\n<|ref|>The giraffe at the back.<|/ref|>.",
        "images": ["./images/visual_grounding.jpeg"],
    },
    {"role": "<|Assistant|>", "content": ""},
]

## multiple images (or in-context learning) conversation example
# conversation = [
#     {
#         "role": "User",
#         "content": "<image_placeholder>A dog wearing nothing in the foreground, "
#                    "<image_placeholder>a dog wearing a santa hat, "
#                    "<image_placeholder>a dog wearing a wizard outfit, and "
#                    "<image_placeholder>what's the dog wearing?",
#         "images": [
#             "images/dog_a.png",
#             "images/dog_b.png",
#             "images/dog_c.png",
#             "images/dog_d.png",
#         ],
#     },
#     {"role": "Assistant", "content": ""}
# ]

# load images and prepare for inputs
pil_images = load_pil_images(conversation)
prepare_inputs = vl_chat_processor(
    conversations=conversation,
    images=pil_images,
    force_batchify=True,
    system_prompt=""
).to(vl_gpt.device)

# run image encoder to get the image embeddings
inputs_embeds = vl_gpt.prepare_inputs_embeds(**prepare_inputs)

# run the model to get the response
outputs = vl_gpt.language_model.generate(
    inputs_embeds=inputs_embeds,
    attention_mask=prepare_inputs.attention_mask,
    pad_token_id=tokenizer.eos_token_id,
    bos_token_id=tokenizer.bos_token_id,
    eos_token_id=tokenizer.eos_token_id,
    max_new_tokens=512,
    do_sample=False,
    use_cache=True
)

answer = tokenizer.decode(outputs[0].cpu().tolist(), skip_special_tokens=True)
print(f"{prepare_inputs['sft_format'][0]}", answer)
Gradio Demo (TODO)
4. License

This code repository is licensed under MIT License . The use of DeepSeek-VL2 models is subject to DeepSeek Model License . DeepSeek-VL2 series supports commercial use.

5. Citation
@misc{wu2024deepseekvl2,
      title={DeepSeek-VL2: Mixture-of-Experts Vision-Language Models for Advanced Multimodal Understanding},
      author={Wu, Zhiyu and Chen, Xiaokang and Pan, Zizheng and Liu, Xingchao and Liu, Wen and Dai, Damai and Gao, Huazuo and Ma, Yiyang and Wu, Chengyue and Wang, Bingxuan and Xie, Zhenda and Wu, Yu and Hu, Kai and Wang, Jiawei and Sun, Yaofeng and Li, Yukun and Piao, Yishi and Guan, Kang and Liu, Aixin and Xie, Xin and You, Yuxiang and Dong, Kai and Yu, Xingkai and Zhang, Haowei and Zhao, Liang and Wang, Yisong and Ruan, Chong},
      year={2024},
}
6. Contact

If you have any questions, please raise an issue or contact us at [email protected] .

Runs of deepseek-ai deepseek-vl2 on huggingface.co

5.0K
Total runs
0
24-hour runs
54
3-day runs
-120
7-day runs
2.3K
30-day runs

More Information About deepseek-vl2 huggingface.co Model

More deepseek-vl2 license Visit here:

https://choosealicense.com/licenses/deepseek

deepseek-vl2 huggingface.co

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

deepseek-ai deepseek-vl2 online free

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

deepseek-ai deepseek-vl2 online free url in huggingface.co:

https://huggingface.co/deepseek-ai/deepseek-vl2

deepseek-vl2 install

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

deepseek-vl2 install url in huggingface.co:

https://huggingface.co/deepseek-ai/deepseek-vl2

Url of deepseek-vl2

Provider of deepseek-vl2 huggingface.co

deepseek-ai
ORGANIZATIONS

Other API from deepseek-ai