In this week of this course, we learnt to classify text into 1 (positive) and 0 (negative). What to do when we have a multiclass sentiment classification?
Then we use the Softmax activation function to find the probability of a particular class. For example, if we have a cat, dog, and fish, then softmax output (for cat) will be 0.8 for cat, 0.1 for dog, 0.1 for fish. The higher the probability, the higher the chance of that class.
1 Like
got it. thank you.