base
This module provides the base class for defining custom writers in Lighter, allowing predictions to be saved in various formats.
BaseWriter
Bases: ABC
, Callback
Base class for defining custom Writer. It provides the structure to save predictions in various formats.
Subclasses should implement
1) self.writers
attribute to specify the supported formats and their corresponding writer functions.
2) self.write()
method to specify the saving strategy for a prediction.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path
|
str | Path
|
Path for saving predictions. |
required |
writer
|
str | Callable
|
Writer function or name of a registered writer. |
required |
Source code in lighter/callbacks/writer/base.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
|
writers
abstractmethod
property
Property to define the default writer functions.
on_predict_batch_end(trainer, pl_module, outputs, batch, batch_idx, dataloader_idx=0)
Callback method executed at the end of each prediction batch to write predictions with unique IDs.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
trainer
|
Trainer
|
The trainer instance. |
required |
pl_module
|
System
|
The System instance. |
required |
outputs
|
Any
|
The outputs from the prediction step. |
required |
batch
|
Any
|
The current batch. |
required |
batch_idx
|
int
|
The index of the batch. |
required |
dataloader_idx
|
int
|
The index of the dataloader. |
0
|
Source code in lighter/callbacks/writer/base.py
setup(trainer, pl_module, stage)
Sets up the writer, ensuring the path is ready for saving predictions.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
trainer
|
Trainer
|
The trainer instance. |
required |
pl_module
|
System
|
The System instance. |
required |
stage
|
str
|
The current stage of training. |
required |
Source code in lighter/callbacks/writer/base.py
write(tensor, identifier)
abstractmethod
Method to define how a tensor should be saved. The input tensor will be a single tensor without the batch dimension.
For each supported format, there should be a corresponding writer function registered in self.writers
A specific writer function can be retrieved using self.get_writer(self.format)
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tensor
|
Tensor
|
Tensor, without the batch dimension, to be saved. |
required |
identifier
|
int
|
Identifier for the tensor, can be used for naming files or adding table records. |
required |