카테고리 없음
[딥러닝]How to determine threshold in Sigmoid function?
ML.chang
2019. 7. 20. 16:30
As per Andrew Ng's Course, if you use the sigmoid activation, the outputs represent the probability of either outcome 0 or outcome 1.
So the decision boundary is 0.5
if prediction > 0.5 , the prediction is 1
if prediction <= 0.5 , the prediction in 0
