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
Hi!
Thank you for the library! Using it in par with pytorch-lightning to search network's hyperparameters. Right now the following line:
parser = HyperOptArgumentParser() parser.opt_range('--batch-size', type=int, default=1500, tunable=True, low=16, high=8192, nb_samples=10, log_base=10) hparams = parser.parse_args() for trial_hparams in hparams.trials(10): print(vars(trial_hparams))
will produce real values, though
parser = HyperOptArgumentParser() parser.opt_range('--batch-size', type=int, default=1500, tunable=True, low=16, high=8192, nb_samples=10) hparams = parser.parse_args() for trial_hparams in hparams.trials(10): print(vars(trial_hparams))
produces int values.
It would be nice to have a feature of sampling in log scale for integer values!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi!
Thank you for the library! Using it in par with pytorch-lightning to search network's hyperparameters.
Right now the following line:
will produce real values, though
produces int values.
It would be nice to have a feature of sampling in log scale for integer values!
The text was updated successfully, but these errors were encountered: