def bias_variable(shape, value, name): initial = tf.constant(value, shape = shape) b = tf.Variable(initial, name = name) return b