You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the aim is to check that the number of inputs is equal to the number of weights for every output. But in fact len(matrix) corresponds to the number of outputs not number of weights. To check for the number of weights, we should write something like:
In Chapter 3, in section Predicting with Multiple Inputs & Outputs code,
the aim is to check that the number of inputs is equal to the number of weights for every output. But in fact
len(matrix)
corresponds to the number of outputs not number of weights. To check for the number of weights, we should write something like:for example
it should be:
because we perform the weighted sum for each output, not for each input.
The text was updated successfully, but these errors were encountered: