Sigmoid gives a value between 0 and 1 and we can use threshold of 0.5 to round off the output to 0 and 1 which makes a good binary classifier.
But, isn’t it the same case with tanh which gives a value between -1 and 1?
We can use 0 as threshold to round off the output to -1 and 1.
In one of the justifications to the answer in the Quiz of Week 3, it says – Tanh is less convenient as the output is between -1 and 1. I don’t understand how?!