This commit is contained in:
2025-09-04 14:09:00 +08:00
parent 5c9b0de417
commit 560566501b

View File

@@ -0,0 +1,27 @@
package org.dromara.easyai.randomForest;
/**
* @author lidapeng
* @description每棵树分类的结果和可信度
* @date 8:37 下午 2020/2/28
*/
public class TreeWithTrust {
private int type;//类别
private float trust;//可信度
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public float getTrust() {
return trust;
}
public void setTrust(float trust) {
this.trust = trust;
}
}