Get output vector before the softmax layer ?
Solved!Posted in General by Warith HARCHAOUI Mon Oct 26 2015 16:39:05 GMT+0000 (Coordinated Universal Time)·3·Viewed 3,338 times
Dear all,
I would like to know how to get the probabilities (output values of the neural network) of each class of a given trained MLP in OpenDeep ?
This would play the role of a confidence.
Thanks a lot !
You get the probabilities from Softmax by setting the argument
out_as_probs=True
when instantiating the layer.Thanks a lot!
marked this as solved