pre-release v0.7.4: support annotations (feature/sample), stratified holdout & logic improvements#37
Conversation
…atified CV Feature Annotations: - Enable reading of annotation files. - Add prior weights to influence feature occurrence in initial GA population. - Implement user-customized feature penalties (weighted via param.general.user_feature_penalties_weight). - Add support for additional tags to enhance result visualization. Sample Annotations: - Enable reading of sample annotation files. - Implement cross-validation stratification based on both classes and annotation columns. CLI & visual improvements: - Add `--export-param` flag to export parameters from previous experiments. - Improve rendering of threshold CI. Fixes: - fix(fbm): resolve critical bug where the entire population was used instead of the FBM in CV mode. - style: correct terminology 'G-means' to 'G-mean'.
…lways enable niche filtering
- Add param.data.holdout_ratio and use it in run to perform an internal train/holdout split when no external Xtest/Ytest are provided. - Implement Data::train_test_split with class and optional annotation stratification, plus unit tests for size, class balance, annotations and reproducibility. - Extend GA and Beam Qin2014 E2E tests to cover internal holdout and to assert that external Xtest/Ytest override holdout_ratio while preserving identical train/test samples and labels.
eprifti
pushed a commit
that referenced
this pull request
Feb 24, 2026
pre-release v0.7.4: support annotations (feature/sample), stratified holdout & logic improvements
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.
Add support for feature and sample annotations (prior weights, penalties, stratified CV), implement native holdout train/test split with stratification, fix critical FBM population bug in CV mode, refactor Jaccard filtering using model groups, add
--export-paramCLI flag, improve threshold CI rendering, and add GPL-3.0 license.