Introduction to NLP using Python

The following post is using SpaCy to do all of the NLP work. Throughout the following post we will cover a number of different NLP tasks that are foundational to the work that can be built upon to generate complex syntatical modelling. Tokenization This process takes any body of text (more specifically a Document) and breaks it down either to the sentence level or the word level. import spacy nlp = spacy....

October 3, 2020 · 1 min · 152 words · Chris Ried