From here: https://github.com/llSourcell/How_to_use_Tensorflow_for_classification-LIVE/blob/master/demo.ipynb This code: ``` W = tf.Variable(tf.zeros([2, 2])) # Maintain a 2 x 2 float matrix for the weights that we'll keep updating ``` Won't GradientDescentOptimizer train all the weights the same if all they are initialized all the same?
From here:
https://github.com/llSourcell/How_to_use_Tensorflow_for_classification-LIVE/blob/master/demo.ipynb
This code:
Won't GradientDescentOptimizer train all the weights the same if all they are initialized all the same?