(self)
| 61 | self.output_dim = input_dim + input_dim * 2 * degree |
| 62 | |
| 63 | def __repr__(self): |
| 64 | return f"FreqEncoder: input_dim={self.input_dim} degree={self.degree} output_dim={self.output_dim}" |
| 65 | |
| 66 | def forward(self, inputs, **kwargs): |
| 67 | # inputs: [..., input_dim] |
nothing calls this directly
no outgoing calls
no test coverage detected