WANDBResultTracker
- class WANDBResultTracker(project: str, offline: bool = False, **kwargs)[source]
Bases:
ResultTracker
A tracker for Weights and Biases.
Note that you have to perform wandb login beforehand.
Initialize result tracking via WANDB.
- Parameters:
- Raises:
ValueError – If the project name is given as None
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.
start_run
([run_name])Start a run with an optional name.
Methods Documentation
- end_run(success: bool = True) None [source]
End a run.
HAS to be called after the experiment is finished.
- Parameters:
success (bool) – Can be used to signal failed runs. May be ignored.
- Return type:
None
- log_metrics(metrics: Mapping[str, float], step: int | None = None, prefix: str | None = None) None [source]
Log metrics to result store.