TensorBoardResultTracker
- class TensorBoardResultTracker(experiment_path=None, experiment_name=None)[source]
Bases:
ResultTrackerA tracker for TensorBoard.
Initialize result tracking via Tensorboard.
- Parameters:
experiment_path (
Union[None,str,Path]) – The experiment path. A custom path at which the tensorboard logs will be saved.experiment_name (
Optional[str]) – The name of the experiment, will be used as a sub directory name for the logging. If no default is given, the current time is used. If set, experiment_path is set, this argument has no effect.
Methods Summary
end_run([success])End a run.
log_metrics(metrics[, step, prefix])Log metrics to result store.
log_params(params[, prefix])Log parameters to result store.
Methods Documentation