Wire val_size through CLI and pipeline construction - #201
Draft
ch55secake with Copilot wants to merge 2 commits into
Draft
Wire val_size through CLI and pipeline construction#201ch55secake with Copilot wants to merge 2 commits into
val_size through CLI and pipeline construction#201ch55secake with Copilot wants to merge 2 commits into
Conversation
Agent-Logs-Url: https://github.com/ch55secake/hyperion/sessions/e7b0d513-ae2e-4ef9-92f8-cfa432d32add Co-authored-by: ch55secake <87881861+ch55secake@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Audit the Hyperion codebase for issues
Wire Apr 22, 2026
val_size through CLI and pipeline construction
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.
Description
Daily audit surfaced a split-configuration gap:
val_sizeexisted in config/pipeline logic but could not be set via CLI/Makefile, so runs silently defaulted to0.1. This PR makes validation split sizing externally configurable and consistently propagated.Changes in this pull request
CLI/config wiring
--val-sizeto argument parsing insrc/main.py.HyperionConfig(val_size=...).Pipeline propagation
config.val_sizeinto both:StackedModelTrainingPipeline(...)TimeSeriesStackedModelTrainingPipeline(...)Runtime entrypoint parity
VAL_SIZE ?= 0.1inMakefile.--val-size $(VAL_SIZE)in_RUN_ARGS.Docs alignment
VAL_SIZE/--val-size.Focused regression coverage
tests/test_main_parse_args.pyfor:val_sizeparsing--val-sizeoverride