예제 #1
0
 public Recognizer(string path)
 {
     native = LtpFactory.GetLtpFactory().CreateRecognizer(path);
 }
예제 #2
0
 public Segmentor(string path, string lexicon_file)
 {
     native = LtpFactory.GetLtpFactory().CreateSegmentor(path, lexicon_file);
 }
예제 #3
0
 public Segmentor(string path)
 {
     native = LtpFactory.GetLtpFactory().CreateSegmentor(path);
 }
예제 #4
0
파일: Parser.cs 프로젝트: xiapi22/ltpcsharp
 public Parser(string path)
 {
     native = LtpFactory.GetLtpFactory().CreateParser(path);
 }
예제 #5
0
 public Postagger(string path, string lexicon_file)
 {
     native = LtpFactory.GetLtpFactory().CreatePostagger(path, lexicon_file);
 }
예제 #6
0
 public Postagger(string path)
 {
     native = LtpFactory.GetLtpFactory().CreatePostagger(path);
 }