I am working on an MLP-neural network using supervised learning.
For the hidden layers I am using Tanh (-1,1)
and for the output layer Softmax (which gives the probability distribution btw 0 and 1.
As I am working with supervised learning should my target output be between 0
and 1
, or -1
and 1
(because of the Tanh function), or does it not matter?
Thanks!