Skip to content

Commit

Permalink
Add exceptions for possessive suffixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rueter committed Nov 16, 2024
1 parent e833d36 commit 63caf83
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/fst/morphology/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ GT_LEXC_SRCS_L1_L2=\
stems/adjectives_newwords.lexc \
stems/adpositions.lexc \
stems/adverbs.lexc \
stems/exceptions.lexc \
stems/nouns.lexc \
stems/nouns_newwords.lexc \
stems/numerals.lexc \
Expand Down
2 changes: 1 addition & 1 deletion src/fst/morphology/root.lexc
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ LEXICON Root
V_NEWWORDS ;
! SUBJUNCTION ;
PRONOUN-TYPES ;

EXCEPTIONS ;
!! ### Other lexica

LEXICON CC_
Expand Down
21 changes: 21 additions & 0 deletions src/fst/morphology/stems/exceptions.lexc
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
!! Exceptions are quite strange word-forms. the ones that do not fit anywhere
!! else. This file contains all enumerated word forms that cannot reasonably be
!! created from lexical data by regular inflection. Usually there should be next
!! to none exceptions, it's always better to have a paradigm that covers only
!! one or few words than an exception since these will not work nicely with e.g.
!! compounding scheme or possibly many end applications.

LEXICON EXCEPTIONS

! special nouns with possessive suffixes

ak+N:aka POSS_SUF ;
baba+N:baba POSS_SUF ;
emagaine+N:emagaiže POSS_SUF ;
mama+N:mama POSS_SUF ;
mezʼ+N:mehe POSS_SUF ;
poigaine+N:poigaiže POSS_SUF ;
sünduine+N:sünduiže POSS_SUF ;
tat+N:tata POSS_SUF ;


0 comments on commit 63caf83

Please sign in to comment.