Skip to content

Commit

Permalink
Export BaseTuner (#946)
Browse files Browse the repository at this point in the history
  • Loading branch information
haifeng-jin authored Sep 25, 2023
1 parent b491a38 commit d8c2f90
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Release v1.4.1

## Bug fixes
* Could not do `from keras_tuner.engine import base_tuner`. It is now fixed.

# Release v1.4.0

## Breaking changes
Expand Down
2 changes: 2 additions & 0 deletions keras_tuner/engine/base_tuner.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
from keras_tuner import config as config_module
from keras_tuner import errors
from keras_tuner import utils
from keras_tuner.api_export import keras_tuner_export
from keras_tuner.distribute import utils as dist_utils
from keras_tuner.engine import hypermodel as hm_module
from keras_tuner.engine import oracle as oracle_module
Expand All @@ -31,6 +32,7 @@
from keras_tuner.engine import tuner_utils


@keras_tuner_export(["keras_tuner.engine.base_tuner.BaseTuner"])
class BaseTuner(stateful.Stateful):
"""Tuner base class.
Expand Down
2 changes: 1 addition & 1 deletion keras_tuner/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# limitations under the License.

# Unique source of truth for the version number.
__version__ = "1.4.0"
__version__ = "1.4.1"

0 comments on commit d8c2f90

Please sign in to comment.