(self)
| 61 | return [real_out, imag_out] |
| 62 | |
| 63 | def flatten_parameters(self): |
| 64 | self.imag_lstm.flatten_parameters() |
| 65 | self.real_lstm.flatten_parameters() |
| 66 | |
| 67 | def complex_cat(inputs, axis): |
| 68 |
nothing calls this directly
no outgoing calls
no test coverage detected