(self)
| 114 | return optimizer |
| 115 | |
| 116 | def prepare_data(self): |
| 117 | MNIST(self.data_dir, train=True, download=True) |
| 118 | MNIST(self.data_dir, train=False, download=True) |
| 119 | |
| 120 | def setup(self, stage=None): |
| 121 | self.mnist_train = MNIST(self.data_dir, train=True, transform=self.transform) |
nothing calls this directly
no outgoing calls
no test coverage detected