keras-tuner

A Hyperparameter Tuning Library for Keras

APACHE-2.0 License

Downloads
239.1K
Stars
2.8K
Committers
62

Bot releases are visible (Hide)

keras-tuner - Release v1.1.3RC0

Published by haifeng-jin over 2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/keras-team/keras-tuner/compare/1.1.2...1.1.3rc0

keras-tuner - Release v1.1.2

Published by haifeng-jin over 2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/keras-team/keras-tuner/compare/1.1.1...1.1.2

keras-tuner - Release v1.1.2RC0

Published by haifeng-jin over 2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/keras-team/keras-tuner/compare/1.1.1...1.1.2rc0

keras-tuner - Release v1.1.1

Published by haifeng-jin over 2 years ago

Highlights

  • Support passing a list of objectives as the objective argument.
  • Raise better error message when the return value of run_trial() or HyperModel.fit() are of wrong type.
  • Various bug fixes for BayesianOptimization tuner.
  • The trial IDs are changed from hex strings to integers counting from 0.

What's Changed

New Contributors

Full Changelog: https://github.com/keras-team/keras-tuner/compare/1.1.1rc0...1.1.1

keras-tuner - Release v1.1.1RC0

Published by haifeng-jin over 2 years ago

Highlights

  • Support passing a list of objectives as the objective argument.
  • Raise better error message when the return value of run_trial() or HyperModel.fit() are of wrong type.

What's Changed

New Contributors

Full Changelog: https://github.com/keras-team/keras-tuner/compare/1.1.0...1.1.1rc0

keras-tuner - 1.1.0

Published by haifeng-jin almost 3 years ago

What's Changed

  • Support HyperModel.fit() to tune the fit process.
  • Support Tuner.run_trial() to return a single float as the objective value to minimize.
  • Support Tuner.run_trial() to return a dictionary of {metric_name: value} or Keras history.
  • Allow not providing hypermodel to Tuner if override Tuner.run_trial().
  • Allow not providing objective to Tuner if HyperModel.fit() or Tuner.run_trial() return a single float.
  • Bug fixes

Breaking Changes

  • Change internal class MultiExecutionTuner to Tuner to replace all overridden methods.
  • Removed KerasHyperModel an internal class to wrap the user provided HyperModel.

New Contributors

Full Changelog: https://github.com/keras-team/keras-tuner/compare/1.0.4...1.1.0rc0

keras-tuner - 1.1.0rc0

Published by haifeng-jin almost 3 years ago

What's Changed

  • Support HyperModel.fit() to tune the fit process.
  • Support Tuner.run_trial() to return a single float as the objective value to minimize.
  • Support Tuner.run_trial() to return a dictionary of {metric_name: value} or Keras history.
  • Allow not providing hypermodel to Tuner if override Tuner.run_trial().
  • Allow not providing objective to Tuner if HyperModel.fit() or Tuner.run_trial() return a single float.
  • Bug fixes

Breaking Changes

  • Change internal class MultiExecutionTuner to Tuner to replace all overridden methods.
  • Removed KerasHyperModel an internal class to wrap the user provided HyperModel.

New Contributors

Full Changelog: https://github.com/keras-team/keras-tuner/compare/1.0.4...1.1.0rc0

keras-tuner - Release v1.0.4

Published by haifeng-jin about 3 years ago

  • Support DataFrame in SklearnTuner.
  • Support Tuner.search_space_summary() to print all the hyperparameters based on conditional_scopes.
  • Support TensorFlow 2.0 for backward compatibility.
  • Bug fixes and documentation improvements.
  • Raise a warning when using with TF 1.
  • Save TPUStrategy models with the TF format.
keras-tuner - Release v1.0.4rc1

Published by haifeng-jin about 3 years ago

  • Support DataFrame in SklearnTuner.
  • Support Tuner.search_space_summary() to print all the hyperparameters based on conditional_scopes.
  • Support TensorFlow 2.0 for backward compatibility.
  • Bug fixes and documentation improvements.
  • Raise a warning when using with TF 1.
keras-tuner - Release v1.0.4rc0

Published by haifeng-jin about 3 years ago

  • Support DataFrame in SklearnTuner.
  • Support Tuner.search_space_summary() to print all the hyperparameters based on conditional_scopes.
  • Support TensorFlow 2.0 for backward compatibility.
  • Bug fixes and documentation improvements.
keras-tuner - Release v1.0.3

Published by haifeng-jin over 3 years ago

  • Renamed import name of kerastuner to keras_tuner.
  • Renamed the Oracles to add the Oracle as suffix, e.g., RandomSearch oracle is renamed to RandomSearchOracle. (The RandomSearch tuner is still named RandomSearch.)
  • Renamed Tuner._populate_space to Tuner.populate_space.
  • Renamed Tuner._score_trail to Tuner.score_trial.
  • Renamed kt.tuners.Sklearn tuner to kt.SklearnTuner and put it at the root level of import.
  • Removed the CloudLogger feature, but the Logger class still works.
  • Tuning sklearn.pipeline.Pipeline.
  • Improved the docstrings.
keras-tuner - Keras Tuner 1.0.2

Published by haifeng-jin almost 4 years ago

  • Added Multi-worker DistributionStrategy support.
  • Added EfficientNet application.
  • Added application hypermodel with augmentation.
  • Format console output information.
  • Various bug fixes.
keras-tuner - Keras Tuner 1.0

Published by omalleyt12 almost 5 years ago

The first major release of Keras Tuner. This release includes improved algorithms and the ability to distribute tuning.