Logs training loss, training measures, and validation measures as events.
To view them, use TensorBoard with tensorflow::tensorboard() (requires tensorflow) or the CLI.
Super class
CallbackSet -> CallbackSetTB
Methods
Inherited methods
CallbackSetTB$new()
Creates a new instance of this R6 class.
Usage
CallbackSetTB$new(path, log_train_loss)Arguments
path(
character(1))
The path to a folder where the events are logged. Point TensorBoard to this folder to view them. The folder must be new, empty, or one that this callback already logged into, so that a resumed run can continue the log of the run it continues.log_train_loss(
logical(1))
Whether we log the training loss.
CallbackSetTB$on_epoch_end()
Logs the training loss, training measures, and validation measures as TensorBoard events.