(shape, name='weights')
| 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'): |