def weight_variable(shape, name): initial = tf.truncated_normal(shape, stddev=0.001) return tf.Variable(initial, name=name)