SlideShare a Scribd company logo
1
Morphology
September
2009
Lecture #4
2
What is Morphology?
• The study of how words are composed of
morphemes (the smallest meaning-bearing units of a
language)
– Stems – core meaning units in a lexicon
– Affixes (prefixes, suffixes, infixes, circumfixes) – bits and
pieces that combine with stems to modify their meanings
and grammatical functions (can have multiple ones)
• Immaterial
• Trying
• Absobl**dylutely
• agoing
• Unreadable
3
Why is Morphology Important to the
Lexicon?
Full listing versus Minimal Redundancy
• true, truer, truest, truly, untrue, truth, truthful,
truthfully, untruthfully, untruthfulness
• Untruthfulness = un- + true + -th + -ful + -ness
• These morphemes appear to be productive
• By representing knowledge about the internal
structure of words and the rules of word formation,
we can save room and search time.
4
Need to do Morphological Parsing
Morphological Parsing (or Stemming)
• Taking a surface input and breaking it down into its
morphemes
• foxes breaks down into the morphemes fox (noun
stem) and –es (plural suffix)
• rewrites breaks down into re- (prefix) and write (stem)
and –s (suffix)
5
Two Broad Classes of Morphology
• Inflectional Morphology
– Combination of stem and morpheme resulting in word of
same class
– Usually fills a syntactic feature such as agreement
– E.g., plural –s, past tense -ed
• Derivational Morphology
– Combination of stem and morpheme usually results in a
word of a different class
– Meaning of the new word may be hard to predict
– E.g., +ation in words such as computerization
6
Word Classes
• By word class, we have in mind familiar notions like
noun and verb that we discussed a bit in the previous
lecture.
• We’ll go into more details when we get to parsing
(Chapter 12).
• Right now we’re concerned with word classes
because the way that stems and affixes combine is
based to a large degree on the word class of the
stem.
7
English Inflectional Morphology
• Word stem combines with grammatical morpheme
– Usually produces word of same class
– Usually serves a syntactic function (e.g., agreement)
like  likes or liked
bird  birds
• Nominal morphology
– Plural forms
• s or es
• Irregular forms (next slide)
• Mass vs. count nouns (email or emails)
– Possessives
8
Complication in Morphology
• Ok so it gets a little complicated by the fact that some
words misbehave (refuse to follow the rules)
• The terms regular and irregular will be used to refer
to words that follow the rules and those that don’t.
Regular (Nouns)
• Singular (cat, thrush)
• Plural (cats, thrushes)
• Possessive (cat’s thrushes’)
Irregular (Nouns)
• Singular (mouse, ox)
• Plural (mice, oxen)
9
• Verbal inflection
– Main verbs (sleep, like, fear) are relatively regular
• -s, ing, ed
• And productive: Emailed, instant-messaged, faxed,
homered
• But eat/ate/eaten, catch/caught/caught
– Primary (be, have, do) and modal verbs (can, will, must) are
often irregular and not productive
• Be: am/is/are/were/was/been/being
– Irregular verbs few (~250) but frequently occurring
– English verbal inflection is much simpler than e.g. Latin
10
Regular and Irregular Verbs
• Regulars…
– Walk, walks, walking, walked, walked
• Irregulars
– Eat, eats, eating, ate, eaten
– Catch, catches, catching, caught, caught
– Cut, cuts, cutting, cut, cut
11
Derivational Morphology
• Derivational morphology is the messy stuff that no
one ever taught you.
– Quasi-systematicity
– Irregular meaning change
– Changes of word class
12
English Derivational Morphology
• Word stem combines with grammatical morpheme
– Usually produces a word of a different class
– More complicated than inflectional
• Example: nominalization
– -ize verbs  -ation nouns
– generalize, realize  generalization, realization
– verb  -er nouns
– Murder, spell  murderer, speller
• Example: verbs, nouns  adjectives
– embrace, pity embraceable, pitiable
– care, wit  careless, witless
13
• Example: adjective  adverb
– happy  happily
• More complicated to model than inflection
– Less productive: *science-less, *concern-less, *go-able,
*sleep-able
– Meanings of derived terms harder to predict by rule
• clueless, careless, nerveless
14
Derivational Examples
• Verb/Adj to Noun
-ation computerize computerization
-ee appoint appointee
-er kill killer
-ness fuzzy fuzziness
15
Derivational Examples
• Noun/Verb to Adj
-al Computation Computational
-able Embrace Embraceable
-less Clue Clueless
16
Compute
• Many paths are possible…
• Start with compute
– Computer -> computerize -> computerization
– Computation -> computational
– Computer -> computerize -> computerizable
– Compute -> computee
17
How do people represent words?
• Hypotheses:
– Full listing hypothesis: words listed
– Minimum redundancy hypothesis: morphemes listed
• Experimental evidence:
– Priming experiments (Does seeing/hearing one word
facilitate recognition of another?) suggest neither
• Regularly inflected forms prime stem but not derived forms
• But spoken derived words can prime stems if they are
semantically close (e.g. government/govern but not
department/depart)
18
• Speech errors suggest affixes must be represented
separately in the mental lexicon
– easy enoughly
19
Parsing
• Taking a surface input and identifying its components
and underlying structure
• Morphological parsing: parsing a word into stem and
affixes and identifying the parts and their
relationships
– Stem and features:
• goose  goose +N +SG or goose +V
• geese  goose +N +PL
• gooses  goose +V +3SG
– Bracketing: indecipherable  [in [[de [cipher]] able]]
20
Why parse words?
• For spell-checking
– Is muncheble a legal word?
• To identify a word’s part-of-speech (pos)
– For sentence parsing, for machine translation, …
• To identify a word’s stem
– For information retrieval
21
What do we need to build a
morphological parser?
• Lexicon: stems and affixes (w/ corresponding pos)
• Morphotactics of the language: model of how
morphemes can be affixed to a stem. E.g., plural
morpheme follows noun in English
• Orthographic rules: spelling modifications that occur
when affixation occurs
– in  il in context of l (in- + legal)
22
Morphotactic Models
• English nominal inflection
q0 q2
q1
plural (-s)
reg-n
irreg-sg-n
irreg-pl-n
•Inputs: cats, goose, geese
23
Antworth data on English Adjectives
• Big, bigger, biggest
• Cool, cooler, coolest, cooly
• Red, redder, reddest
• Clear, clearer, clearest, clearly, unclear, unclearly
• Happy, happier, happiest, happily
• Unhappy, unhappier, unhappiest, unhappily
• Real, unreal, really
24
Antworth data on English Adjectives
• Big, bigger, biggest
• Cool, cooler, coolest, cooly
• Red, redder, reddest
• Clear, clearer, clearest, clearly, unclear, unclearly
• Happy, happier, happiest, happily
• Unhappy, unhappier, unhappiest, unhappily
• Real, unreal, really
25
Antworth data on English Adjectives
• Big, bigger, biggest
• Cool, cooler, coolest, cooly
• Red, redder, reddest
• Clear, clearer, clearest, clearly, unclear, unclearly
• Happy, happier, happiest, happily
• Unhappy, unhappier, unhappiest, unhappily
• Real, unreal, really
26
Antworth data on English Adjectives
• Big, bigger, biggest
• Cool, cooler, coolest, cooly
• Red, redder, reddest
• Clear, clearer, clearest, clearly, unclear, unclearly
• Happy, happier, happiest, happily
• Unhappy, unhappier, unhappiest, unhappily
• Real, unreal, really
27
Antworth data on English Adjectives
• Big, bigger, biggest
• Cool, cooler, coolest, cooly
• Red, redder, reddest
• Clear, clearer, clearest, clearly, unclear, unclearly
• Happy, happier, happiest, happily
• Unhappy, unhappier, unhappiest, unhappily
• Real, unreal, really
28
Antworth data on English Adjectives
• Big, bigger, biggest
• Cool, cooler, coolest, cooly
• Red, redder, reddest
• Clear, clearer, clearest, clearly, unclear, unclearly
• Happy, happier, happiest, happily
• Unhappy, unhappier, unhappiest, unhappily
• Real, unreal, really
29
• Derivational morphology: adjective fragment
q5
q0
q1 q2
un-
adj-root
-er, -ly, -est

