コード例 #1
0
        public void Lexer()
        {
            var nlp    = new Nlp.Nlp("Api Key", "Secret Key");
            var result = nlp.Lexer("今天天气不错");

            Console.Write(result);
        }
コード例 #2
0
        public void Lexer()
        {
            var nlp    = new Nlp.Nlp(Config.clientId, Config.clientSecret);
            var result = nlp.Lexer("今天天气不错");

            Console.Write(result);
        }
コード例 #3
0
ファイル: NlpDemo.cs プロジェクト: yuanhuaming/BaiduAiCore
        public void Lexer()
        {
            var result = nlp.Lexer("今天天气不错");

            Console.Write(result);
        }