File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1+ # Release v1.4.2
2+
3+ ## Bug fixes
4+ * Could not do ` from keras_tuner.engine import trial ` . It is now fixed.
5+
16# Release v1.4.1
27
38## Bug fixes
Original file line number Diff line number Diff line change 2020
2121from keras_tuner import protos
2222from keras_tuner import utils
23+ from keras_tuner .api_export import keras_tuner_export
2324from keras_tuner .engine import hyperparameters as hp_module
2425from keras_tuner .engine import metrics_tracking
2526from keras_tuner .engine import stateful
2627
2728
29+ @keras_tuner_export (["keras_tuner.engine.trial.TrialStatus" ])
2830class TrialStatus :
2931 # The Trial may start to run.
3032 RUNNING = "RUNNING"
@@ -83,6 +85,7 @@ def from_proto(proto):
8385 raise ValueError (f"Unknown status { proto } " )
8486
8587
88+ @keras_tuner_export (["keras_tuner.engine.trial.Trial" ])
8689class Trial (stateful .Stateful ):
8790 """The runs with the same set of hyperparameter values.
8891
Original file line number Diff line number Diff line change 1313# limitations under the License.
1414
1515# Unique source of truth for the version number.
16- __version__ = "1.4.1 "
16+ __version__ = "1.4.2 "
You can’t perform that action at this time.
0 commit comments