fix(imspy-predictors): model download 404 + bump to 0.5.1#390
Merged
theGreatHerrLebert merged 1 commit intomainfrom Feb 13, 2026
Merged
fix(imspy-predictors): model download 404 + bump to 0.5.1#390theGreatHerrLebert merged 1 commit intomainfrom
theGreatHerrLebert merged 1 commit intomainfrom
Conversation
…back in hub.py The wheel excludes .pt files to keep it small, but the GitHub release was missing the task-specific model assets (rt-, ccs-, charge-, intensity-best_model.pt). This caused a 404 on first use for pip-installed users. - Upload the 4 missing assets to the models-v0.5.0 release - Add _find_bundled_model() fallback in hub.py for editable/source installs - Bump version to 0.5.1 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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.
Summary
rt-best_model.pt,ccs-best_model.pt,charge-best_model.pt,intensity-best_model.pt) to themodels-v0.5.0GitHub release_find_bundled_model()fallback inhub.pyfor editable/source installs where.ptfiles live next to the moduleContext
pip install imspy-predictorsusers hit an HTTP 404 on first model load because:.ptfiles (intentional, keeps wheel small)hub.pyreferenced filenames (rt-best_model.pt, etc.) that were never uploaded to the GitHub releaseAfter merge
Trigger
workflow_dispatchon Build and Publish Python Packages to publishimspy-predictors==0.5.1. All other packages use--skip-existingand will be silently skipped by PyPI.🤖 Generated with Claude Code