Im currently working on a machine learning model which can predict the presence of a disease given the sample. I have the model output the probabilities associated with the classes (positive, negative , suspicious). I want to create sort of a score which has the following properties:
- If the score was above a particular threshold (lets say t1), the interpretation would be that the predicted class is positive.
- If the score was between two thresholds (t1 and t2 where t2<t1), the interpretation would be that the predicted class is suspicious.
- If the score was below the threshold t2, then the interpretation is that the predicted class is negative.
- The score should be between 0 to 1 preferably.
I'm also not sure how to figure out the threshold values t1 and t2 for this case.
Also, from what i have searched on the internet, there is an option to give weights to the different cases thereby reducing type 1 errors. Is this advisable, since I feel like it is manual intervention instead of improving the models perfomance directly.
Im a newbie in machine learning so please be patient in case my doubt is too basic.
Thanks a lot >.<