Unpack input data from the dataloader and perform necessary pre-processing steps. Parameters: input (dict): includes the data itself and its metadata information.
(self, input)
| 57 | |
| 58 | @abstractmethod |
| 59 | def set_input(self, input): |
| 60 | """Unpack input data from the dataloader and perform necessary pre-processing steps. |
| 61 | |
| 62 | Parameters: |
| 63 | input (dict): includes the data itself and its metadata information. |
| 64 | """ |
| 65 | pass |
| 66 | |
| 67 | @abstractmethod |
| 68 | def forward(self): |
no outgoing calls
no test coverage detected