verne.freenode.net changed the topic of #mlpack to: http://www.mlpack.org/ -- We don't respond instantly... but we will respond. Give it a few minutes. Or hours. -- Channel logs: http://www.mlpack.org/irc/
sumedhghaisas has quit [Ping timeout: 276 seconds]
< zoq>
nilay: Hello, Y are the responses (labels), the first dimension represents the number of classes and the second dimension the number of samples. So, if you test the network with a single input (3 classes) it should look like: arma::mat Y = arma::zeros<arma::mat>(3, 1); instead of arma::mat Y = arma::zeros<arma::mat>(3, 192);.
< nilay>
no i mean only the forward pass starts and ends, backward pass never starts
< nilay>
zoq: could this be a problem with the test i wrote?
< zoq>
yes nice catch, you need to put another layer in front of the inception layer, because you need the backward pass to calculate the error for the next layer, but there isn't a next layer.
< zoq>
It calls the backward function, since there is some error in the backward pass, I removed everything in the backward pass and just added a print statement.