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

Method _weight_variable

tensorflowTUT/tf22_scope/tf22_RNN_scope.py:88–90  ·  view source on GitHub ↗
(shape, name='weights')

Source from the content-addressed store, hash-verified

86
87 @staticmethod
88 def _weight_variable(shape, name='weights'):
89 initializer = tf.random_normal_initializer(mean=0., stddev=0.5, )
90 return tf.get_variable(shape=shape, initializer=initializer, name=name)
91
92 @staticmethod
93 def _bias_variable(shape, name='biases'):

Callers 1

_built_RNNMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected