fix(deps): update dependency keras-tuner to v1.4.7 #190
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
==1.1.3
->==1.4.7
Release Notes
keras-team/keras-tuner (keras-tuner)
v1.4.7
Compare Source
Bug fixes
by default.
New Contributors
Full Changelog: keras-team/keras-tuner@v1.4.6...v1.4.7
v1.4.6
Compare Source
Bug fixes
New features
keras-core
tokeras
version 3 and above. Also supportkeras
version 2 for backward compatibility.New Contributors
Full Changelog: keras-team/keras-tuner@v1.4.5...v1.4.6
v1.4.5
Compare Source
Bug fixes
oracle.end_trial()
, when the chief have already ended. Now, it is fixed.tuner.__init__()
. However, it makes more sense to block when callingtuner.search()
. Now, it is fixed.from keras_tuner.engine.hypermodel import HyperModel
. It is now fixed.from keras_tuner.engine.hyperparameters import HyperParameters
. It is now fixed.from keras_tuner.engine.metrics_tracking import infer_metric_direction
. It is now fixed.from keras_tuner.engine.oracle import Objective
. It is now fixed.from keras_tuner.engine.oracle import Oracle
. It is now fixed.Full Changelog: keras-team/keras-tuner@v1.4.4...v1.4.5
v1.4.4
Compare Source
Bug fixes
from keras_tuner.engine.hyperparameters import serialize
. It is now fixed.from keras_tuner.engine.hyperparameters import deserialize
. It is now fixed.from keras_tuner.engine.tuner import maybe_distribute
. It is now fixed.Full Changelog: keras-team/keras-tuner@v1.4.3...v1.4.4
v1.4.3
Compare Source
Bug fixes
from keras_tuner.engine.tuner import Tuner
. It is now fixed.attributed called
get_build_config
. It is now fixed.Full Changelog: keras-team/keras-tuner@v1.4.2...v1.4.3
v1.4.2
Compare Source
Bug fixes
from keras_tuner.engine import trial
. It is now fixed.Full Changelog: keras-team/keras-tuner@v1.4.1...v1.4.2
v1.4.1
Compare Source
Bug fixes
from keras_tuner.engine import base_tuner
. It is now fixed.Full Changelog: keras-team/keras-tuner@v1.4.0...v1.4.1
v1.4.0
Compare Source
Breaking changes
keras_tuner.src.*
. For example, if you usekeras_tuner.some_private_api
, it will now bekeras_tuner.src.some_private_api
.New features
New Contributors
Full Changelog: keras-team/keras-tuner@v1.3.5...v1.4.0rc
v1.3.5
Compare Source
Breaking changes
to install TensorFlow either separately with KerasTuner or with
pip install keras_tuner[tensorflow]
. This change is because some people maywant to use KerasTuner with
tensorflow-cpu
instead oftensorflow
.Bug fixes
removed. Now, it support both protobuf 3 and 4.
Full Changelog: keras-team/keras-tuner@v1.3.4...v1.3.5
v1.3.4
Compare Source
Bug fixes
v1.3.3
Compare Source
protobuf<=3.20
. We want to install3.20.3
, so we changed it toprotobuf<=3.20.3
. It is now fixed.Full Changelog: keras-team/keras-tuner@v1.3.2...v1.3.3
v1.3.2
Compare Source
Bug fixes
protobuf
4.22.1 if install with TensorFlow 2.12, which is not compatible with KerasTuner. We limited theprotobuf
version to <=3.20, which is compatible with all TensorFlow versions so far.Full Changelog: keras-team/keras-tuner@v1.3.1...v1.3.2
v1.3.1
Compare Source
Bug fixes
Tuner.results_summary()
did not print error messages for failed trials and did not displayObjective
information correctly. It is now fixed.BayesianOptimization
would break when not specifying thenum_initial_points
and overriding.run_trial()
. It is now fixed.New Contributors
Full Changelog: keras-team/keras-tuner@v1.3.0...v1.3.1
v1.3.0
Compare Source
Breaking changes
Logger
andCloudLogger
and the related arguments inBaseTuner.__init__(logger=...)
.keras_tuner.oracles.BayesianOptimization
,keras_tuner.oracles.Hyperband
,keras_tuner.oracles.RandomSearch
, which were actuallyOracle
s instead ofTuner
s. Please usekeras_tuner.oracles.BayesianOptimizationOracle
,keras_tuner.oracles.HyperbandOracle
,keras_tuner.oracles.RandomSearchOracle
instead.keras_tuner.Sklearn
. Please usekeras_tuner.SklearnTuner
instead.New features
keras_tuner.oracles.GridSearchOracle
is now available as a standaloneOracle
to be used with custom tuners.Full Changelog: keras-team/keras-tuner@1.2.1...v1.3.0
v1.2.1
Compare Source
Bug fixes
overwrite=False
) would crash in 1.2.0. This is now fixed.New Contributors
Full Changelog: keras-team/keras-tuner@1.2.0...1.2.1
v1.2.0
Compare Source
Release v1.2.0
Breaking changes
Tuner
, the old use case of reporting results withOracle.update_trial()
inTuner.run_trial()
is deprecated. Please return the metrics inTuner.run_trial()
instead.Oracle
and overridedOracle.end_trial()
, you need to change the signature of the function fromOracle.end_trial(trial.trial_id, trial.status)
toOracle.end_trial(trial)
.step
argument inkeras_tuner.HyperParameters.Int()
is changed toNone
, which was1
before. No change in default behavior.sampling
argument inkeras_tuner.HyperParameters.Int()
is changed to"linear"
, which wasNone
before. No change in default behavior.
sampling
argument inkeras_tuner.HyperParameters.Float()
is changed to"linear"
, which wasNone
before. No change in default behavior.New features
keras_tuner.GridSearch
, which can exhaust all the possible hyperparameter combinations.Tuner
andOracle
initializers,max_retries_per_trial
andmax_consecutive_failed_trials
.Trial
as failed byraise keras_tuner.FailedTrialError("error message.")
inHyperModel.build()
,HyperModel.fit()
, or your model build function.Int
andFloat
type hyperparameters.@keras_tuner.synchronized
is added to decorate the methods inOracle
and its subclasses to synchronize the concurrent calls to ensure thread safety in parallel tuning.Bug fixes
KeyError
may occur if usinghp.conditional_scope()
, or theparent
argument for hyperparameters. This is now fixed.num_initial_points
of theBayesianOptimization
should defaults to3 * dimension
, but it defaults to 2. This is now fixed.HyperModel
compile arg. This is now fixed.Oracle
reloading when running in parallel. This is now fixed.New Contributors
Full Changelog: keras-team/keras-tuner@1.1.3...1.2.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.