-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
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
[Bugfix] Fix tensor parallel for qwen2 classification model #10297
Conversation
Signed-off-by: Isotr0py <2037008807@qq.com>
👋 Hi! Thank you for contributing to the vLLM project. Once the PR is approved and ready to go, your PR reviewer(s) can run CI to test the changes comprehensively before merging. To run CI, PR reviewers can do one of these:
🚀 |
Signed-off-by: Isotr0py <2037008807@qq.com>
Let me see if this PR can fix #10218 (comment) as well... |
This change doesn't fix it. |
Signed-off-by: Isotr0py <2037008807@qq.com>
quant_config=quant_config) | ||
quant_config=quant_config, | ||
input_is_parallel=False, | ||
bias=False, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just found that qwen2_cls
doesn't have bias in score layer. 😅
The test should pass with this change. (The debugging was terrible 😅)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah it passes now. Let's fix the timeout in another PR.
…ject#10297) Signed-off-by: Isotr0py <2037008807@qq.com> Signed-off-by: OmerD <omer@run.ai>
…ject#10297) Signed-off-by: Isotr0py <2037008807@qq.com> Signed-off-by: Sumit Dubey <sumit.dubey2@ibm.com>
Qwen2ForSequenceClassification