Skip to content
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

Add keras-tuner like interfaces for Hyperparam optimization #191

Open
AvinashBukkittu opened this issue Sep 5, 2019 · 0 comments
Open
Labels
enhancement New feature or request topic: executor Issue about the executor and related utilities

Comments

@AvinashBukkittu
Copy link
Collaborator

Keras-tuner (https://github.com/keras-team/keras-tuner) is a hyperparameter tuner for tf.keras. We like to take insights from this framework. In particular, we like to design the following interface in our framework

  1. Develop and expose a Hyperparam class like TPE, Hyperband etc to the user. The user supplies the objective_func while creating this object something like
tuner = TPE(
    objective_func,
    objective='val_accuracy',
    max_trials=5,
    executions_per_trial=3,)
  1. The user invokes hyperparameter search by calling search()
tuner.search()
  1. The user can get results through the following utility functions
models = tuner.get_best_models(num_models=2)

or

tuner.results_summary()

In addition, we may like to provide pre-made tunable applications like they do in keras-tuner.

@gpengzhi gpengzhi added enhancement New feature or request topic: executor Issue about the executor and related utilities labels Sep 6, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request topic: executor Issue about the executor and related utilities
Projects
None yet
Development

No branches or pull requests

2 participants