Conversation
fastnet-anemoi (a downstream consumer) pins torch>=2.8,<2.9 for flash-attn/torch-cluster CUDA wheel compatibility, which is incompatible with the >=2.9.1 pin here. Verified the full test suite still passes under torch==2.8.0.
radka-j
commented
Aug 12, 2026
| "jaxtyping>=0.3.3", | ||
| "numpy>=2.4.6", | ||
| "torch>=2.9.1", | ||
| "torch>=2.8", |
Member
Author
There was a problem hiding this comment.
This change is for compatibility with downstream project that uses this implementation. Revisit whether we are happy with this change before merging.
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.
Contributes to #29
This pull request introduces a streaming calibration interface to the conformal calibrators, allowing calibration data to be processed incrementally in small chunks rather than requiring the entire calibration tensor in memory at once. The
Ensembleconformal calibrator is extended with a member-streaming API, enabling ensemble members to be processed one at a time, including specialized handling for both quantile and standard deviation modes. Documentation is updated to describe the new streaming APIs and usage patterns.Streaming Calibration Interface:
reset,update, andaccumulate_scoremethods, which allow calibration data to be accumulated incrementally and concatenated only when needed. (src/autouq/calibrators/conformal/conformal.pysrc/autouq/calibrators/conformal/conformal.pyR41-R119)Ensemble Calibrator Streaming API:
Ensemblecalibrator, with methods such asreset_stream,update_stream,stream_score, andstream_predict, enabling ensemble members to be processed one at a time and supporting both quantile and std modes efficiently. (src/autouq/calibrators/conformal/ensemble.py[1] [2]src/autouq/calibrators/conformal/ensemble.py[1] [2]docs/ensemble.mddocs/ensemble.mdR62-R105)