Tensorboard eval
The tblogger module provides a simplified interface for logging to TensorBoard.
tblogger
#
The tblogger class provides a simplified interface for logging to tensorboard.
ConfigWriter
staticmethod
#
ConfigWriter(
*, write_summary_incumbent: bool = True
) -> SummaryWriter
Creates and returns a TensorBoard SummaryWriter configured to write logs to the appropriate directory for NePS.
PARAMETER | DESCRIPTION |
---|---|
write_summary_incumbent
|
Determines whether to write summaries for the incumbent configurations. Defaults to True.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
SummaryWriter
|
An instance of TensorBoard SummaryWriter pointing to the designated NePS directory.
TYPE:
|
Source code in neps\plot\tensorboard_eval.py
WriteIncumbent
staticmethod
#
Allows for writing the incumbent of the current search.
end_of_config
staticmethod
#
end_of_config(trial: Trial) -> None
Closes the writer.