In the “General imlpementation of forward propagation” lesson we are shown the W matrix defined in what seems to me an “inverted” way. What I mean by this:
For the first layer the w params are [1, 2], for the second - [-3, 4], and for the third - [5, -6]. I was very surprised to see the W matrix be defined as:
[[1, -3, 5],
[2, 4, -6]]
Isn’t it much more intuitive, both logically and code-wise, to be defined as:
[[1, 2],
[-3, 4],
[5, 6]]
And then you have - first row for first layer, second row for second layer etc.
Is there some significant reason that the data is represented in the other way where you have first column for first layer etc. or it’s just a personal preference?

