From 560566501bbe52f035971923b4809849d12b2989 Mon Sep 17 00:00:00 2001 From: inter Date: Thu, 4 Sep 2025 14:09:00 +0800 Subject: [PATCH] Add File --- .../easyai/randomForest/TreeWithTrust.java | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/main/java/org/dromara/easyai/randomForest/TreeWithTrust.java diff --git a/src/main/java/org/dromara/easyai/randomForest/TreeWithTrust.java b/src/main/java/org/dromara/easyai/randomForest/TreeWithTrust.java new file mode 100644 index 0000000..de5ea05 --- /dev/null +++ b/src/main/java/org/dromara/easyai/randomForest/TreeWithTrust.java @@ -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; + } +}