From 42181af79bc7daed9a0cbbaefdf2114399a22106 Mon Sep 17 00:00:00 2001 From: Tanay Kulkarni <42992576+TanayKulkarni@users.noreply.github.com> Date: Fri, 19 Jul 2019 13:59:11 -0700 Subject: [PATCH] Added the nltk library installation. (#31603) * Added the nltk library installation. * Address feedback --- .../machine-learning/natural-language-processing/index.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/guide/english/machine-learning/natural-language-processing/index.md b/guide/english/machine-learning/natural-language-processing/index.md index de47411ffc..cb9fab65f5 100644 --- a/guide/english/machine-learning/natural-language-processing/index.md +++ b/guide/english/machine-learning/natural-language-processing/index.md @@ -1,6 +1,7 @@ --- title: Natural Language Processing --- + ## Natural Language Processing(NLP) According to Wikipedia, "Natural language processing (NLP) is a subfield of computer science, information engineering, and artificial intelligence, concerned with the interactions between computers and human (natural) languages, in particular how to program computers to process and analyze large amounts of natural language data." @@ -41,7 +42,12 @@ In simpler terms, it is a process in which natural language generated by humans *TextBlob, a user-friendly and intuitive NLTK interface. *CoreNLP from Stanford Group *PolyGlot, a natural language pipeline that supports massive multilingual applications. - *Pattern, used for web crawling, NLP tasks, and machine learning. + *Pattern, used for web crawling, NLP tasks, and machine learning. + +## Installing the package nltk which can help in Natural Language Processing: + + pip install --upgrade pip + pip install --upgrade nltk #### More Information: