MCPcopy Index your code
hub / github.com/MorvanZhou/tutorials / __init__

Method __init__

tensorflowTUT/tf22_scope/tf22_RNN_scope.py:23–30  ·  view source on GitHub ↗
(self, config)

Source from the content-addressed store, hash-verified

21class RNN(object):
22
23 def __init__(self, config):
24 self._batch_size = config.batch_size
25 self._time_steps = config.time_steps
26 self._input_size = config.input_size
27 self._output_size = config.output_size
28 self._cell_size = config.cell_size
29 self._lr = config.learning_rate
30 self._built_RNN()
31
32 def _built_RNN(self):
33 with tf.variable_scope('inputs'):

Callers

nothing calls this directly

Calls 1

_built_RNNMethod · 0.95

Tested by

no test coverage detected