- Czigel Grammar resources (folder Czech-someDate, eg. Czech-991105)
- External Morphology dll's
Plug and play
- Put the folder Czech-someDate into the resource folder
- Put the files morph.dll, tagTransl.dll into the windows folder (typically C:/Windows/)
If you want to have more control
By several variables you can control behaviour of czech resources. These variables have to be defined in package options. They have to be defined before loading Czech resources (Or at least before loading appropriate file - e.g morphology options before loading morphgen-iface.lisp - that means in addittional-load.lisp)
- You can set what should the morphology module return if its input is incorrect.
To return Lemma (default) set variable options::cz-morph-LPTOnError to 0, to return Lemma+Tag set it to 1
Eg:
(defpackage options)
(defvar options::cz-morph-LPTOnError 1)
- You can force the morphology module to return tag + lemma instead of inflected form
Set set variable options::cz-morph-lexicon-path to empty string
Eg:
(defpackage options)
(defvar options::cz-morph-lexicon-path "")