[GG] fix: pin same-repository MTP to the target revision - #118
Conversation
|
Warning Review limit reached
Next review available in: 56 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (4)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
Baked-image E2E validation: all TP8/DCP1 MTP3 standard variants and TP6/DCP3+DCP6 MTP3 variants loaded from the intended target checkpoint/revision and accepted draft tokens. The TP6 local MXFP4 cases reached mean accepted lengths 2.75-2.79 with no fallback probe of an unrelated repository revision. |
|
Superseded by the canonical dev/gilded-gnosis consolidation. The corresponding implementation is present in commit(s): a888406. Closing the old-base PR so future work targets the canonical GG branch. |
Summary
mainRoot cause
The GLM-5.2 launcher pins
lukealonso/GLM-5.2-NVFP4to a concrete target revision. Its MTP configuration names the same repository but does not repeat the revision. Target weights therefore load from the requested commit whileDeepSeekMTPprobes the Hugging Face cache at implicitmainto decide whether the checkpoint contains serialized NextN modules.On a cold cache this selected the wrong snapshot and then the fallback loader expected a different module layout. TP6/DCP6/MTP3 failed with a missing serialized weight such as:
For same-repository MTP, the draft is part of the target checkpoint and must be revision-atomic with it. This change performs that inheritance before draft config loading and passes the effective revision into
try_to_load_from_cache. A genuinely separate draft repository or an explicit draft revision is unchanged.Validation
ruff checkpassedruff format --checkpasseddev/gilded-gnosis