table
This module provides the TableWriter class, which saves predictions in a table format, such as CSV.
TableWriter
Bases: BaseWriter
Writer for saving predictions in a table format, such as CSV.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path
|
str | Path
|
CSV filepath. |
required |
writer
|
str | Callable
|
Writer function or name of a registered writer. |
required |
Source code in lighter/callbacks/writer/table.py
on_predict_epoch_end(trainer, pl_module)
Called at the end of the prediction epoch to save predictions to a CSV file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
trainer
|
Trainer
|
The trainer instance. |
required |
pl_module
|
System
|
The System instance. |
required |
Source code in lighter/callbacks/writer/table.py
write(tensor, identifier)
Writes the tensor as a table record using the specified writer.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tensor
|
Any
|
The tensor to record. Should not have a batch dimension. |
required |
identifier
|
int | str
|
Identifier for the record. |
required |