It is recommended that you review the following table before you Edit parser parameters.
Parameter |
Default value |
Description |
---|---|---|
MaxNulls |
1 |
The maximum number of null allomorphs that may appear in a single well-formed word. You want this to be as small as possible to make parsing efficient. |
MaxPrefixes |
5 |
The maximum number of prefixes and proclitics that may appear in a single well-formed word. Note that it is the sum of the maximum number of prefixes plus the maximum number of proclitics. You want this to be as small as possible to make parsing efficient. |
MaxInfixes |
0 |
The maximum number of infixes that may appear in a single well-formed word. If you have at least one infix, this number will automatically be set to 1. You will only need to change it if you can have two or more infixes in a single well-formed word. You want this to be as small as possible to make parsing efficient. |
MaxRoots |
1 or 2 |
The maximum number of roots that may appear in a single well-formed word. Any lexical entry with a morpheme type of root, bound root, stem or bound stem is considered to be a root as far as this parameter is concerned. If you have at least one compound rule, this number will automatically be set to 2. Otherwise, it defaults to 1. You will only need to change it if you can have three or more roots that can compound in a single well-formed word. You want this to be as small as possible to make parsing efficient. |
MaxSuffixes |
5 |
The maximum number of suffixes and enclitics that may appear in a single well-formed word. Note that it is the sum of the maximum number of suffixes plus the maximum number of enclitics. You want this to be as small as possible to make parsing efficient. |
MaxInterfixes |
0 or 1 |
The maximum number of interfixes that may appear in a single well-formed word. If you have at least one interfix, this number will automatically be set to 1. You will only need to change it if you can have two or more interfixes in a single well-formed word. You want this to be as small as possible to make parsing efficient. (Interfixes are affixes (prefixes, infixes, or suffixes) which can appear between roots in compounds.) |
MaxAnalyses |
See description |
The maximum number of analyses (i.e. parses) the parser will return. If this is set to -1 (or less), the parser returns all the analyses/parses it discovers. (Depending on your implementation, this could be quite large or rather small.) This value was probably set to 10 when you created your language project. You want this parameter to be large enough to see the parses being produced, but not so large that the parsing process becomes inefficient. You can try setting it to a value of 10, say, and then, if you have wordforms with 10 parser-generated analyses, be aware that the parser might actually be producing more than 10 parses. You would need to increase this parameter to see if that is the case or not. |
Parameter |
Default value |
Description |
---|---|---|
DelReapps |
0 |
Normally, deletion rules only apply once. If you find that you need a deletion rule to apply more than once, you will need to set this parameter to greater than zero. You want this to be as small as possible to make parsing efficient. |
NotOnClitics |
|
|
NoDefaultCompounding |
|
|
AcceptUnspecifiedGraphemes |
|
Tip
|
GuessRoots |
|
In order to guess roots, you need to create one or more pattern-matching entries in the Lexicon. For the Lexeme Form, create a pattern from the natural classes that have been defined. The resulting guesses will be presented as possible analyses. The user can approve one to indicate which one is correct. The guessed root must be manually added to the Lexicon by means of the New Entry dialog box. |
Note
|
A warning message may appear if you enter very large parameter values, such as "50,000" MaxNulls. FieldWorks will reduce large values to more reasonable values.
It is recommended that you record the initial settings before you make any changes. If you make unsuitable changes to the settings, you may need to change the settings back to the initial settings.
For more information, on the Help menu, point to Resources, and then click Introduction to Parsing.