Using KerasTuner for Batchdataset in Tensorflow 2.0 #752
-
Hi Guys I am trying to add batch dataset combine kerastuner bayesianoptimization and tensorflow ? X is Y is
Value of Y : |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
X and Y will be directly passed to the model = build_model(keras_tuner.HyperParameters())
model.compile(...)
model.fit(x, y, ...) |
Beta Was this translation helpful? Give feedback.
X and Y will be directly passed to the
model.fit()
function of a Keras model.Please make sure it works without KerasTuner.
Something like: