SlideShare a Scribd company logo
NLTK Natural Language Processing made easy Elvis Joel D’Souza Gopikrishnan Nambiar Ashutosh Pandey
WHAT: Session Objective To introduce Natural Language Toolkit(NLTK), an open source library which simplifies the implementation of Natural Language Processing(NLP) in Python.
HOW: Session Layout This session is divided into 3 parts: Python – The programming language Natural Language Processing (NLP) – The concept Natural Language Toolkit (NLTK) – The tool for NLP implementation in Python
 
Why Python?
Data Structures Python has 4 built-in data structures: List Tuple Dictionary Set
List A list in Python is an  ordered   group  of items (or  elements ).  It is a very general structure, and list elements don't have to be of the same type.  listOfWords = [‘this’,’is’,’a’,’list’,’of’,’words’]  listOfRandomStuff = [1,’pen’,’costs’,’Rs.’,6.50]
Tuple A tuple in Python is much like a  list  except that it is  immutable  (unchangeable) once created.  They are generally used for data which should not be edited. Example:  ( 100 , 10 , 0.01 ,’ hundred ’) Number Square root Reciprocal Number in words
Return a tuple def   func (x,y):  # code to compute a and b return  (a,b) One very useful situation is  returning multiple values  from a function. To return multiple values in many other languages requires creating an object or container of some type.
Dictionary A dictionary in python is a collection of unordered  values  which are accessed by  key . Example: Here, the key is the character and the value is its position in the alphabet { 1 : ‘ one ’,  2 : ‘ two ’,  3 : ‘ three ’}
Sets Python also has an implementation of the mathematical set.  Unlike sequence objects such as lists and tuples, in which each element is indexed, a set is an  unordered  collection of objects.  Sets also  cannot  have  duplicate  members - a given object appears in a set 0 or 1 times. SetOfBrowsers=set([‘IE’,’Firefox’,’Opera’,’Chrome’])
Control Statements
Decision Control - If num = 3
Loop Control - While number  = 10
Loop Control - For
Functions - Syntax def   functionname (arg1, arg2, ...): statement1  statement2  return  variable
Functions - Example
Modules A module is a file containing Python definitions and statements.  The file name is the module name with the suffix .py appended. A module can be  imported by another program to make use of its functionality.
Import import   math The import keyword is used to tell Python, that we need the ‘math’ module. This statement makes all the functions in this module accessible in the program.
Using Modules – An Example print  math. sqrt( 100 )   sqrt is a function math is a module math.sqrt(100) returns 10 This is being printed to the standard output
Natural Language Processing (NLP)
Natural Language Processing The term  natural language processing  encompasses a broad set of techniques for automated generation, manipulation, and analysis of natural or human languages
Why NLP Applications for processing large amounts of texts require NLP expertise Index and search large texts Speech understanding Information extraction Automatic summarization
Stemming Stemming is the process for reducing inflected (or sometimes derived) words to their stem, base or root form – generally a written word form.  The stem need not be identical to the morphological root of the word; it is usually sufficient that related words map to the same stem, even if this stem is not in itself a valid root.  When you apply stemming on 'cats', the result is 'cat'
Part of speech tagging(POS Tagging) Part-of-speech (POS) tag: A word can be classified into one or more lexical or part-of-speech categories  such as nouns, verbs, adjectives, and articles, to name a few. A POS tag is a symbol representing such a lexical category, e.g., NN (noun), VB (verb), JJ (adjective), AT (article).
POS tagging - continued Given a sentence and a set of POS tags, a common language processing task is to automatically assign POS tags to each word in the sentence.  State-of-the-art POS taggers can achieve accuracy as high as 96%.
POS Tagging – An Example The   ball   is   red NOUN VERB ADJECTIVE ARTICLE
Parsing Parsing a sentence involves the use of linguistic knowledge of a language to discover the way in which a sentence is structured
Parsing– An Example The   boy   went   home NOUN VERB NOUN ARTICLE NP VP The boy went home
Challenges We will often imply additional information in spoken language by the way we place stress on words.  The sentence "I never said she stole my money" demonstrates the importance stress can play in a sentence, and thus the inherent difficulty a natural language processor can have in parsing it.
Depending on which word the speaker places the stress, sentences could have several distinct meanings Here goes an example…
" I  never said she stole my money“  Someone else said it, but  I  didn't.  "I  never  said she stole my money“    I simply didn't ever say it.  "I never  said  she stole my money"   I might have implied it in some way, but I never explicitly said it.  "I never said  she  stole my money"    I said someone took it; I didn't say it was she.
"I never said she  stole  my money"    I just said she probably borrowed it.  "I never said she stole  my  money"   I said she stole someone else's money.  "I never said she stole my  money "   I said she stole something, but not my money
NLTK Natural Language Toolkit
Design Goals
Exploring Corpora Corpus is a large collection of text which is used to either train an NLP program or is used as input by an NLP program In NLTK , a corpus can be loaded using the PlainTextCorpusReader Class
 
