deep_learning/practical_pytorch/pytorch_feedforward_neuralnetwork/ #27
Replies: 1 comment
-
Here, the linear layer is expressed as y = Ax+b. But the pytorch official documentation shows y = xA(T)+b. So the dot product then addition, (100,784)(784,1)+(100,1) = (100,1), shouldn't it be (1,784)(784,100)+(1,100) = (1,100) ? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
deep_learning/practical_pytorch/pytorch_feedforward_neuralnetwork/
We try to make learning deep learning, deep bayesian learning, and deep reinforcement learning math and code easier. Open-source and used by thousands globally.
https://www.deeplearningwizard.com/deep_learning/practical_pytorch/pytorch_feedforward_neuralnetwork/
Beta Was this translation helpful? Give feedback.
All reactions