本文介绍了自然语言解析的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好晚上好:

i想做一个简单的解析,但我不知道要开始。

首先我得到文本并将其拆分为单词数组,然后该怎么办。



例如我有以下短语:



打开CD_Drive



结果将是:

打开 - >动词。

the - > det。

CD_Drive - >名词。





感谢您的帮助。

Hello guys good evening:
i want to make a simple parsing, but i have no idea to start.
first i get the text and split it to a words of array, then what can i do.

for example i have the following phrase :

"Open the CD_Drive"

the result will be:
Open --> Verb.
the --> det.
CD_Drive --> Noun.


thanks for help.

推荐答案



这篇关于自然语言解析的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 16:45