How is predictive intelligence confidence calculated?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2023 09:48 AM
My classification solution is trying to predict assignment group. I'm creating a flow and the sample flow in docs.servicenow.com suggest using a confidence condition. If confidence is above 50% then use the predicted value. My question is how this confidence number is determines.
PI Flow:

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2023 10:07 AM
Confidence in PI is the output probability of the predicted classes (i.e. assignment groups in my example below) from the trained classifier. The class with higher probability (confidence) is the predicted class provided it is greater than or equal to the corresponding threshold value.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2023 12:33 PM
Thank you. What's the different between Default confidence and predicted confidence? I'm looking at ml_predictor_results table and seeing different values between Default confidence and predicted confidence.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2023 10:26 AM
In [ml_predictor_results] table, default confidence is the same as the threshold, and predicted confidence is the same as confidence in the screenshot provided by Lener.