Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
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
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]
Callers
1
full_code.py
File · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected