Fix KeyError when loading ModelOpt FP8 checkpoint for Falcon-H1R-7B#19000
Fix KeyError when loading ModelOpt FP8 checkpoint for Falcon-H1R-7B#19000Edwardf0t1 wants to merge 2 commits intosgl-project:mainfrom
Conversation
…tensors Signed-off-by: Zhiyu Cheng <zhiyuc@nvidia.com>
Summary of ChangesHello @Edwardf0t1, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request addresses a critical issue preventing the successful loading of ModelOpt FP8 checkpoints for Falcon-H1R-7B models. By introducing a robust check for parameter existence, it ensures that the loading process can gracefully handle quantization scale tensors without encountering a KeyError, thereby improving the stability and compatibility of the model loading mechanism. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request addresses a KeyError encountered when loading ModelOpt FP8 checkpoints for Falcon-H1R-7B models. The issue arises from quantization scale tensors in the checkpoint that lack corresponding registered model parameters. The fix introduces a necessary guard to verify the existence of a tensor name within the model's parameter dictionary before access, effectively preventing the KeyError. This change is correct, minimal, and aligns with existing patterns in the codebase, making it a solid improvement.
Signed-off-by: Zhiyu Cheng <zhiyuc@nvidia.com>
[FalconH1] Fix KeyError when loading FP8 checkpoint with mamba scale tensors
The load_weights method in FalconH1ForCausalLM raised a KeyError when loading
a ModelOpt FP8 checkpoint that contains quantization scale tensors (e.g.
mamba.in_proj.input_scale) with no corresponding registered model parameter.
Motivation
Modifications
Accuracy Tests
Benchmarking and Profiling
Checklist
Review Process
/tag-run-ci-label,/rerun-failed-ci,/tag-and-rerun-ci