Hide advanced sorting configuration options #11
Merged
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
Hides advanced sorting configuration options from
--helpoutput to simplify the CLI interface while keeping them functional for power users.Changes
Added
hide = trueto 8 sorting-related flags:--skip-sgd,--skip-groom,--skip-topo- Skip individual pipeline stages--sgd-iter-max,--sgd-eta-max- SGD iteration parameters--sgd-theta,--sgd-eps,--sgd-cooling-start- SGD tuning parametersThe main user-facing control
--no-sortremains visible.Rationale
Most users don't need to tune SGD parameters or selectively skip pipeline stages. Hiding these options:
Hidden flags remain fully functional if specified on the command line.
Testing
cargo test)--helpshows simplified output--skip-sgd)