torchrecipes/vision/image_generation/module/gan.py [119:127]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def test_step(
        self, batch: Batch, batch_idx: int, *args: Any, **kwargs: Any
    ) -> TestOutput:
        return self._evaluation_step(batch)

    def validation_step(
        self, batch: Batch, batch_idx: int, *args: Any, **kwargs: Any
    ) -> TestOutput:
        return self._evaluation_step(batch)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



torchrecipes/vision/image_generation/module/infogan.py [279:287]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def test_step(
        self, batch: Batch, batch_idx: int, *args: Any, **kwargs: Any
    ) -> TestOutput:
        return self._evaluation_step(batch)

    def validation_step(
        self, batch: Batch, batch_idx: int, *args: Any, **kwargs: Any
    ) -> TestOutput:
        return self._evaluation_step(batch)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



