is an option that specifies the minimum threshold at which a result is considered acceptable.
AcceptanceThreshold
is an option that specifies the minimum threshold at which a result is considered acceptable.
Details
- Typical settings include:
-
Automatic automatic threshold val a numerical value typically between 0 and 1 - Typically, if the confidence for a particular result is below the setting for AcceptanceThreshold, it will be rejected.
- If all results are rejected, typically Missing[…] is returned.
- In Classify, Predict and anomaly detection functions, the value of AcceptanceThreshold is used to define anomalies and corresponds to a RarerProbability threshold.
Examples
Basic Examples (4)
Specify the acceptance threshold while detecting faces:
FindFaces[[image], {"Image", "Strength"}, AcceptanceThreshold -> .8]//DatasetFindFaces[[image], {"Image", "Strength"}, AcceptanceThreshold -> .5]//DatasetImageInstanceQ uses AcceptanceThreshold->0.5:
ImageInstanceQ[[image], Entity["Concept", "Hawk::647j9"]]With a higher recognition threshold, objects may not be identified:
ImageInstanceQ[[image], Entity["Concept", "Hawk::647j9"], AcceptanceThreshold -> .9]ImageIdentify uses an automatic acceptance threshold:
ImageIdentify[[image]]ImageIdentify[[image], AcceptanceThreshold -> .7]If no identification is above the threshold, a Missing object is returned:
ImageIdentify[[image], AcceptanceThreshold -> 1]Delete anomalies with the default AcceptanceThreshold value:
DeleteAnomalies[{1, 2, 4, 2, 4, 5, 8, 12}]Delete anomalies with a higher threshold:
DeleteAnomalies[{1, 2, 4, 2, 4, 5, 8, 12}, AcceptanceThreshold -> 0.1]History
Text
Wolfram Research (2019), AcceptanceThreshold, Wolfram Language function, https://reference.wolfram.com/language/ref/AcceptanceThreshold.html.
CMS
Wolfram Language. 2019. "AcceptanceThreshold." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/AcceptanceThreshold.html.
APA
Wolfram Language. (2019). AcceptanceThreshold. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/AcceptanceThreshold.html
BibTeX
@misc{reference.wolfram_2026_acceptancethreshold, author="Wolfram Research", title="{AcceptanceThreshold}", year="2019", howpublished="\url{https://reference.wolfram.com/language/ref/AcceptanceThreshold.html}", note=[Accessed: 13-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_acceptancethreshold, organization={Wolfram Research}, title={AcceptanceThreshold}, year={2019}, url={https://reference.wolfram.com/language/ref/AcceptanceThreshold.html}, note=[Accessed: 13-June-2026]}