MCPcopy Create free account
hub / github.com/rushter/MLAlgorithms / __init__

Method __init__

mla/neuralnet/layers/basic.py:153–157  ·  view source on GitHub ↗
(self, output_dim)

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected