We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A more straightforward way to pass arguments to the training function, e.g.:
def train_func(batch_size=64, test_batch_size=1000, epochs=10, lr=1.0, gamma=0.7, dry_run=False, seed=1, log_interval=10, save_model=False): ... client.train( trainer=Trainer( func=train_func, func_args={ "batch_size": 64, "test_batch_size": 1000, "epochs": 10, "lr": 1.0, "gamma": 0.7, "dry_run": False, "seed": 1, "log_interval": 10, "save_model": False, }, ), )
It feels closer to what would be typically written if the training script would run standalone.
Give it a 👍 We prioritize the features with most 👍
The text was updated successfully, but these errors were encountered:
/remove-label lifecycle/needs-triage
Sorry, something went wrong.
/area sdk
Successfully merging a pull request may close this issue.
What you would like to be added?
A more straightforward way to pass arguments to the training function, e.g.:
Why is this needed?
It feels closer to what would be typically written if the training script would run standalone.
Love this feature?
Give it a 👍 We prioritize the features with most 👍
The text was updated successfully, but these errors were encountered: