Hello-
The following is noted in the practice lab:
Note: The bias vector b
could be represented as a 1-D (n,) or 2-D (n,1) array. Tensorflow utilizes a 1-D representation and this lab will maintain that convention.
I checked this comment in python and found that the accurate 2-D representation of the b-vector should be (1, n), and not (n,1). We are adding a different bias to each neuron by record, and not adding the same bias to each neuron. Please confirm. The 1-D representation works accurately/correctly.
This should be clarified as both explanations do not work the same as written.
Thank you. M