ci: make find_local_hf_snapshot_dir more robust#11248
ci: make find_local_hf_snapshot_dir more robust#11248merrymercy merged 2 commits intosgl-project:mainfrom
Conversation
Summary of ChangesHello @mickqian, 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 significantly enhances the reliability of loading local Hugging Face model snapshots by introducing comprehensive validation steps. It ensures that only fully downloaded and intact models are utilized, preventing issues that could arise from incomplete files, broken references, or missing sharded components. This makes the model loading process more resilient to network interruptions and corrupted cache states. Highlights
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 enhances the robustness of find_local_hf_snapshot_dir by adding several checks for local Hugging Face model snapshots. It now verifies the absence of incomplete download files, ensures that weight files are not broken symbolic links, and checks for the completeness of sharded models. While these are valuable improvements, I've found a critical issue in the implementation of the sharded model check that needs to be addressed.
Motivation
Modifications
several modifications to
find_local_hf_snapshot_dir:Accuracy Tests
Benchmarking and Profiling
Checklist