This commit is contained in:
2025-09-04 14:09:27 +08:00
parent 6f9e2752c3
commit 53fd67c123

View File

@@ -0,0 +1,22 @@
package org.dromara.easyai.recommend;
public class RecommendConfig {
private float studyTh = 0.5f;//进行互相学习的阈值
private int dimension = 10;//隐层神经元维度
public float getStudyTh() {
return studyTh;
}
public void setStudyTh(float studyTh) {
this.studyTh = studyTh;
}
public int getDimension() {
return dimension;
}
public void setDimension(int dimension) {
this.dimension = dimension;
}
}