This commit is contained in:
2025-09-04 14:09:08 +08:00
parent edca0eb85a
commit daa4edf54c

View File

@@ -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;
}
}