I'm new to Machine learning. When I learn about the Logistic regression, using one-vs-all (one-vs-rest) method for multiclassification: In logistic regression, the hypothesis function try to estimate the probability of the positive class. Assume we have 3 classes, then each class, we should predict the hypothesis function h(x)
h1(x)=P(y=1|x)
h2(x)=P(y=2|x)
h3(x)=P(y=3|x)
However,the sum of the three probabilities doesn't equal to 1? I "feel" that it equal to 1, and I don't understand why it doesn't. Can someone explain why?