Converts a PIL Image to an input for the model
(self, x)
| 72 | |
| 73 | @abstractmethod |
| 74 | def transform(self, x): |
| 75 | """Converts a PIL Image to an input for the model""" |
| 76 | pass |
| 77 | |
| 78 | def forward(self, *args, **kwargs): |
| 79 | return self.model(*args, **kwargs) |
no outgoing calls
no test coverage detected