示例#1
0
 public InputProcessing()
 {
     gloveVector.LoadFromFile(GLOVE_VECTORS_PATH);
     tagList = File.ReadAllText(TAG_PATH).Split(Info.DELIM);
     tagList = Array.ConvertAll(tagList, d => d.ToLower());
     tagListEmbedding.Load(this.tagList, gloveVector);
 }