(shape)
| 21 | return result |
| 22 | |
| 23 | def weight_variable(shape): |
| 24 | initial = tf.truncated_normal(shape, stddev=0.1) |
| 25 | return tf.Variable(initial) |
| 26 | |
| 27 | def bias_variable(shape): |
| 28 | initial = tf.constant(0.1, shape=shape) |
nothing calls this directly
no outgoing calls
no test coverage detected