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)
| 71 | |
| 72 | @abstractmethod |
| 73 | def set_input(self, input): |
| 74 | """Unpack input data from the dataloader and perform necessary pre-processing steps. |
| 75 | |
| 76 | Parameters: |
| 77 | input (dict): includes the data itself and its metadata information. |
| 78 | """ |
| 79 | pass |
| 80 | |
| 81 | @abstractmethod |
| 82 | def forward(self): |