Add File
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
package org.dromara.easyai.entity;
|
||||
|
||||
import org.dromara.easyai.rnnNerveCenter.ModelParameter;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class WordTwoVectorModel {
|
||||
private ModelParameter modelParameter;
|
||||
private List<String> wordList;
|
||||
|
||||
public ModelParameter getModelParameter() {
|
||||
return modelParameter;
|
||||
}
|
||||
|
||||
public void setModelParameter(ModelParameter modelParameter) {
|
||||
this.modelParameter = modelParameter;
|
||||
}
|
||||
|
||||
public List<String> getWordList() {
|
||||
return wordList;
|
||||
}
|
||||
|
||||
public void setWordList(List<String> wordList) {
|
||||
this.wordList = wordList;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user