public Recognizer(string path) { native = LtpFactory.GetLtpFactory().CreateRecognizer(path); }
public Segmentor(string path, string lexicon_file) { native = LtpFactory.GetLtpFactory().CreateSegmentor(path, lexicon_file); }
public Segmentor(string path) { native = LtpFactory.GetLtpFactory().CreateSegmentor(path); }
public Parser(string path) { native = LtpFactory.GetLtpFactory().CreateParser(path); }
public Postagger(string path, string lexicon_file) { native = LtpFactory.GetLtpFactory().CreatePostagger(path, lexicon_file); }
public Postagger(string path) { native = LtpFactory.GetLtpFactory().CreatePostagger(path); }