This commit is contained in:
2025-09-04 14:09:25 +08:00
parent ddb4af2a4b
commit 316b0bfdab

View File

@@ -0,0 +1,31 @@
package org.dromara.easyai.rnnNerveCenter;
public class RandomModelParameter {
private ModelParameter modelParameter;//模型
private int[] featureIndexes;//特征下标集合
private int key;//该随机神经网络体主键
public ModelParameter getModelParameter() {
return modelParameter;
}
public void setModelParameter(ModelParameter modelParameter) {
this.modelParameter = modelParameter;
}
public int[] getFeatureIndexes() {
return featureIndexes;
}
public void setFeatureIndexes(int[] featureIndexes) {
this.featureIndexes = featureIndexes;
}
public int getKey() {
return key;
}
public void setKey(int key) {
this.key = key;
}
}