2017-10-16 11:35:13 -07:00
|
|
|
import { lowQualitySuggestionConfidenceThreshold } from 'wherehows-web/constants';
|
2017-10-03 18:07:38 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Takes a list of suggestions with confidence values, and if the confidence is greater than
|
|
|
|
* a low confidence threshold
|
2017-10-16 11:35:13 -07:00
|
|
|
* @param {number} confidenceLevel percentage indifcating how confidence the system is in the suggested value
|
2017-10-03 18:07:38 -07:00
|
|
|
* @return {boolean}
|
|
|
|
*/
|
2017-10-16 11:35:13 -07:00
|
|
|
const isHighConfidenceSuggestion = ({ confidenceLevel = 0 }: { confidenceLevel: number }): boolean =>
|
|
|
|
confidenceLevel > lowQualitySuggestionConfidenceThreshold;
|
2017-10-03 18:07:38 -07:00
|
|
|
|
2017-10-16 11:35:13 -07:00
|
|
|
export { isHighConfidenceSuggestion };
|