• Adj-root: clear, happy, real, big, red
30
• Derivational morphology: adjective fragment
q5
q0
q1 q2
un-
adj-root
-er, -ly, -est

• Adj-root: clear, happy, real, big, red
•BUT: unbig, redly, realest
31
Antworth data on English Adjectives
• Big, bigger, biggest
• Cool, cooler, coolest, cooly
• Red, redder, reddest
• Clear, clearer, clearest, clearly, unclear, unclearly
• Happy, happier, happiest, happily
• Unhappy, unhappier, unhappiest, unhappily
• Real, unreal, really
32
Antworth data on English Adjectives
• Big, bigger, biggest
• Cool, cooler, coolest, cooly
• Red, redder, reddest
• Clear, clearer, clearest, clearly, unclear, unclearly
• Happy, happier, happiest, happily
• Unhappy, unhappier, unhappiest, unhappily
• Real, unreal, really
33
• Derivational morphology: adjective fragment
q3
q5
q4
q0
q1 q2
un-
adj-root1
-er, -ly, -est

adj-root1
adj-root2
-er, -est
• Adj-root1: clear, happy, real
• Adj-root2: big, red
34
FSAs and the Lexicon
• First we’ll capture the morphotactics
– The rules governing the ordering of affixes in a language.
• Then we’ll add in the actual words
35
Using FSAs to Represent the
Lexicon and Do Morphological
Recognition
• Lexicon: We can expand each non-terminal in our
NFSA into each stem in its class (e.g. adj_root2 =
{big, red}) and expand each such stem to the letters it
includes (e.g. red  r e d, big  b i g)
q0
q1
ε
r e
q2
q4
q3
-er, -est
d
b
g
q5
q6
i
q7
36
Limitations
• To cover all of e.g. English will require very large
FSAs with consequent search problems
– Adding new items to the lexicon means recomputing the
FSA
– Non-determinism
• FSAs can only tell us whether a word is in the
language or not – what if we want to know more?
– What is the stem?
– What are the affixes and what sort are they?
– We used this information to build our FSA: can we get it
back?
37
Parsing/Generation
vs. Recognition
• Recognition is usually not quite what we need.
– Usually if we find some string in the language we need to find the
structure in it (parsing)
– Or we have some structure and we want to produce a surface form
(production/generation)
• Example
– From “cats” to “cat +N +PL”
38
Finite State Transducers
• The simple story
– Add another tape
– Add extra symbols to the transitions
– On one tape we read “cats”, on the other we write “cat +N
+PL”
39
Parsing with Finite State
Transducers
• cats cat +N +PL
• Kimmo Koskenniemi’s two-level morphology
– Words represented as correspondences between lexical
level (the morphemes) and surface level (the orthographic
word)
– Morphological parsing :building mappings between the
lexical and surface levels
c a t +N +PL
c a t s
40
Finite State Transducers
• FSTs map between one set of symbols and another
using an FSA whose alphabet  is composed of pairs
of symbols from input and output alphabets
• In general, FSTs can be used for
– Translator (Hello:Ciao)
– Parser/generator (Hello:How may I help you?)
– To map between the lexical and surface levels of Kimmo’s
2-level morphology
41
• FST is a 5-tuple consisting of
– Q: set of states {q0,q1,q2,q3,q4}
– : an alphabet of complex symbols, each an i/o pair s.t. i  I
(an input alphabet) and o  O (an output alphabet) and  is
in I x O
– q0: a start state
– F: a set of final states in Q {q4}
– (q,i:o): a transition function mapping Q x  to Q
– Emphatic Sheep  Quizzical Cow
q0 q4
q1 q2 q3
b:m a:o
a:o
a:o !:?
42
Transitions
• c:c means read a c on one tape and write a c on the other
• +N:ε means read a +N symbol on one tape and write nothing on
the other
• +PL:s means read +PL and write an s
c:c a:a t:t +N:ε +PL:s
43
FST for a 2-level Lexicon
• E.g.
Reg-n Irreg-pl-n Irreg-sg-n
c a t g o:e o:e s e g o o s e
q0 q1 q2 q3
c a t
q1 q3 q4
q2
s
e:o e:o e
q0 q5
g
44
FST for English Nominal
Inflection
q0 q7
+PL:^s#
Combining (cascade or composition) this FSA
with FSAs for each noun type replaces e.g. reg-
n with every regular noun representation in the
lexicon
q1 q4
q2 q5
q3 q6
reg-n
irreg-n-sg
irreg-n-pl
+N:
+PL:#
+SG:#
+SG:#
+N:
+N:
45
The Gory Details
• Of course, its not as easy as
– “cat +N +PL” <-> “cats”
• Or even dealing with the irregulars geese, mice and
oxen
• But there are also a whole host of
spelling/pronunciation changes that go along with
inflectional changes
46
Multi-Tape Machines
• To deal with this we can simply add more tapes and
use the output of one tape machine as the input to
the next
• So to handle irregular spelling changes we’ll add
intermediate tapes with intermediate symbols
47
Multi-Level Tape Machines
• We use one machine to transduce between the lexical and the
intermediate level, and another to handle the spelling changes
to the surface tape
48
Orthographic Rules and FSTs
• Define additional FSTs to implement rules such as
consonant doubling (beg  begging), ‘e’ deletion
(make  making), ‘e’ insertion (watch  watches),
etc.
Lexical
f o x +N +PL
Intermediate
f o x ^ s #
Surface
f o x e s
49
Lexical to Intermediate Level
50
Intermediate to Surface
• The add an “e” rule as in fox^s# <-> foxes
51
Note
• A key feature of this machine is that it doesn’t do
anything to inputs to which it doesn’t apply.
• Meaning that they are written out unchanged to the
output tape.
52
53
54
• Note: These FSTs can be used for generation as well
as recognition by simply exchanging the input and
output alphabets (e.g. ^s#:+PL)
55
Summing Up
• FSTs provide a useful tool for implementing a
standard model of morphological analysis, Kimmo’s
two-level morphology
– Key is to provide an FST for each of multiple levels of
representation and then to combine those FSTs using a
variety of operators (cf AT&T FSM Toolkit)
– Other (older) approaches are still widely used, e.g. the rule-
based Porter Stemmer

More Related Content

PPTX
Computational Linguistics - Finite State Automata
blacksimos
 
PPTX
Words _Transducers Finite state transducers in natural language processing
Kirti Verma
 
PDF
MorphologyAndFST.pdf
ssuser97943d
 
PPTX
chapter4.pptx natural language processing
ssuser77162c
 
PPTX
Chapter 5.1.pptx
brianjars
 
PDF
語言學概論Morphology 2
Ja-Jun Liao
 
PPTX
NLP topic CHAPTER 2_word level analysis.pptx
mohdumaira1
 
PPTX
MORPHOLOGICAL PROCESSING OF INDIAN LANGUAGRES
RahulC75
 
Computational Linguistics - Finite State Automata
blacksimos
 
Words _Transducers Finite state transducers in natural language processing
Kirti Verma
 
MorphologyAndFST.pdf
ssuser97943d
 
chapter4.pptx natural language processing
ssuser77162c
 
Chapter 5.1.pptx
brianjars
 
語言學概論Morphology 2
Ja-Jun Liao
 
NLP topic CHAPTER 2_word level analysis.pptx
mohdumaira1
 
MORPHOLOGICAL PROCESSING OF INDIAN LANGUAGRES
RahulC75
 

Similar to lect4-morphology.ppt (20)

PPTX
Su 2012 ss morphology pp
Christian Añamisi
 
PDF
207 morphbooklet
Ignatius Joseph Estroga
 
PPTX
NLP_KASHK:Morphology
Hemantha Kulathilake
 
PPT
Morphology.ppt
RamandeepKaur724335
 
PPT
Morphemes & Types of morphemes
MahrukhShehzadi1
 
PPTX
GL_Day 6.pptxmmmmmmmmmmmmmmmmmmmmmmmmmmm
FaheemHyder2
 
PDF
Morpho 12 13
blessedkkr
 
PPTX
The_Architecture_of_Words_Understanding_English_Morphology.pptx
King Saud University
 
PPT
17136455.ppt
blreedshadow
 
PDF
Chapter 4
Anh Le
 
PPTX
Morphology
Pun Yanut
 
PDF
Linguistic 06.08
Phonl CL
 
PPTX
A Brief Introduction of Morphology
amna-shahid
 
PPTX
Morphology
weniananta
 
PPT
Morphology2
Jahanzeb Jahan
 
PPT
Introduction to Morphology and the Classification of Morphemes
anushadasbmc12
 
PPT
English morphology–lecture2
Linda Julie
 
PDF
Basic concepts-Sarah Saneei
SRah Sanei
 
PPT
Morphology 2018
SamerYaqoob
 
Su 2012 ss morphology pp
Christian Añamisi
 
207 morphbooklet
Ignatius Joseph Estroga
 
NLP_KASHK:Morphology
Hemantha Kulathilake
 
Morphology.ppt
RamandeepKaur724335
 
Morphemes & Types of morphemes
MahrukhShehzadi1
 
GL_Day 6.pptxmmmmmmmmmmmmmmmmmmmmmmmmmmm
FaheemHyder2
 
Morpho 12 13
blessedkkr
 
The_Architecture_of_Words_Understanding_English_Morphology.pptx
King Saud University
 
17136455.ppt
blreedshadow
 
Chapter 4
Anh Le
 
Morphology
Pun Yanut
 
Linguistic 06.08
Phonl CL
 
A Brief Introduction of Morphology
amna-shahid
 
Morphology
weniananta
 
Morphology2
Jahanzeb Jahan
 
Introduction to Morphology and the Classification of Morphemes
anushadasbmc12
 
English morphology–lecture2
Linda Julie
 
Basic concepts-Sarah Saneei
SRah Sanei
 
Morphology 2018
SamerYaqoob
 
Ad

More from Krismalita (7)

PPT
MORPHOLOGY.ppt
Krismalita
 
PPTX
Reported speech.pptx
Krismalita
 
PPTX
This, That, These, Those.pptx
Krismalita
 
PPTX
Singluar and Plural.pptx
Krismalita
 
PPTX
Adjetive Clause.pptx
Krismalita
 
PPTX
Narrative Text.pptx
Krismalita
 
PPTX
The Ice Hotel.pptx
Krismalita
 
MORPHOLOGY.ppt
Krismalita
 
Reported speech.pptx
Krismalita
 
This, That, These, Those.pptx
Krismalita
 
Singluar and Plural.pptx
Krismalita
 
Adjetive Clause.pptx
Krismalita
 
Narrative Text.pptx
Krismalita
 
The Ice Hotel.pptx
Krismalita
 
Ad

Recently uploaded (20)

PPTX
Artificial Intelligence in Gastroentrology: Advancements and Future Presprec...
AyanHossain
 
PPTX
Artificial-Intelligence-in-Drug-Discovery by R D Jawarkar.pptx
Rahul Jawarkar
 
DOCX
Unit 5: Speech-language and swallowing disorders
JELLA VISHNU DURGA PRASAD
 
PPTX
Dakar Framework Education For All- 2000(Act)
santoshmohalik1
 
PDF
What is CFA?? Complete Guide to the Chartered Financial Analyst Program
sp4989653
 
PPTX
20250924 Navigating the Future: How to tell the difference between an emergen...
McGuinness Institute
 
PPTX
Command Palatte in Odoo 18.1 Spreadsheet - Odoo Slides
Celine George
 
PDF
Biological Classification Class 11th NCERT CBSE NEET.pdf
NehaRohtagi1
 
PPTX
family health care settings home visit - unit 6 - chn 1 - gnm 1st year.pptx
Priyanshu Anand
 
PPTX
Introduction to pediatric nursing in 5th Sem..pptx
AneetaSharma15
 
PPTX
An introduction to Dialogue writing.pptx
drsiddhantnagine
 
PPTX
How to Close Subscription in Odoo 18 - Odoo Slides
Celine George
 
PPTX
Gupta Art & Architecture Temple and Sculptures.pptx
Virag Sontakke
 
PPTX
How to Track Skills & Contracts Using Odoo 18 Employee
Celine George
 
PPTX
Basics and rules of probability with real-life uses
ravatkaran694
 
PDF
Health-The-Ultimate-Treasure (1).pdf/8th class science curiosity /samyans edu...
Sandeep Swamy
 
PPTX
Continental Accounting in Odoo 18 - Odoo Slides
Celine George
 
PPTX
Cleaning Validation Ppt Pharmaceutical validation
Ms. Ashatai Patil
 
DOCX
SAROCES Action-Plan FOR ARAL PROGRAM IN DEPED
Levenmartlacuna1
 
DOCX
Modul Ajar Deep Learning Bahasa Inggris Kelas 11 Terbaru 2025
wahyurestu63
 
Artificial Intelligence in Gastroentrology: Advancements and Future Presprec...
AyanHossain
 
Artificial-Intelligence-in-Drug-Discovery by R D Jawarkar.pptx
Rahul Jawarkar
 
Unit 5: Speech-language and swallowing disorders
JELLA VISHNU DURGA PRASAD
 
Dakar Framework Education For All- 2000(Act)
santoshmohalik1
 
What is CFA?? Complete Guide to the Chartered Financial Analyst Program
sp4989653
 
20250924 Navigating the Future: How to tell the difference between an emergen...
McGuinness Institute
 
Command Palatte in Odoo 18.1 Spreadsheet - Odoo Slides
Celine George
 
Biological Classification Class 11th NCERT CBSE NEET.pdf
NehaRohtagi1
 
family health care settings home visit - unit 6 - chn 1 - gnm 1st year.pptx
Priyanshu Anand
 
Introduction to pediatric nursing in 5th Sem..pptx
AneetaSharma15
 
An introduction to Dialogue writing.pptx
drsiddhantnagine
 
How to Close Subscription in Odoo 18 - Odoo Slides
Celine George
 
Gupta Art & Architecture Temple and Sculptures.pptx
Virag Sontakke
 
How to Track Skills & Contracts Using Odoo 18 Employee
Celine George
 
Basics and rules of probability with real-life uses
ravatkaran694
 
Health-The-Ultimate-Treasure (1).pdf/8th class science curiosity /samyans edu...
Sandeep Swamy
 
Continental Accounting in Odoo 18 - Odoo Slides
Celine George
 
Cleaning Validation Ppt Pharmaceutical validation
Ms. Ashatai Patil
 
SAROCES Action-Plan FOR ARAL PROGRAM IN DEPED
Levenmartlacuna1
 
Modul Ajar Deep Learning Bahasa Inggris Kelas 11 Terbaru 2025
wahyurestu63
 

lect4-morphology.ppt

  • 2. 2 What is Morphology? • The study of how words are composed of morphemes (the smallest meaning-bearing units of a language) – Stems – core meaning units in a lexicon – Affixes (prefixes, suffixes, infixes, circumfixes) – bits and pieces that combine with stems to modify their meanings and grammatical functions (can have multiple ones) • Immaterial • Trying • Absobl**dylutely • agoing • Unreadable
  • 3. 3 Why is Morphology Important to the Lexicon? Full listing versus Minimal Redundancy • true, truer, truest, truly, untrue, truth, truthful, truthfully, untruthfully, untruthfulness • Untruthfulness = un- + true + -th + -ful + -ness • These morphemes appear to be productive • By representing knowledge about the internal structure of words and the rules of word formation, we can save room and search time.
  • 4. 4 Need to do Morphological Parsing Morphological Parsing (or Stemming) • Taking a surface input and breaking it down into its morphemes • foxes breaks down into the morphemes fox (noun stem) and –es (plural suffix) • rewrites breaks down into re- (prefix) and write (stem) and –s (suffix)
  • 5. 5 Two Broad Classes of Morphology • Inflectional Morphology – Combination of stem and morpheme resulting in word of same class – Usually fills a syntactic feature such as agreement – E.g., plural –s, past tense -ed • Derivational Morphology – Combination of stem and morpheme usually results in a word of a different class – Meaning of the new word may be hard to predict – E.g., +ation in words such as computerization
  • 6. 6 Word Classes • By word class, we have in mind familiar notions like noun and verb that we discussed a bit in the previous lecture. • We’ll go into more details when we get to parsing (Chapter 12). • Right now we’re concerned with word classes because the way that stems and affixes combine is based to a large degree on the word class of the stem.
  • 7. 7 English Inflectional Morphology • Word stem combines with grammatical morpheme – Usually produces word of same class – Usually serves a syntactic function (e.g., agreement) like  likes or liked bird  birds • Nominal morphology – Plural forms • s or es • Irregular forms (next slide) • Mass vs. count nouns (email or emails) – Possessives
  • 8. 8 Complication in Morphology • Ok so it gets a little complicated by the fact that some words misbehave (refuse to follow the rules) • The terms regular and irregular will be used to refer to words that follow the rules and those that don’t. Regular (Nouns) • Singular (cat, thrush) • Plural (cats, thrushes) • Possessive (cat’s thrushes’) Irregular (Nouns) • Singular (mouse, ox) • Plural (mice, oxen)
  • 9. 9 • Verbal inflection – Main verbs (sleep, like, fear) are relatively regular • -s, ing, ed • And productive: Emailed, instant-messaged, faxed, homered • But eat/ate/eaten, catch/caught/caught – Primary (be, have, do) and modal verbs (can, will, must) are often irregular and not productive • Be: am/is/are/were/was/been/being – Irregular verbs few (~250) but frequently occurring – English verbal inflection is much simpler than e.g. Latin
  • 10. 10 Regular and Irregular Verbs • Regulars… – Walk, walks, walking, walked, walked • Irregulars – Eat, eats, eating, ate, eaten – Catch, catches, catching, caught, caught – Cut, cuts, cutting, cut, cut
  • 11. 11 Derivational Morphology • Derivational morphology is the messy stuff that no one ever taught you. – Quasi-systematicity – Irregular meaning change – Changes of word class
  • 12. 12 English Derivational Morphology • Word stem combines with grammatical morpheme – Usually produces a word of a different class – More complicated than inflectional • Example: nominalization – -ize verbs  -ation nouns – generalize, realize  generalization, realization – verb  -er nouns – Murder, spell  murderer, speller • Example: verbs, nouns  adjectives – embrace, pity embraceable, pitiable – care, wit  careless, witless
  • 13. 13 • Example: adjective  adverb – happy  happily • More complicated to model than inflection – Less productive: *science-less, *concern-less, *go-able, *sleep-able – Meanings of derived terms harder to predict by rule • clueless, careless, nerveless
  • 14. 14 Derivational Examples • Verb/Adj to Noun -ation computerize computerization -ee appoint appointee -er kill killer -ness fuzzy fuzziness
  • 15. 15 Derivational Examples • Noun/Verb to Adj -al Computation Computational -able Embrace Embraceable -less Clue Clueless
  • 16. 16 Compute • Many paths are possible… • Start with compute – Computer -> computerize -> computerization – Computation -> computational – Computer -> computerize -> computerizable – Compute -> computee
  • 17. 17 How do people represent words? • Hypotheses: – Full listing hypothesis: words listed – Minimum redundancy hypothesis: morphemes listed • Experimental evidence: – Priming experiments (Does seeing/hearing one word facilitate recognition of another?) suggest neither • Regularly inflected forms prime stem but not derived forms • But spoken derived words can prime stems if they are semantically close (e.g. government/govern but not department/depart)
  • 18. 18 • Speech errors suggest affixes must be represented separately in the mental lexicon – easy enoughly
  • 19. 19 Parsing • Taking a surface input and identifying its components and underlying structure • Morphological parsing: parsing a word into stem and affixes and identifying the parts and their relationships – Stem and features: • goose  goose +N +SG or goose +V • geese  goose +N +PL • gooses  goose +V +3SG – Bracketing: indecipherable  [in [[de [cipher]] able]]
  • 20. 20 Why parse words? • For spell-checking – Is muncheble a legal word? • To identify a word’s part-of-speech (pos) – For sentence parsing, for machine translation, … • To identify a word’s stem – For information retrieval
  • 21. 21 What do we need to build a morphological parser? • Lexicon: stems and affixes (w/ corresponding pos) • Morphotactics of the language: model of how morphemes can be affixed to a stem. E.g., plural morpheme follows noun in English • Orthographic rules: spelling modifications that occur when affixation occurs – in  il in context of l (in- + legal)
  • 22. 22 Morphotactic Models • English nominal inflection q0 q2 q1 plural (-s) reg-n irreg-sg-n irreg-pl-n •Inputs: cats, goose, geese
  • 23. 23 Antworth data on English Adjectives • Big, bigger, biggest • Cool, cooler, coolest, cooly • Red, redder, reddest • Clear, clearer, clearest, clearly, unclear, unclearly • Happy, happier, happiest, happily • Unhappy, unhappier, unhappiest, unhappily • Real, unreal, really
  • 24. 24 Antworth data on English Adjectives • Big, bigger, biggest • Cool, cooler, coolest, cooly • Red, redder, reddest • Clear, clearer, clearest, clearly, unclear, unclearly • Happy, happier, happiest, happily • Unhappy, unhappier, unhappiest, unhappily • Real, unreal, really
  • 25. 25 Antworth data on English Adjectives • Big, bigger, biggest • Cool, cooler, coolest, cooly • Red, redder, reddest • Clear, clearer, clearest, clearly, unclear, unclearly • Happy, happier, happiest, happily • Unhappy, unhappier, unhappiest, unhappily • Real, unreal, really
  • 26. 26 Antworth data on English Adjectives • Big, bigger, biggest • Cool, cooler, coolest, cooly • Red, redder, reddest • Clear, clearer, clearest, clearly, unclear, unclearly • Happy, happier, happiest, happily • Unhappy, unhappier, unhappiest, unhappily • Real, unreal, really
  • 27. 27 Antworth data on English Adjectives • Big, bigger, biggest • Cool, cooler, coolest, cooly • Red, redder, reddest • Clear, clearer, clearest, clearly, unclear, unclearly • Happy, happier, happiest, happily • Unhappy, unhappier, unhappiest, unhappily • Real, unreal, really
  • 28. 28 Antworth data on English Adjectives • Big, bigger, biggest • Cool, cooler, coolest, cooly • Red, redder, reddest • Clear, clearer, clearest, clearly, unclear, unclearly • Happy, happier, happiest, happily • Unhappy, unhappier, unhappiest, unhappily • Real, unreal, really
  • 29. 29 • Derivational morphology: adjective fragment q5 q0 q1 q2 un- adj-root -er, -ly, -est  • Adj-root: clear, happy, real, big, red
  • 30. 30 • Derivational morphology: adjective fragment q5 q0 q1 q2 un- adj-root -er, -ly, -est  • Adj-root: clear, happy, real, big, red •BUT: unbig, redly, realest
  • 31. 31 Antworth data on English Adjectives • Big, bigger, biggest • Cool, cooler, coolest, cooly • Red, redder, reddest • Clear, clearer, clearest, clearly, unclear, unclearly • Happy, happier, happiest, happily • Unhappy, unhappier, unhappiest, unhappily • Real, unreal, really
  • 32. 32 Antworth data on English Adjectives • Big, bigger, biggest • Cool, cooler, coolest, cooly • Red, redder, reddest • Clear, clearer, clearest, clearly, unclear, unclearly • Happy, happier, happiest, happily • Unhappy, unhappier, unhappiest, unhappily • Real, unreal, really
  • 33. 33 • Derivational morphology: adjective fragment q3 q5 q4 q0 q1 q2 un- adj-root1 -er, -ly, -est  adj-root1 adj-root2 -er, -est • Adj-root1: clear, happy, real • Adj-root2: big, red
  • 34. 34 FSAs and the Lexicon • First we’ll capture the morphotactics – The rules governing the ordering of affixes in a language. • Then we’ll add in the actual words
  • 35. 35 Using FSAs to Represent the Lexicon and Do Morphological Recognition • Lexicon: We can expand each non-terminal in our NFSA into each stem in its class (e.g. adj_root2 = {big, red}) and expand each such stem to the letters it includes (e.g. red  r e d, big  b i g) q0 q1 ε r e q2 q4 q3 -er, -est d b g q5 q6 i q7
  • 36. 36 Limitations • To cover all of e.g. English will require very large FSAs with consequent search problems – Adding new items to the lexicon means recomputing the FSA – Non-determinism • FSAs can only tell us whether a word is in the language or not – what if we want to know more? – What is the stem? – What are the affixes and what sort are they? – We used this information to build our FSA: can we get it back?
  • 37. 37 Parsing/Generation vs. Recognition • Recognition is usually not quite what we need. – Usually if we find some string in the language we need to find the structure in it (parsing) – Or we have some structure and we want to produce a surface form (production/generation) • Example – From “cats” to “cat +N +PL”
  • 38. 38 Finite State Transducers • The simple story – Add another tape – Add extra symbols to the transitions – On one tape we read “cats”, on the other we write “cat +N +PL”
  • 39. 39 Parsing with Finite State Transducers • cats cat +N +PL • Kimmo Koskenniemi’s two-level morphology – Words represented as correspondences between lexical level (the morphemes) and surface level (the orthographic word) – Morphological parsing :building mappings between the lexical and surface levels c a t +N +PL c a t s
  • 40. 40 Finite State Transducers • FSTs map between one set of symbols and another using an FSA whose alphabet  is composed of pairs of symbols from input and output alphabets • In general, FSTs can be used for – Translator (Hello:Ciao) – Parser/generator (Hello:How may I help you?) – To map between the lexical and surface levels of Kimmo’s 2-level morphology
  • 41. 41 • FST is a 5-tuple consisting of – Q: set of states {q0,q1,q2,q3,q4} – : an alphabet of complex symbols, each an i/o pair s.t. i  I (an input alphabet) and o  O (an output alphabet) and  is in I x O – q0: a start state – F: a set of final states in Q {q4} – (q,i:o): a transition function mapping Q x  to Q – Emphatic Sheep  Quizzical Cow q0 q4 q1 q2 q3 b:m a:o a:o a:o !:?
  • 42. 42 Transitions • c:c means read a c on one tape and write a c on the other • +N:ε means read a +N symbol on one tape and write nothing on the other • +PL:s means read +PL and write an s c:c a:a t:t +N:ε +PL:s
  • 43. 43 FST for a 2-level Lexicon • E.g. Reg-n Irreg-pl-n Irreg-sg-n c a t g o:e o:e s e g o o s e q0 q1 q2 q3 c a t q1 q3 q4 q2 s e:o e:o e q0 q5 g
  • 44. 44 FST for English Nominal Inflection q0 q7 +PL:^s# Combining (cascade or composition) this FSA with FSAs for each noun type replaces e.g. reg- n with every regular noun representation in the lexicon q1 q4 q2 q5 q3 q6 reg-n irreg-n-sg irreg-n-pl +N: +PL:# +SG:# +SG:# +N: +N:
  • 45. 45 The Gory Details • Of course, its not as easy as – “cat +N +PL” <-> “cats” • Or even dealing with the irregulars geese, mice and oxen • But there are also a whole host of spelling/pronunciation changes that go along with inflectional changes
  • 46. 46 Multi-Tape Machines • To deal with this we can simply add more tapes and use the output of one tape machine as the input to the next • So to handle irregular spelling changes we’ll add intermediate tapes with intermediate symbols
  • 47. 47 Multi-Level Tape Machines • We use one machine to transduce between the lexical and the intermediate level, and another to handle the spelling changes to the surface tape
  • 48. 48 Orthographic Rules and FSTs • Define additional FSTs to implement rules such as consonant doubling (beg  begging), ‘e’ deletion (make  making), ‘e’ insertion (watch  watches), etc. Lexical f o x +N +PL Intermediate f o x ^ s # Surface f o x e s
  • 50. 50 Intermediate to Surface • The add an “e” rule as in fox^s# <-> foxes
  • 51. 51 Note • A key feature of this machine is that it doesn’t do anything to inputs to which it doesn’t apply. • Meaning that they are written out unchanged to the output tape.
  • 52. 52
  • 53. 53
  • 54. 54 • Note: These FSTs can be used for generation as well as recognition by simply exchanging the input and output alphabets (e.g. ^s#:+PL)
  • 55. 55 Summing Up • FSTs provide a useful tool for implementing a standard model of morphological analysis, Kimmo’s two-level morphology – Key is to provide an FST for each of multiple levels of representation and then to combine those FSTs using a variety of operators (cf AT&T FSM Toolkit) – Other (older) approaches are still widely used, e.g. the rule- based Porter Stemmer