CSVResultTracker
- class CSVResultTracker(path: None | str | Path = None, name: str | None = None, **kwargs)[source]
Bases:
FileResultTracker
Tracking results to a CSV file.
Also allows monitoring experiments, e.g. by
tail -f results.txt | grep "hits_at_10"
Initialize the tracker.
- Parameters:
Attributes Summary
The column names
The file extension for this writer (do not include dot)
Methods Summary
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.
Attributes Documentation
- HEADER = ('type', 'step', 'key', 'value')
The column names
Methods Documentation
- log_metrics(metrics: Mapping[str, float], step: int | None = None, prefix: str | None = None) None [source]
Log metrics to result store.