GiellaLT

GiellaLT provides an infrastructure for rule-based language technology aimed at minority and indigenous languages, and streamlines building anything from keyboards to speech technology. Read more about Why. See also How to get started, and our Privacy document.

View GiellaLT on GitHub

Page Content

Lexc and Twolc Development

Improving the src/morphology/stems files

Derivation

Regular derivation we do in the affixes/ files.

If all verbs may be turned into nouns by adding -ing, then do something along these lines:

LEXICON Verbs
bark vmorph ;
kick vmorph ;
sing vmorph ;


LEXION vmorph
+V+Inf ## ;
+V+Prs+Sg3:%>s ## ;
+V+Der/ing:%>ing nmorph ; ! <=== here we derive


LEXICON nmorph
+N+Sg: ## ;
+N+Pl:%>s #;

In addition to that, the lexicon Nouns may also contain an occational lexicalised noun like shopping.

Sitemap