(self, batch, batch_idx)
| 94 | self.save_hyperparameters() |
| 95 | |
| 96 | def common_step(self, batch, batch_idx): |
| 97 | lonlats, label = batch |
| 98 | return self.loss_fn(self, lonlats, label) |
| 99 | |
| 100 | def forward(self, lonlats): |
| 101 | embedding = self.positional_encoder(lonlats) |
no outgoing calls
no test coverage detected