Discussions
Get output vector before the softmax layer ?
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 !
Posted by Warith HARCHAOUI almost 9 years ago
A binary classifier experiment
Hi,
Fantastic Library, so clear!
I was just wondering, i am trying to use the library for a binary classifier experiment using the log loss function to train the model. This is for a university experiment around benchmarking different models. Would you have some time to provide an example of how to use the library to achieve the above goal.
Many thanks,
Best,
Andrew
Posted by andrewcz over 8 years ago
question on example
http://www.opendeep.org/docs/monitors-and-live-plotting
on the sample,
from opendeep.models.single_layer.basic import BasicLayer, SoftmaxLayer
there is no basic (packge) and
can't find BasicLayer , Which one I have to use ?
Posted by kwang nam about 9 years ago
please update the source code on this page
http://www.opendeep.org/docs/tutorial-first-steps
On Example Code
# grab 100 test examples
test_xs, _ = mnist.getSubset(datasets.TEST)
--> change like this
mnist.getSubset(datasets.Dataset.test_inputs)
is test_inputs is right attribute ?
Posted by kwang nam about 9 years ago