-
-
Notifications
You must be signed in to change notification settings - Fork 20.5k
[Model] Remove InternLMForCausalLM registry alias #45128
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
Changes from all commits
5ef6434
82d6433
a349d5e
fb47e9c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -140,7 +140,6 @@ | |||||||||||||||||||||||
| "HCXVisionForCausalLM": ("hyperclovax_vision", "HCXVisionForCausalLM"), | ||||||||||||||||||||||||
| "HCXVisionV2ForCausalLM": ("hyperclovax_vision_v2", "HCXVisionV2ForCausalLM"), | ||||||||||||||||||||||||
| "HyperCLOVAXForCausalLM": ("hyperclovax", "HyperCLOVAXForCausalLM"), | ||||||||||||||||||||||||
| "InternLMForCausalLM": ("llama", "LlamaForCausalLM"), | ||||||||||||||||||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's update vllm/vllm/model_executor/models/registry.py Lines 712 to 722 in bd2d83f
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good catch. Done. |
||||||||||||||||||||||||
| "InternLM2ForCausalLM": ("internlm2", "InternLM2ForCausalLM"), | ||||||||||||||||||||||||
| "InternLM2VEForCausalLM": ("internlm2_ve", "InternLM2VEForCausalLM"), | ||||||||||||||||||||||||
| "InternLM3ForCausalLM": ("llama", "LlamaForCausalLM"), | ||||||||||||||||||||||||
|
|
@@ -715,6 +714,7 @@ | |||||||||||||||||||||||
| "ErnieForTokenClassification": "0.23.0", | ||||||||||||||||||||||||
| "QWenLMHeadModel": "0.23.0", | ||||||||||||||||||||||||
| "QwenVLForConditionalGeneration": "0.23.0", | ||||||||||||||||||||||||
| "InternLMForCausalLM": "0.23.0", | ||||||||||||||||||||||||
| # encoder-decoder models except whisper | ||||||||||||||||||||||||
| # have been removed for V0 deprecation. | ||||||||||||||||||||||||
| "DonutForConditionalGeneration": "0.10.2", | ||||||||||||||||||||||||
|
|
||||||||||||||||||||||||
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.
Please remove all comments mentioned InternLM.
PTAL: #34203
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.
Done. I looked around, at least a few other models such as telechat is still using bias, so I'm just removing the comments, not the check on the bias field from a few files. Let me know how you feel.
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.
Just clean up the comments. Keeping them might cause confusion.