InterviewSolution
Saved Bookmarks
| 1. |
Explain how parsing is done in NLP. |
|
Answer» Parsing is the PROCESS of identifying and understanding a text's syntactic structure. It is accomplished by examining the text's CONSTITUENT pieces. The machine parses each word one by one, then two by two, three by three, and so on. It's a unigram when the system parses the text one word at a time. A bigram is a text that is PARSED two words at a time. When the machine parses three words at a time, the SET of words is called a trigram. The following points will help us comprehend the importance of parsing in NLP:
|
|