예제 #1
0
 public Document(Vocab vocab, Unicode[] words, bool[] spaces, Dictionary <string, object> user_data = null)
 {
     Vocab    = vocab;
     Words    = words;
     Spaces   = spaces;
     UserData = user_data;
 }
예제 #2
0
 public Token(Vocab vocab, Document doc, int offset)
 {
 }
예제 #3
0
 public Lexeme(Vocab vocab, int orth)
 {
     ParentVocab = vocab;
     Orth        = orth;
 }