I want to implement a Tensorflow version of a mulit-task network, based on this caffe implementation.
The networks is visualized as this tensorflow graph, but I get an
You declared the learning rate as a 1D Tesnor while it should be a scalar: learning_rate = tf.placeholder(tf.float64, shape=[], name="lr").
learning_rate = tf.placeholder(tf.float64, shape=[], name="lr")