-
Hello, Setup from "hello world example" using 5.12.3 release:
Executing the above causes it to fail only at the last assert statement. Is something wrong with setting up the dict? Where the links connecting SHALL dont make sense to me. Would appreciate any help here. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You may have "unknown word" defined. This enables rules that attempt to guess unknown words, based on the form. For example, there are recognizers for various Latinate ends, common in science lit. There are also regexes for roman numerals, and some other specialty forms. The above example used the Surprisingly, there is no C API to turn it on and off (perhaps it should be added?) It can be turned off by commenting out Even if |
Beta Was this translation helpful? Give feedback.
You may have "unknown word" defined. This enables rules that attempt to guess unknown words, based on the form. For example, there are recognizers for various Latinate ends, common in science lit. There are also regexes for roman numerals, and some other specialty forms. The above example used the
<ALL-UPPER>
regex.Surprisingly, there is no C API to turn it on and off (perhaps it should be added?) It can be turned off by commenting out
UNKNOWN-WORD
in the dictionary. Might also need to disable the<ALL-UPPER>
regex as well? Not sure.Even if
UNKNOWN-WORD
is disabled, the spell-guesser might run. That can be disabled with theparse_options_set_spell_guess()
API call.