Remove pre-trained model weights from the repository#88
Merged
Conversation
cc729b4 to
99142dc
Compare
bmhowe23
approved these changes
Jul 9, 2026
The pre-trained model weights are distributed via Hugging Face: - https://huggingface.co/nvidia/Ising-Decoder-SurfaceCode-1-Fast - https://huggingface.co/nvidia/Ising-Decoder-SurfaceCode-1-Accurate Changes: - Delete models/*.pt and the .gitattributes Git LFS rule; ignore /models/. - Add .github/actions/fetch-models, a composite action that downloads the model assets of the ci-models-v1 release into models/. - Wire the action into the five jobs whose tests load the weights (unit-tests, unit-tests-coverage, gpu-tests, gpu-coverage, ler-regression); those jobs grant the token the push access needed to resolve the release. All workflow triggers are same-repo (push/merge_group/schedule/dispatch), never fork pull_request. - Drop lfs: true, git lfs install and git-lfs apt packages everywhere. - Point README and test error messages at Hugging Face; remove the unimplemented PREDECODER_MODEL_URL mention. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
99142dc to
4f54db6
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The pre-trained model weights are distributed via Hugging Face:
This PR removes the weight files from the repository:
models/*.ptand all Git LFS machinery (.gitattributesrule,lfs: truecheckouts,git lfs install,git-lfspackages);/models/is now gitignored and remains the conventional local directory for downloaded weights.unit-tests,unit-tests-coverage,gpu-tests,gpu-coverage,ler-regression) download them at run time via the new.github/actions/fetch-modelsaction.PREDECODER_MODEL_URLmention.🤖 Generated with Claude Code