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)
| 69 | |
| 70 | @abstractmethod |
| 71 | def set_input(self, input): |
| 72 | """Unpack input data from the dataloader and perform necessary pre-processing steps. |
| 73 | |
| 74 | Parameters: |
| 75 | input (dict): includes the data itself and its metadata information. |
| 76 | """ |
| 77 | pass |
| 78 | |
| 79 | @abstractmethod |
| 80 | def forward(self): |
nothing calls this directly
no outgoing calls
no test coverage detected