(shape)
| 25 | return tf.Variable(initial) |
| 26 | |
| 27 | def bias_variable(shape): |
| 28 | initial = tf.constant(0.1, shape=shape) |
| 29 | return tf.Variable(initial) |
| 30 | |
| 31 | def conv2d(x, W): |
| 32 | # stride [1, x_movement, y_movement, 1] |
nothing calls this directly
no outgoing calls
no test coverage detected