I use Softmax in MLP.
When I test with MLP.fprop(), upward_pass() function not found in Softmax class.
upward_pass() is implemented just in Autoencoder and RBM.
Although upward_pass() is not in Softmax class, fprop() is in this.
and I think that we can make upward_pass() by copying fprop().
Is it right??
What is difference between fprop and upward_pass()??