Tuner base class.
BaseTuner(
oracle,
hypermodel,
directory = NULL,
project_name = NULL,
logger = NULL,
overwrite = FALSE
)
Instance of Oracle class.
Instance of HyperModel class (or callable that takes hyperparameters and returns a Model instance).
String. Path to the working directory (relative).
Name to use as prefix for files saved by this Tuner.
Optional. Instance of Logger class, used for streaming data to Cloud Service for monitoring.
Bool, default `FALSE`. If `FALSE`, reloads an existing project of the same name if one is found. Otherwise, overwrites the project.
base tuner object
May be subclassed to create new tuners, including for non-Keras models.