Release 1.0.1#54
Merged
Merged
Conversation
Bump __version__ to 1.0.1 and add the CHANGELOG entry so the auto-publish pushes a new PyPI release. The published 1.0.0 loader looks for pytorch_model.bin, but the Hugging Face checkpoint now ships model.safetensors, so `load()` raises FileNotFoundError. The fixed loader (and the other post-1.0.0 fixes) have been on main since 1.0.0 was uploaded, but were never released because __version__ was unchanged.
weihaokong
requested review from
abhidas,
erzel,
rajatsen91,
siriuz42 and
tamannarayan
as code owners
July 4, 2026 23:23
…he 1.0.1 changelog
siriuz42
approved these changes
Jul 7, 2026
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.
Why
pip install tabfm[pytorch]is broken on the current PyPI release. Running the PyTorch examples fails with:The published
1.0.0loader hardcodespytorch_model.bin, but the Hugging Face checkpoint (google/tabfm-1.0.0-pytorch) now shipsmodel.safetensors, so the weights are never found. The fixed loader (PyTorchModelHubMixin, loads safetensors) has been onmainsince1.0.0was uploaded to PyPI (2026-06-30), but was never released because__version__stayed at1.0.0and the auto-publish only pushes on a version increase.PyPI versions are immutable, so the fix cannot ship as
1.0.0— it needs a new version.What
Bump
__version__to1.0.1and add the CHANGELOG entry. On merge, the auto-publish job ships1.0.1with the fixed loader and the other post-1.0.0 fixes (bf16 default, default chunking, HF Hub support for both backends, the multi-device / FLASH-attention / eager-transform / NotFittedError fixes, and the README regression-example fix).Package version and model/weights version are independent:
1.0.1is a patch release of the code that still loads the unchangedv1.0.0weights.