-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
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
Doc improvement suggestion #195
Comments
P.S., I created a PR with comment edits that I'd find helpful when starting out with HH, as an example. Also, the |
Thanks for opening this issue! You make an excellent point, and I think it'd be a good idea to add a section in the README to clarify that search ranges are specified with I'll keep discussion on PR #196 in its comment section. Turning to your question on using HH to only do hyperparameter search, could you elaborate a bit? Are you trying to use the OptPros without relying on |
Ah thank you for catching the duplicated text in the "Feature Engineering" docs. It looks like Sphinx is copying the |
Regarding the naming, I'd say at least one of the two would prove quite helpful: (1) comments on examples (as in the PR); (2) importing from a submodule - i.e. e.g., To clarify my question - in essence, I already took care of every aspect of training, and wish to use HH only for hyperparameter search - as a sort-of 'drop-in' addon. In pseudo-code,
Is there anywhere I can 'insert' HH above to do hyperparameter search? |
Reading through the API essentials, the functionalities are fairly well documented - except for how HyperparemeterHunter (HH) optimizes hyperparameters. Reading enough, I figured out the basics, and I'm sure the entire API is well-figurable - but the idea is, the "hunting" aspect of HH isn't as 'emphasized' or promptly explained. The two questions I found answers the last to are ones I sought out from the beginning:
E.g., the Keras example imports
Real
- but there's no way to tell what "Real" does without reading the docs; a more intuitive name would beRealSearchRange
, orfrom search_range import Real
- else I figure it's a form of type casting. -- I intend on learning the API further, but currently my question is: I use my own training loop class, which takes care of the following:train_on_batch
predict
(using outputs to programmatically compute F1-score, loss, etc)Is it possible to set up HH to only do hyperparameter search? I don't mind its other functionalities, so long as they don't conflict with those of my own
The text was updated successfully, but these errors were encountered: