(self, batch: Dict[str, Any], batch_idx: int)
| 11 | class Module(ABC): |
| 12 | @abstractmethod |
| 13 | def training_step(self, batch: Dict[str, Any], batch_idx: int) -> Dict: |
| 14 | raise NotImplementedError |
| 15 | |
| 16 | @abstractmethod |
| 17 | def validation_step(self, batch: Dict[str, Any], batch_idx: int) -> Dict: |
nothing calls this directly
no outgoing calls
no test coverage detected