-
-
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
[Bugfix] Eagle: change config name for fc bias #9580
[Bugfix] Eagle: change config name for fc bias #9580
Conversation
- Changes were made to load fc bias from config as part of this PR - vllm-project#8790 - `bias` param in config is also used to decide if attention has a bias or not in [LlamaDecoderLayer](https://github.com/vllm-project/vllm/blob/main/vllm/model_executor/models/llama.py#L215) - Due to the same param name, model is not loaded properly for cases which do not have attention in decoder layer but have a bias in eagle fc layer. - Have changed the param to `eagle_fc_bias` to avoid conflict.
👋 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:
🚀 |
@sohamparikh are you OK with this change? |
Yes, LGTM! |
Thanks, let's get this merged then. |
Signed-off-by: charlifu <charlifu@amd.com>
Signed-off-by: Alvant <alvasian@yandex.ru>
Signed-off-by: Erkin Sagiroglu <erkin@infra-aipipeline-1-at1-prox-prod-a.ipa.corp.telnyx.com>
Signed-off-by: Amit Garg <mitgarg17495@gmail.com>
Signed-off-by: qishuai <ferdinandzhong@gmail.com>
Signed-off-by: NickLucche <nlucches@redhat.com>
Signed-off-by: NickLucche <nlucches@redhat.com>
bias
param in config is also used to decide if attention has a bias or not in LlamaDecoderLayereagle_fc_bias
to avoid conflict.