Wolf Garbe
Wolf Garbe
With the current PruningRadixTrie structure there is no infix search possible, unless you want to exhaustively scan the whole trie. It would be possible to modify the structure and the...
> Sorry if I am totally wrong but weren't Tries invented to search anywhere ? No, Radix tries (prefix tries) are supporting efficient prefix search, and Suffix tries are supporting...
I have currently no plans to implement it. But anybody is free to fork the repository and add a substring lookup functionality.
Thanks. I will look into it.
There is currently no "RemoveDictionaryEntry" (as equivalent to CreateDictionaryEntry) to programmatically remove a term from the dictionary. It would have to be similar to CreateDictionaryEntry: 1. Remove the term from...
**Punctuation:** When parsing the input string into separate terms in line 773 string[] termList1 = ParseWords(input); the **punctuation characters** (like ',') between words could be preserved (currently they are discarded)...
This is a common problem. It is not only that the user intentionally types something wrong, but there are always unknown words in the input text that are not in...
In order to look into the issue I would need the following information: 1. all SymSpell parameters used: prefixLength, maxEditDistanceDictionary , maxEditDistanceLookup , suggestionVerbosity 2. Bengali unigrams and bigram frequency...
You could use the [German dictionary from Aspell](https://sourceforge.net/projects/germandict/) . This is a plain word list. In order to add the word frequencies required by SymSpell you can [combine/intersect it with...