Re: Lucene Hunpell Spell checker

2023-02-19 Thread Mikhail Khludnev
FIY, from what I saw there there was a `dictionary gap` - kind of incomplete dictionary files. Another question always makes me wonder: why there is no a hunspell based suggester, spellchecker in Lucene codebase? On Fri, Feb 17, 2023 at 11:23 AM Dawid Weiss wrote: > Can't open this repository,

Re: Lucene Hunpell Spell checker

2023-02-17 Thread Dawid Weiss
Can't open this repository, it's probably private. Dawid On Tue, Feb 14, 2023 at 2:42 PM Thanos Agelakpoulos wrote: > > Thanks for the response David ! > > I created a quick repo just to showcase, > https://github.com/aggelako/JavaSpellchecker > In there you can see how im using lucene, in the

RE: Lucene Hunpell Spell checker

2023-02-14 Thread Thanos Agelakpoulos
Thanks for the response David !  I created a quick repo just to showcase,  https://github.com/aggelako/JavaSpellchecker In there you can see how im using lucene, in the SpellChecker class/ the spellCheck function where im performing a spellcheck.I have also provided the dicts as resources. You

Re: Lucene Hunpell Spell checker

2023-02-13 Thread Dawid Weiss
It'd be good if you could share the problematic scenario as a piece of code (ideally a forked Lucene repository, with a test case?) so that we can take a look. There's been a ton of improvements to hunspell packages in Lucene 9 (and on the main branch) - you should take a look and perhaps take some

RE: Lucene Hunpell Spell checker

2023-02-13 Thread Thanos Agelakpoulos
*here

Lucene Hunpell Spell checker

2023-02-13 Thread Thanos Agelakpoulos
Hello, I'm trying to create a java-wrapper library to lang-detect and then spell check for the detected languages. I'm currently using Apache Tika as a lang detector and i'm trying to use lucene.analysis.hunspell package for spell-checking, as i've i seen it supports many languages.My issue is,