Add File
This commit is contained in:
25
src/main/java/org/dromara/easyai/entity/CreatorModel.java
Normal file
25
src/main/java/org/dromara/easyai/entity/CreatorModel.java
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
package org.dromara.easyai.entity;
|
||||||
|
|
||||||
|
|
||||||
|
import org.dromara.easyai.rnnJumpNerveCenter.ModelParameter;
|
||||||
|
|
||||||
|
public class CreatorModel {
|
||||||
|
private ModelParameter semanticsModel;
|
||||||
|
private ModelParameter customModel;
|
||||||
|
|
||||||
|
public ModelParameter getSemanticsModel() {
|
||||||
|
return semanticsModel;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSemanticsModel(ModelParameter semanticsModel) {
|
||||||
|
this.semanticsModel = semanticsModel;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ModelParameter getCustomModel() {
|
||||||
|
return customModel;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCustomModel(ModelParameter customModel) {
|
||||||
|
this.customModel = customModel;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user