(self, output_dim)
| 151 | """Apply regular Dense layer to every timestep.""" |
| 152 | |
| 153 | def __init__(self, output_dim): |
| 154 | self.output_dim = output_dim |
| 155 | self.n_timesteps = None |
| 156 | self.dense = None |
| 157 | self.input_dim = None |
| 158 | |
| 159 | def setup(self, X_shape): |
| 160 | self.dense = Dense(self.output_dim) |
nothing calls this directly
no outgoing calls
no test coverage detected