(self, coords)
| 14 | self.embedding_dim = 2 |
| 15 | |
| 16 | def forward(self, coords): |
| 17 | # place lon lat coordinates in a -pi, pi range |
| 18 | coords = torch.deg2rad(coords) - torch.pi |
| 19 | return coords |
nothing calls this directly
no outgoing calls
no test coverage detected