Add File
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
package org.dromara.easyai.rnnJumpNerveCenter;
|
||||
|
||||
|
||||
import org.dromara.easyai.entity.TypeMapping;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class RandomModel {
|
||||
private ModelParameter typeModelParameter;
|
||||
private List<TypeMapping> typeMappings;//映射
|
||||
|
||||
public ModelParameter getTypeModelParameter() {
|
||||
return typeModelParameter;
|
||||
}
|
||||
|
||||
public void setTypeModelParameter(ModelParameter typeModelParameter) {
|
||||
this.typeModelParameter = typeModelParameter;
|
||||
}
|
||||
|
||||
public List<TypeMapping> getTypeMappings() {
|
||||
return typeMappings;
|
||||
}
|
||||
|
||||
public void setTypeMappings(List<TypeMapping> typeMappings) {
|
||||
this.typeMappings = typeMappings;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user