All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aiwiown.face.domain.compare.RiskAssessment Maven / Gradle / Ivy

There is a newer version: 3.0.9
Show newest version
package com.aiwiown.face.domain.compare;

import com.aiwiown.face.ApiObject;
import com.aiwiown.face.internal.mapping.ApiField;

import java.math.BigDecimal;

/**
 * 
 *     风险评估
 * 
* RiskAssessment * Date: 2020/4/26 0026 * Time: 16:52 * * @author [email protected] */ public class RiskAssessment extends ApiObject { private static final long serialVersionUID = 6898381156678657598L; /** * 返回驾驶证副本置信度 */ @ApiField("confidence") private BigDecimal confidence; /** * 一组用于参考的置信度阈值,包含以下三个字段。每个字段的值为一个 [0,100] 的浮点数,小数点后 3 位有效数字。 * 1e-3:误识率为千分之一的置信度阈值; * 1e-4:误识率为万分之一的置信度阈值; * 1e-5:误识率为十万分之一的置信度阈值; * 1e-6:风险为百万分之一的置信度阈值。 */ @ApiField("thresholds") private Thresholds thresholds; public BigDecimal getConfidence() { return confidence; } public void setConfidence(BigDecimal confidence) { this.confidence = confidence; } public Thresholds getThresholds() { return thresholds; } public void setThresholds(Thresholds thresholds) { this.thresholds = thresholds; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy