MCPcopy
hub / github.com/MorvanZhou/tutorials / bias_variable

Function bias_variable

tensorflowTUT/tf18_CNN3/full_code.py:27–29  ·  view source on GitHub ↗
(shape)

Source from the content-addressed store, hash-verified

25 return tf.Variable(initial)
26
27def bias_variable(shape):
28 initial = tf.constant(0.1, shape=shape)
29 return tf.Variable(initial)
30
31def conv2d(x, W):
32 # stride [1, x_movement, y_movement, 1]

Callers 1

full_code.pyFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected