partofspeech- tagging · open class (lexical) words closed class (functional) nouns verbs proper...

54
Partofspeech tagging

Upload: others

Post on 06-Feb-2020

37 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Part-­‐of-­‐speech  tagging  

Page 2: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Parts  of  Speech  

•  Perhaps  star*ng  with  Aristotle  in  the  West  (384–322  BCE)  the  idea  of  having  parts  of  speech  •  lexical  categories,  word  classes,  “tags”,  POS  

•  Dionysius  Thrax  of  Alexandria  (c.  100  BCE):  8  parts  of  speech  •  S*ll  with  us!  But  his  8  aren’t  exactly  the  ones  we  are  taught  today  •  Thrax:  noun,  verb,  ar*cle,  adverb,  preposi*on,  conjunc*on,  par*ciple,  pronoun  

•  School  grammar:  noun,  verb,  adjec*ve,  adverb,  preposi*on,  conjunc*on,  pronoun,  interjec*on  

 

Page 3: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Open class (lexical) words

Closed class (functional)

Nouns Verbs

Proper Common

Modals

Main

Adjectives

Adverbs

Prepositions

Particles

Determiners

Conjunctions

Pronouns

… more

… more

IBM Italy

cat / cats snow

see registered

can had

old older oldest

slowly

to with

off up

the some

and or

he its

Numbers

122,312 one

Interjections Ow Eh

Page 4: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Open  vs.  Closed  classes  

•  Open  vs.  Closed  classes  •  Closed:    •  determiners:  a,  an,  the  •  pronouns:  she,  he,  I  •  preposi*ons:  on,  under,  over,  near,  by,  …  • Why  “closed”?  

•  Open:    •  Nouns,  Verbs,  Adjec*ves,  Adverbs.    

Page 5: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

POS  Tagging  

•  Words  oWen  have  more  than  one  POS:  back  •  The  back  door  =  JJ  •  On  my  back  =  NN  • Win  the  voters  back  =  RB  •  Promised  to  back  the  bill  =  VB  

•  The  POS  tagging  problem  is  to  determine  the  POS  tag  for  a  par*cular  instance  of  a  word.  

Page 6: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

POS  Tagging  

•  Input:        Plays                well                                    with    others  •  Ambiguity:    NNS/VBZ  UH/JJ/NN/RB  IN            NNS  •  Output:  Plays/VBZ  well/RB  with/IN  others/NNS  •  Uses:  

•  MT:  reordering  of  adjec*ves  and  nouns  (say  from  Spanish  to  English)  •  Text-­‐to-­‐speech  (how  do  we  pronounce  “lead”?)  •  Can  write  regexps  like  (Det)  Adj*  N+  over  the  output  for  phrases,  etc.  •  Input  to  a  syntac*c  parser  

Penn  Treebank    POS  tags  

Page 7: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

The  Penn  TreeBank  Tagset  

7  

Page 8: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Penn  Treebank  tags  

8  

Page 9: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

POS  tagging  performance  

•  How  many  tags  are  correct?    (Tag  accuracy)  •  About  97%  currently  •  But  baseline  is  already  90%  •  Baseline  is  performance  of  stupidest  possible  method  

•  Tag  every  word  with  its  most  frequent  tag  •  Tag  unknown  words  as  nouns  

•  Partly  easy  because  •  Many  words  are  unambiguous  •  You  get  points  for  them  (the,  a,  etc.)  and  for  punctua*on  marks!  

Page 10: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Deciding  on  the  correct  part  of  speech  can  be  difficult  even  for  people  

•  Mrs/NNP  Shaefer/NNP  never/RB  got/VBD  around/RP  to/TO  joining/VBG  

•  All/DT  we/PRP  goka/VBN  do/VB  is/VBZ  go/VB  around/IN  the/DT  corner/NN  

•  Chateau/NNP  Petrus/NNP  costs/VBZ  around/RB  250/CD  

Page 11: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

How  difficult  is  POS  tagging?  

•  About  11%  of  the  word  types  in  the  Brown  corpus  are  ambiguous  with  regard  to  part  of  speech  

•  But  they  tend  to  be  very  common  words.  E.g.,  that  •  I  know  that  he  is  honest  =  IN  •  Yes,  that  play  was  nice  =  DT  •  You  can’t  go  that  far  =  RB  

•  40%  of  the  word  tokens  are  ambiguous  

Page 12: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Sources  of  informaCon  

•  What  are  the  main  sources  of  informa*on  for  POS  tagging?  •  Knowledge  of  neighboring  words  •  Bill        saw          that    man  yesterday  •  NNP  NN                DT        NN      NN  •  VB          VB(D)    IN            VB        NN  

•  Knowledge  of  word  probabili*es  •  man  is  rarely  used  as  a  verb….  

•  The  laker  proves  the  most  useful,  but  the  former  also  helps  

Page 13: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

More  and  BeEer  Features  !  Feature-­‐based  tagger  

•  Can  do  surprisingly  well  just  looking  at  a  word  by  itself:  •  Word    the:  the  →  DT  •  Lowercased  word  Importantly:  importantly  →  RB  •  Prefixes    unfathomable:  un-­‐  →  JJ  •  Suffixes    Importantly:  -­‐ly  →  RB  •  Capitaliza*on  Meridian:  CAP  →  NNP  •  Word  shapes  35-­‐year:  d-­‐x  →  JJ  

•  Then  build  a  classifier  to  predict  tag  •  Maxent  P(t|w):    93.7%  overall  /  82.6%  unknown  

Page 14: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Overview: POS Tagging Accuracies

•  Rough accuracies: •  Most freq tag: ~90% / ~50%

•  Trigram HMM: ~95% / ~55% •  Maxent P(t|w): 93.7% / 82.6% •  TnT (HMM++): 96.2% / 86.0% •  MEMM tagger: 96.9% / 86.9% •  Bidirectional dependencies: 97.2% / 90.0% •  Upper bound: ~98% (human agreement)

Most  errors  on  unknown  

words  

Page 15: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

POS  tagging  as  a  sequence  classificaCon  task  

•  We  are  given  a  sentence  (an  “observa*on”  or  “sequence  of  observa*ons”)  •  Secretariat  is  expected  to  race  tomorrow  •  She  promised  to  back  the  bill  

•  What  is  the  best  sequence  of  tags  which  corresponds  to  this  sequence  of  observa*ons?  

•  Probabilis*c  view:  •  Consider  all  possible  sequences  of  tags  •  Out  of  this  universe  of  sequences,  choose  the  tag  sequence  which  is  most  probable  given  the  observa*on  sequence  of  n  words  w1…wn.  

Page 16: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

How  do  we  apply  classificaCon  to  sequences?  

Page 17: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Sequence  Labeling  as  ClassificaCon  

•  Classify  each  token  independently  but  use  as  input  features,  informa*on  about  the  surrounding  tokens  (sliding  window).  

Slide  from  Ray  Mooney  

John saw the saw and decided to take it to the table.

classifier

NNP

Page 18: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Sequence  Labeling  as  ClassificaCon  

•  Classify  each  token  independently  but  use  as  input  features,  informa*on  about  the  surrounding  tokens  (sliding  window).  

Slide  from  Ray  Mooney  

John saw the saw and decided to take it to the table.

classifier

VBD

Page 19: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Sequence  Labeling  as  ClassificaCon  

•  Classify  each  token  independently  but  use  as  input  features,  informa*on  about  the  surrounding  tokens  (sliding  window).  

Slide  from  Ray  Mooney  

John saw the saw and decided to take it to the table.

classifier

DT

Page 20: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Sequence  Labeling  as  ClassificaCon  

•  Classify  each  token  independently  but  use  as  input  features,  informa*on  about  the  surrounding  tokens  (sliding  window).  

Slide  from  Ray  Mooney  

John saw the saw and decided to take it to the table.

classifier

NN

Page 21: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Sequence  Labeling  as  ClassificaCon  

•  Classify  each  token  independently  but  use  as  input  features,  informa*on  about  the  surrounding  tokens  (sliding  window).  

Slide  from  Ray  Mooney  

John saw the saw and decided to take it to the table.

classifier

CC

Page 22: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Sequence  Labeling  as  ClassificaCon  

•  Classify  each  token  independently  but  use  as  input  features,  informa*on  about  the  surrounding  tokens  (sliding  window).  

Slide  from  Ray  Mooney  

John saw the saw and decided to take it to the table.

classifier

VBD

Page 23: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Sequence  Labeling  as  ClassificaCon  

•  Classify  each  token  independently  but  use  as  input  features,  informa*on  about  the  surrounding  tokens  (sliding  window).  

Slide  from  Ray  Mooney  

John saw the saw and decided to take it to the table.

classifier

TO

Page 24: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Sequence  Labeling  as  ClassificaCon  

•  Classify  each  token  independently  but  use  as  input  features,  informa*on  about  the  surrounding  tokens  (sliding  window).  

Slide  from  Ray  Mooney  

John saw the saw and decided to take it to the table.

classifier

VB

Page 25: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Sequence  Labeling  as  ClassificaCon  

•  Classify  each  token  independently  but  use  as  input  features,  informa*on  about  the  surrounding  tokens  (sliding  window).  

Slide  from  Ray  Mooney  

John saw the saw and decided to take it to the table.

classifier

PRP

Page 26: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Sequence  Labeling  as  ClassificaCon  

•  Classify  each  token  independently  but  use  as  input  features,  informa*on  about  the  surrounding  tokens  (sliding  window).  

Slide  from  Ray  Mooney  

John saw the saw and decided to take it to the table.

classifier

IN

Page 27: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Sequence  Labeling  as  ClassificaCon  

•  Classify  each  token  independently  but  use  as  input  features,  informa*on  about  the  surrounding  tokens  (sliding  window).  

Slide  from  Ray  Mooney  

John saw the saw and decided to take it to the table.

classifier

DT

Page 28: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Sequence  Labeling  as  ClassificaCon  

•  Classify  each  token  independently  but  use  as  input  features,  informa*on  about  the  surrounding  tokens  (sliding  window).  

Slide  from  Ray  Mooney  

John saw the saw and decided to take it to the table.

classifier

NN

Page 29: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Sequence  Labeling  as  ClassificaCon  Using  Outputs  as  Inputs  

•  Beker  input  features  are  usually  the  categories  of  the  surrounding  tokens,  but  these  are  not  available  yet.  

•  Can  use  category  of  either  the  preceding  or  succeeding  tokens  by  going  forward  or  back  and  using  previous  output.  

Slide  from  Ray  Mooney  

Page 30: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Forward  ClassificaCon  

Slide  from  Ray  Mooney  

John saw the saw and decided to take it to the table.

classifier

NNP

Page 31: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Forward  ClassificaCon  

Slide  from  Ray  Mooney  

NNP John saw the saw and decided to take it to the table.

classifier

VBD

Page 32: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Forward  ClassificaCon  

Slide  from  Ray  Mooney  

NNP VBD John saw the saw and decided to take it to the table.

classifier

DT

Page 33: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Forward  ClassificaCon  

Slide  from  Ray  Mooney  

NNP VBD DT John saw the saw and decided to take it to the table.

classifier

NN

Page 34: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Forward  ClassificaCon  

Slide  from  Ray  Mooney  

NNP VBD DT NN John saw the saw and decided to take it to the table.

classifier

CC

Page 35: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Forward  ClassificaCon  

Slide  from  Ray  Mooney  

NNP VBD DT NN CC John saw the saw and decided to take it to the table.

classifier

VBD

Page 36: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Forward  ClassificaCon  

Slide  from  Ray  Mooney  

NNP VBD DT NN CC VBD John saw the saw and decided to take it to the table.

classifier

TO

Page 37: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Forward  ClassificaCon  

Slide  from  Ray  Mooney  

NNP VBD DT NN CC VBD TO John saw the saw and decided to take it to the table.

classifier

VB

Page 38: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Backward  ClassificaCon  

•  Disambigua*ng  “to”  in  this  case  would  be  even  easier  backward.  

Slide  from  Ray  Mooney  

DT NN John saw the saw and decided to take it to the table.

classifier

IN

Page 39: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Backward  ClassificaCon  

•  Disambigua*ng  “to”  in  this  case  would  be  even  easier  backward.  

Slide  from  Ray  Mooney  

IN DT NN John saw the saw and decided to take it to the table.

classifier

PRP

Page 40: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Backward  ClassificaCon  

•  Disambigua*ng  “to”  in  this  case  would  be  even  easier  backward.  

Slide  from  Ray  Mooney  

PRP IN DT NN John saw the saw and decided to take it to the table.

classifier

VB

Page 41: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Backward  ClassificaCon  

•  Disambigua*ng  “to”  in  this  case  would  be  even  easier  backward.  

Slide  from  Ray  Mooney  

VB PRP IN DT NN John saw the saw and decided to take it to the table.

classifier

TO

Page 42: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Backward  ClassificaCon  

•  Disambigua*ng  “to”  in  this  case  would  be  even  easier  backward.  

Slide  from  Ray  Mooney  

TO VB PRP IN DT NN John saw the saw and decided to take it to the table.

classifier

VBD

Page 43: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Backward  ClassificaCon  

•  Disambigua*ng  “to”  in  this  case  would  be  even  easier  backward.  

Slide  from  Ray  Mooney  

VBD TO VB PRP IN DT NN John saw the saw and decided to take it to the table.

classifier

CC

Page 44: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Backward  ClassificaCon  

•  Disambigua*ng  “to”  in  this  case  would  be  even  easier  backward.  

Slide  from  Ray  Mooney  

CC VBD TO VB PRP IN DT NN John saw the saw and decided to take it to the table.

classifier

VBD

Page 45: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Backward  ClassificaCon  

•  Disambigua*ng  “to”  in  this  case  would  be  even  easier  backward.  

Slide  from  Ray  Mooney  

VBD CC VBD TO VB PRP IN DT NN John saw the saw and decided to take it to the table.

classifier

DT

Page 46: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Backward  ClassificaCon  

•  Disambigua*ng  “to”  in  this  case  would  be  even  easier  backward.  

Slide  from  Ray  Mooney  

DT VBD CC VBD TO VB PRP IN DT NN John saw the saw and decided to take it to the table.

classifier

VBD

Page 47: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Backward  ClassificaCon  

•  Disambigua*ng  “to”  in  this  case  would  be  even  easier  backward.  

Slide  from  Ray  Mooney  

VBD DT VBD CC VBD TO VB PRP IN DT NN John saw the saw and decided to take it to the table.

classifier

NNP

Page 48: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

The  Maximum  Entropy  Markov  Model  (MEMM)  

•  A  sequence  version  of  the  logis*c  regression  (also  called  maximum  entropy)  classifier.  

•  Find  the  best  series  of  tags:  

48  

Page 49: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

The  Maximum  Entropy  Markov  Model  (MEMM)  

49  

will

MD VB

Janet back the bill

NNP

<s>

wi wi+1wi-1

ti-1ti-2

wi-1

Page 50: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

Features  for  the  classifier  at  each  tag  

50  

will

MD VB

Janet back the bill

NNP

<s>

wi wi+1wi-1

ti-1ti-2

wi-1

Page 51: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

More  features  

51  

Page 52: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

MEMM  computes  the  best  tag  sequence  

52  

Page 53: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

MEMM  Decoding  

•  Simplest  algorithm:  

•  What  we  use  in  prac*ce:  The  Viterbi  algorithm  •  A  version  of  the  same  dynamic  programming  algorithm  we  used  

to  compute  minimum  edit  distance.  53  

Page 54: Partofspeech- tagging · Open class (lexical) words Closed class (functional) Nouns Verbs Proper Common Modals Main Adjectives Adverbs Prepositions Particles Determiners Conjunctions

The  Stanford  Tagger  

•  Is  a  bidirec*onal  version  of  the  MEMM  called  a  cyclic  dependency  network  

•  Stanford  tagger:  •  hkp://nlp.stanford.edu/soWware/tagger.shtml  

54