-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Model] Rename MiniCPMVQwen2 to MiniCPMV2.6 #7273
[Model] Rename MiniCPMVQwen2 to MiniCPMV2.6 #7273
Conversation
👋 Hi! Thank you for contributing to the vLLM project. Once the PR is approved and ready to go, please make sure to run full CI as it is required to merge (or just use auto-merge). To run full CI, you can do one of these:
🚀 |
Could you also update the docs to include this in the list of supported models? |
Sry for late. Thank you for your work! There're something still need attention. The example of |
Ok, is that right? # 2.0
stop_token_ids = [tokenizer.eos_id]
# 2.5
# stop_token_ids = [tokenizer.eos_id, tokenizer.eot_id]
#2.6
# stop_tokens = ['<|im_end|>', '<|endoftext|>']
# stop_token_ids = [tokenizer.convert_tokens_to_ids(i) for i in stop_tokens] |
Yes |
@DarkLight1337 I am not sure if I can add these in vl example |
Feel free to update the example! |
@HwwwwwwwH can you try running the example on your end? I'm outside right now. |
I'm running it now. |
emmmm, at first I used |
I got this error when running
|
It should be in the latest |
Yeah, the existing VLMs use the |
It's ok with the examples. |
Sorry for deleting my previous comments by mistake. I will read these codes, thank you. |
Signed-off-by: Alvant <alvasian@yandex.ru>
I have completed the following modification:
ping @ywang96 @DarkLight1337 @HwwwwwwwH