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

Method _init_params

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

Source from the content-addressed store, hash-verified

4116 self.is_initialized = False
4117
4118 def _init_params(self):
4119 self.cell = RNNCell(
4120 n_in=self.n_in,
4121 n_out=self.n_out,
4122 act_fn=self.act_fn,
4123 init=self.init,
4124 optimizer=self.optimizer,
4125 )
4126 self.is_initialized = True
4127
4128 @property
4129 def hyperparameters(self):

Callers 1

forwardMethod · 0.95

Calls 1

RNNCellClass · 0.85

Tested by

no test coverage detected