how to change the network module in batch_eth_mnist #629
Unanswered
MayWeHappy
asked this question in
Q&A
Replies: 1 comment
-
The network |
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
-
I encountered an error when running the
network.run
function after replacing the network inbatch_eth_mnist
withDiehlAndCook2015v2
. The error occurred in thelearning.py
file at line 399, specifically in the_connection_update
method:self.connection.w -= self.reduction(torch.bmm(source_s, target_x), dim=0)
.The error message states that the output shape, [784, 100], does not match the broadcast shape, [32, 784, 100]. I tried using batch processing in other network training routines, such as SOM, but encountered the same issue.
Could you please advise on how to resolve this issue? Thank you very much.
Beta Was this translation helpful? Give feedback.
All reactions