Loading your own corpus >>> from nltk.corpus import PlaintextCorpusReader corpus_root = ‘C:\text\’ >>> wordlists = PlaintextCorpusReader(corpus_root, '.*‘) >>> wordlists.fileids() ['README', 'connectives', 'propernames', 'web2', 'web2a', 'words'] >>> wordlists.words('connectives') ['the', 'of', 'and', 'to', 'a', 'in', 'that', 'is', ...]
NLTK Corpora Gutenberg corpus Brown corpus Wordnet Stopwords Shakespeare corpus Treebank And many more…
Computing with Language: Simple Statistics Frequency Distributions >>> fdist1 = FreqDist(text1) >>> fdist1 [2] <FreqDist with 260819 outcomes> >>> vocabulary1 = fdist1.keys() >>> vocabulary1[:50] [',', 'the', '.', 'of', 'and', 'a', 'to', ';', 'in', 'that', &quot;'&quot;, '-', 'his', 'it', 'I', 's', 'is', 'he', 'with', 'was', 'as', '&quot;', 'all', 'for', 'this', '!', 'at', 'by', 'but', 'not', '--', 'him', 'from', 'be', 'on', 'so', 'whale', 'one', 'you', 'had', 'have', 'there', 'But', 'or', 'were', 'now', 'which', '?', 'me', 'like'] >>> fdist1['whale'] 906
Cumulative Frequency Plot for 50 Most Frequently Words in  Moby Dick
POS tagging
WordNet Lemmatizer
Parsing >>> from nltk.parse import ShiftReduceParser >>> sr = ShiftReduceParser(grammar) >>> sentence1 = 'the cat chased the dog'.split() >>> sentence2 = 'the cat chased the dog on the rug'.split() >>> for t in sr.nbest_parse(sentence1): ...  print t (S (NP (DT the) (N cat)) (VP (V chased) (NP (DT the) (N dog))))
Authorship Attribution An Example
Find nltk @  <python-installation>\Lib\site-packages\nltk
The Road Ahead Python:  http://www.python.org A Byte of Python, Swaroop CH  http://www.swaroopch.com/notes/python Natural Language Processing: Speech And Language Processing, Jurafsky and Martin Foundations of Statistical Natural Language Processing, Manning and Schutze Natural Language Toolkit: http://www.nltk.org   (for NLTK Book, Documentation) Upcoming book by O'reilly Publishers

More Related Content

PPTX
PPTX
PDF
Natural Language Toolkit (NLTK), Basics
PDF
Introduction to NLTK
PPTX
natural language processing help at myassignmenthelp.net
PPTX
Natural language processing (NLP)
KEY
NLTK in 20 minutes
Natural Language Toolkit (NLTK), Basics
Introduction to NLTK
natural language processing help at myassignmenthelp.net
Natural language processing (NLP)
NLTK in 20 minutes

What's hot (20)

PPT
Introduction to Natural Language Processing
PDF
An introduction to the Transformers architecture and BERT
PPTX
Text similarity measures
PDF
pg_bigmと類似度検索
PDF
Recurrent Neural Networks
PDF
関数プログラミング入門
PDF
Natural language processing (NLP) introduction
PPTX
視覚と対話の融合研究
PDF
Pythonによる機械学習入門 ~SVMからDeep Learningまで~
PPTX
Natural Language Processing
PPTX
押さえておきたい、PostgreSQL 13 の新機能!! (PostgreSQL Conference Japan 2020講演資料)
PDF
グラフ構造データに対する深層学習〜創薬・材料科学への応用とその問題点〜 (第26回ステアラボ人工知能セミナー)
PPTX
Natural lanaguage processing
PDF
cyREST入門~RとCytoscapeのAPI連携~
PDF
Learning Convolutional Neural Networks for Graphs
ODP
pixiv サイバーエージェント共同勉強会 solr導入記
PPTX
自動でバグを見つける!プログラム解析と動的バイナリ計装
PDF
用 C# 與 .NET 也能打造機器學習模型:你所不知道的 ML.NET 初體驗
PPTX
Introduction to natural language processing, history and origin
Introduction to Natural Language Processing
An introduction to the Transformers architecture and BERT
Text similarity measures
pg_bigmと類似度検索
Recurrent Neural Networks
関数プログラミング入門
Natural language processing (NLP) introduction
視覚と対話の融合研究
Pythonによる機械学習入門 ~SVMからDeep Learningまで~
Natural Language Processing
押さえておきたい、PostgreSQL 13 の新機能!! (PostgreSQL Conference Japan 2020講演資料)
グラフ構造データに対する深層学習〜創薬・材料科学への応用とその問題点〜 (第26回ステアラボ人工知能セミナー)
Natural lanaguage processing
cyREST入門~RとCytoscapeのAPI連携~
Learning Convolutional Neural Networks for Graphs
pixiv サイバーエージェント共同勉強会 solr導入記
自動でバグを見つける!プログラム解析と動的バイナリ計装
用 C# 與 .NET 也能打造機器學習模型:你所不知道的 ML.NET 初體驗
Introduction to natural language processing, history and origin
Ad

Viewers also liked (20)

PPTX
NLTK - Natural Language Processing in Python
PDF
Practical Natural Language Processing
PPT
Introduction to Natural Language Processing
PPTX
Natural language processing
PDF
Natural Language Processing
PDF
Natural language processing with python and amharic syntax parse tree by dani...
PDF
Natural Language Processing with Python
PPTX
Natural Language Processing and Python
PPT
Natural Language Processing with Neo4j
PDF
GPU Accelerated Natural Language Processing by Guillermo Molini
PPT
Four ‘Magic’ Questions that Help Resolve Most Problems - Introduction to The ...
ODP
JavaScript Leaks
PDF
Chaplin.js in real life
PPTX
Knowledge extraction from the Encyclopedia of Life using Python NLTK
PPTX
NLTK Book Chapter 2
PPT
codin9cafe[2015.03. 18]Python learning for natural language processing - 홍은기(...
PDF
PG-Strom
PDF
Practical Natural Language Processing From Theory to Industrial Applications
PDF
Predicting Candidate Performance From Text NLP
PPT
Artifial intelligence
NLTK - Natural Language Processing in Python
Practical Natural Language Processing
Introduction to Natural Language Processing
Natural language processing
Natural Language Processing
Natural language processing with python and amharic syntax parse tree by dani...
Natural Language Processing with Python
Natural Language Processing and Python
Natural Language Processing with Neo4j
GPU Accelerated Natural Language Processing by Guillermo Molini
Four ‘Magic’ Questions that Help Resolve Most Problems - Introduction to The ...
JavaScript Leaks
Chaplin.js in real life
Knowledge extraction from the Encyclopedia of Life using Python NLTK
NLTK Book Chapter 2
codin9cafe[2015.03. 18]Python learning for natural language processing - 홍은기(...
PG-Strom
Practical Natural Language Processing From Theory to Industrial Applications
Predicting Candidate Performance From Text NLP
Artifial intelligence
Ad

Similar to NLTK: Natural Language Processing made easy (20)

PPTX
Nltk
PDF
overview of natural language processing concepts
PDF
Pycon India 2018 Natural Language Processing Workshop
PPTX
Natural Language Processing_in semantic web.pptx
PPTX
BOW.pptx
PDF
MACHINE-DRIVEN TEXT ANALYSIS
PPTX
Natural Language processing using nltk.pptx
PPTX
NLP PPT.pptx
PPTX
AI UNIT 3 - SRCAS JOC.pptx enjoy this ppt
PPTX
NLP Introduction and basics of natural language processing
PPTX
NLP.pptx
PPTX
Programming paradigms Techniques_part2.pptx
PDF
NLP Deep Learning with Tensorflow
PDF
Natural language processing (Python)
PPTX
NLP todo
PPTX
Natural Language processing Parts of speech tagging, its classes, and how to ...
PPTX
KiwiPyCon 2014 - NLP with Python tutorial
PPTX
Natural Language Processing using Text Mining
PPTX
Open nlp presentationss
PDF
Text classification-php-v4
Nltk
overview of natural language processing concepts
Pycon India 2018 Natural Language Processing Workshop
Natural Language Processing_in semantic web.pptx
BOW.pptx
MACHINE-DRIVEN TEXT ANALYSIS
Natural Language processing using nltk.pptx
NLP PPT.pptx
AI UNIT 3 - SRCAS JOC.pptx enjoy this ppt
NLP Introduction and basics of natural language processing
NLP.pptx
Programming paradigms Techniques_part2.pptx
NLP Deep Learning with Tensorflow
Natural language processing (Python)
NLP todo
Natural Language processing Parts of speech tagging, its classes, and how to ...
KiwiPyCon 2014 - NLP with Python tutorial
Natural Language Processing using Text Mining
Open nlp presentationss
Text classification-php-v4

NLTK: Natural Language Processing made easy

  • 1. NLTK Natural Language Processing made easy Elvis Joel D’Souza Gopikrishnan Nambiar Ashutosh Pandey
  • 2. WHAT: Session Objective To introduce Natural Language Toolkit(NLTK), an open source library which simplifies the implementation of Natural Language Processing(NLP) in Python.
  • 3. HOW: Session Layout This session is divided into 3 parts: Python – The programming language Natural Language Processing (NLP) – The concept Natural Language Toolkit (NLTK) – The tool for NLP implementation in Python
  • 4.  
  • 6. Data Structures Python has 4 built-in data structures: List Tuple Dictionary Set
  • 7. List A list in Python is an ordered group of items (or elements ). It is a very general structure, and list elements don't have to be of the same type. listOfWords = [‘this’,’is’,’a’,’list’,’of’,’words’] listOfRandomStuff = [1,’pen’,’costs’,’Rs.’,6.50]
  • 8. Tuple A tuple in Python is much like a list except that it is immutable (unchangeable) once created. They are generally used for data which should not be edited. Example: ( 100 , 10 , 0.01 ,’ hundred ’) Number Square root Reciprocal Number in words
  • 9. Return a tuple def func (x,y): # code to compute a and b return (a,b) One very useful situation is returning multiple values from a function. To return multiple values in many other languages requires creating an object or container of some type.
  • 10. Dictionary A dictionary in python is a collection of unordered values which are accessed by key . Example: Here, the key is the character and the value is its position in the alphabet { 1 : ‘ one ’, 2 : ‘ two ’, 3 : ‘ three ’}
  • 11. Sets Python also has an implementation of the mathematical set. Unlike sequence objects such as lists and tuples, in which each element is indexed, a set is an unordered collection of objects. Sets also cannot have duplicate members - a given object appears in a set 0 or 1 times. SetOfBrowsers=set([‘IE’,’Firefox’,’Opera’,’Chrome’])
  • 13. Decision Control - If num = 3
  • 14. Loop Control - While number = 10
  • 16. Functions - Syntax def functionname (arg1, arg2, ...): statement1 statement2 return variable
  • 18. Modules A module is a file containing Python definitions and statements. The file name is the module name with the suffix .py appended. A module can be imported by another program to make use of its functionality.
  • 19. Import import math The import keyword is used to tell Python, that we need the ‘math’ module. This statement makes all the functions in this module accessible in the program.
  • 20. Using Modules – An Example print math. sqrt( 100 ) sqrt is a function math is a module math.sqrt(100) returns 10 This is being printed to the standard output
  • 22. Natural Language Processing The term natural language processing encompasses a broad set of techniques for automated generation, manipulation, and analysis of natural or human languages
  • 23. Why NLP Applications for processing large amounts of texts require NLP expertise Index and search large texts Speech understanding Information extraction Automatic summarization
  • 24. Stemming Stemming is the process for reducing inflected (or sometimes derived) words to their stem, base or root form – generally a written word form. The stem need not be identical to the morphological root of the word; it is usually sufficient that related words map to the same stem, even if this stem is not in itself a valid root. When you apply stemming on 'cats', the result is 'cat'
  • 25. Part of speech tagging(POS Tagging) Part-of-speech (POS) tag: A word can be classified into one or more lexical or part-of-speech categories such as nouns, verbs, adjectives, and articles, to name a few. A POS tag is a symbol representing such a lexical category, e.g., NN (noun), VB (verb), JJ (adjective), AT (article).
  • 26. POS tagging - continued Given a sentence and a set of POS tags, a common language processing task is to automatically assign POS tags to each word in the sentence. State-of-the-art POS taggers can achieve accuracy as high as 96%.
  • 27. POS Tagging – An Example The ball is red NOUN VERB ADJECTIVE ARTICLE
  • 28. Parsing Parsing a sentence involves the use of linguistic knowledge of a language to discover the way in which a sentence is structured
  • 29. Parsing– An Example The boy went home NOUN VERB NOUN ARTICLE NP VP The boy went home
  • 30. Challenges We will often imply additional information in spoken language by the way we place stress on words. The sentence &quot;I never said she stole my money&quot; demonstrates the importance stress can play in a sentence, and thus the inherent difficulty a natural language processor can have in parsing it.
  • 31. Depending on which word the speaker places the stress, sentences could have several distinct meanings Here goes an example…
  • 32. &quot; I never said she stole my money“ Someone else said it, but I didn't. &quot;I never said she stole my money“ I simply didn't ever say it. &quot;I never said she stole my money&quot; I might have implied it in some way, but I never explicitly said it. &quot;I never said she stole my money&quot; I said someone took it; I didn't say it was she.
  • 33. &quot;I never said she stole my money&quot; I just said she probably borrowed it. &quot;I never said she stole my money&quot; I said she stole someone else's money. &quot;I never said she stole my money &quot; I said she stole something, but not my money
  • 36. Exploring Corpora Corpus is a large collection of text which is used to either train an NLP program or is used as input by an NLP program In NLTK , a corpus can be loaded using the PlainTextCorpusReader Class
  • 37.  
  • 38. Loading your own corpus >>> from nltk.corpus import PlaintextCorpusReader corpus_root = ‘C:\text\’ >>> wordlists = PlaintextCorpusReader(corpus_root, '.*‘) >>> wordlists.fileids() ['README', 'connectives', 'propernames', 'web2', 'web2a', 'words'] >>> wordlists.words('connectives') ['the', 'of', 'and', 'to', 'a', 'in', 'that', 'is', ...]
  • 39. NLTK Corpora Gutenberg corpus Brown corpus Wordnet Stopwords Shakespeare corpus Treebank And many more…
  • 40. Computing with Language: Simple Statistics Frequency Distributions >>> fdist1 = FreqDist(text1) >>> fdist1 [2] <FreqDist with 260819 outcomes> >>> vocabulary1 = fdist1.keys() >>> vocabulary1[:50] [',', 'the', '.', 'of', 'and', 'a', 'to', ';', 'in', 'that', &quot;'&quot;, '-', 'his', 'it', 'I', 's', 'is', 'he', 'with', 'was', 'as', '&quot;', 'all', 'for', 'this', '!', 'at', 'by', 'but', 'not', '--', 'him', 'from', 'be', 'on', 'so', 'whale', 'one', 'you', 'had', 'have', 'there', 'But', 'or', 'were', 'now', 'which', '?', 'me', 'like'] >>> fdist1['whale'] 906
  • 41. Cumulative Frequency Plot for 50 Most Frequently Words in Moby Dick
  • 44. Parsing >>> from nltk.parse import ShiftReduceParser >>> sr = ShiftReduceParser(grammar) >>> sentence1 = 'the cat chased the dog'.split() >>> sentence2 = 'the cat chased the dog on the rug'.split() >>> for t in sr.nbest_parse(sentence1): ... print t (S (NP (DT the) (N cat)) (VP (V chased) (NP (DT the) (N dog))))
  • 46. Find nltk @ <python-installation>\Lib\site-packages\nltk
  • 47. The Road Ahead Python: http://www.python.org A Byte of Python, Swaroop CH http://www.swaroopch.com/notes/python Natural Language Processing: Speech And Language Processing, Jurafsky and Martin Foundations of Statistical Natural Language Processing, Manning and Schutze Natural Language Toolkit: http://www.nltk.org (for NLTK Book, Documentation) Upcoming book by O'reilly Publishers