MCPcopy Index your code
hub / github.com/ddbourgin/numpy-ml / _init_params

Method _init_params

numpy_ml/neural_nets/layers/layers.py:4296–4304  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

4294 self.is_initialized = False
4295
4296 def _init_params(self):
4297 self.cell = LSTMCell(
4298 n_in=self.n_in,
4299 n_out=self.n_out,
4300 act_fn=self.act_fn,
4301 gate_fn=self.gate_fn,
4302 init=self.init,
4303 )
4304 self.is_initialized = True
4305
4306 @property
4307 def hyperparameters(self):

Callers 1

forwardMethod · 0.95

Calls 1

LSTMCellClass · 0.85

Tested by

no test coverage detected