expand coverage of gpt2 models#271
Merged
zhuohan123 merged 1 commit intovllm-project:mainfrom Jun 27, 2023
Merged
Conversation
zhuohan123
approved these changes
Jun 27, 2023
Member
zhuohan123
left a comment
There was a problem hiding this comment.
LGTM! Thanks for your contribution!
michaelfeil
pushed a commit
to michaelfeil/vllm
that referenced
this pull request
Jul 1, 2023
hongxiayang
pushed a commit
to hongxiayang/vllm
that referenced
this pull request
Feb 13, 2024
yukavio
pushed a commit
to yukavio/vllm
that referenced
this pull request
Jul 3, 2024
includes the NOTICE file alongside the license files in the nm-vllm*.dist-info directory
jikunshang
pushed a commit
to jikunshang/vllm
that referenced
this pull request
Sep 24, 2024
Attn MetaData was hard coded to bfloat16, leading to a runtime error for float32 model instantiation.
mht-sharma
pushed a commit
to mht-sharma/vllm
that referenced
this pull request
Dec 9, 2024
use_beam_search is no longer in sampling params
wuhuikx
pushed a commit
to wuhuikx/vllm
that referenced
this pull request
Mar 27, 2025
### What this PR does / why we need it? Re-arch on tutorials, move singe npu / multi npu / multi node to index. - Unifiy docker run cmd - Use dropdown to hide build from source installation doc - Re-arch tutorials to include Qwen/QwQ/DeepSeek - Make QwQ doc works ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? CI test Signed-off-by: Yikun Jiang <yikunkero@gmail.com>
amy-why-3459
pushed a commit
to amy-why-3459/vllm
that referenced
this pull request
Sep 15, 2025
### What this PR does / why we need it? Re-arch on tutorials, move singe npu / multi npu / multi node to index. - Unifiy docker run cmd - Use dropdown to hide build from source installation doc - Re-arch tutorials to include Qwen/QwQ/DeepSeek - Make QwQ doc works ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? CI test Signed-off-by: Yikun Jiang <yikunkero@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Thanks for the amazing project!
I noticed some gpt2 models have different naming of weights from https://huggingface.co/gpt2
For example, DialoGPT-small and mGPT are saved in a way that
transformer.prefix is already prepended and also masked_bias is saved.Therefore, it causes errors such as
KeyError: 'transformer.transformer.wte.weight'.This PR fixes these errors in model loading by checking
transformer.prefix and ignoring masked_bias.