One training step. Return a dictionary that will be passed to logging.
(
self,
epoch: int,
bidx: int,
batch: T.Any,
)
| 1130 | @customer |
| 1131 | @abstractmethod |
| 1132 | def validation_step( |
| 1133 | self, |
| 1134 | epoch: int, |
| 1135 | bidx: int, |
| 1136 | batch: T.Any, |
| 1137 | ) -> T.Dict[str, T.Any]: |
| 1138 | """One training step. |
| 1139 | |
| 1140 | Return a dictionary that will be passed to logging. |
| 1141 | """ |
| 1142 | raise NotImplementedError |
| 1143 | |
| 1144 | @customer |
| 1145 | def visualize_validation_step( |
nothing calls this directly
no outgoing calls
no test coverage detected