> For the complete documentation index, see [llms.txt](https://simprints.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://simprints.gitbook.io/docs/development/simprints-for-developers/integrating-with-simprints/confidence-score-bands.md).

# Confidence Score Bands

### Confidence score thresholds

Confidence bands and Decision policy are terms used to classify the degree to which an **existing** **biometric template** matches a currently captured one. Thus, this terms are used for **Identification** and **Verification** workflows.

The **Decision Policy** **thresholds** are configured in the project configuration in **Simprints ID** servers, and can be adjusted to affect the outcome of the resulting matched beneficiaries. Thus **Simprints** **ID** uses the specified **thresholds** to determine if a potential matching biometric record is worthy of being added to the **candidate list.**

The **ConfidenceBand** is an **enum** with 4 values indicating the rankings and can be accessed using the **getConfidenceBand** method of the **Identification** or **Verification** objects.

```kotlin

enum class ConfidenceBand {
    HIGH,   // Almost certainly a match (the biometrics are very similar)
    MEDIUM, // Possible match
    LOW,    // Not a match (the biometrics are very different)
    NONE,   // Confidence is below "Low" (likely a capture error)
}
```

### Confidence Scores

The **confidence score** is a numerical value that indicates the likelihood of a match. The returned number is dependent on the biometric modality selected. The **confidence score** adapts over time, as the match results become more accurate.

```kotlin

// accessing the value
val score = verification.confidence
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://simprints.gitbook.io/docs/development/simprints-for-developers/integrating-with-simprints/confidence-score-bands.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
