feat: add trackio.sweep() for local grid/random hyperparameter search - #664
Open
akkiyolo wants to merge 2 commits into
Open
feat: add trackio.sweep() for local grid/random hyperparameter search#664akkiyolo wants to merge 2 commits into
akkiyolo wants to merge 2 commits into
Conversation
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.
Partially addresses #657.
Adds the backend piece of hyperparameter sweep support:
trackio.sweep()runs a local grid or random search over a defined parameter space by
calling a user-supplied training function once per configuration.
trackio.sweep(sweep_config, function, count=None, sweep_id=None),APIshape roughly mirrors wandb's sweep config (
method,parameterswithvaluesormin/max) so existing configs mostly drop intrackio.init()called insidefunctionautomatically merges thesweep-selected hyperparameters into
configand groups the run under ashared sweep id (unless
groupis explicitly passed), reusing theexisting
config/groupfields ,no schema changesexamples/hyperparameter-sweep.pyandtests/unit/test_sweep.py(16 tests covering config generation edge cases and
init()integration)Not included in this PR (see
plans/issue-657-hyperparameter-sweeps-plan.mdfor a scoped breakdown and follow-up ideas):
Ran
pytest tests/unit/test_sweep.py(16 passed) and the full unit suitelocally with no new failures, plus
ruff check --fix --select I && ruff format.Commented on the issue beforehand to flag this scope: #657 (comment)