I have a general conceptual misunderstanding of how data inflows (and outflows).
I will pull examples from the last graded assignment to make it easier to illustrate.
If each row in the X input matrix is a category (eg, the number 1 β from final project), when does the model iterate over the second category (second row) of X.
Second: are w1..w25 in layer[1] apply to all categories after the model has been trained?
if my misundertanding is with matrix operations, do:
all 5000x400 values in X go to UNIT1 in layer[1] TO estimate w1, b and
AND all 5000x400 values in X go to UNIT2 in layer[1] to estimate w2, b2
AND all 5000x400 values in X go to UNIT2 in layer[1] to estimate w3, b3β¦
Thanks for helping me understand order of operation.
SB