I am training a model for the task of Binary classification using H2O.ai. The final output to the user is the probability of class_1.
Recently, I found that by default the training uses threshold moving, and all the test_f1 are the scores found after moving the threshold.
Now, Let's say the class_1 probability is 90%, while the threshold is set at 94%. The user will be completely sure that it's a true instance while the model actually classified it as false.
My question is how can We interpret the probability of a class in a task of binary classification while threshold moving has been applied?
Thank you