You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@opennlp.apache.org by "Bruno P. Kinoshita (Jira)" <ji...@apache.org> on 2023/02/27 07:56:00 UTC

[jira] [Created] (OPENNLP-1474) Create tokenizer factories for other langs (Spanish, Italian, ...)

Bruno P. Kinoshita created OPENNLP-1474:
-------------------------------------------

             Summary: Create tokenizer factories for other langs (Spanish, Italian, ...)
                 Key: OPENNLP-1474
                 URL: https://issues.apache.org/jira/browse/OPENNLP-1474
             Project: OpenNLP
          Issue Type: Improvement
          Components: Tokenizer
    Affects Versions: 2.1.1
            Reporter: Bruno P. Kinoshita
             Fix For: 2.2.0


From [https://github.com/apache/opennlp/pull/506#issuecomment-1445849746]

We can create more factories for languages such as Spanish and Italian. For example:
{noformat}
// From: https://it.wikipedia.org/wiki/Alfabeto_italiano
private static final Pattern ITALIAN = Pattern.compile("^[0-9a-zàèéìîíòóùüA-ZÀÈÉÌÎÍÒÓÙÜ]+$");
// From: https://en.wikiversity.org/wiki/Alphabet/Spanish_alphabet & https://en.wikipedia.org/wiki/Spanish_orthography#Alphabet_in_Spanish & https://www.fundeu.es/consulta/tilde-en-la-y-y-griega-o-ye-24786/
private static final Pattern SPANISH = Pattern.compile("^[0-9a-záéíóúüýñA-ZÁÉÍÓÚÝÑ]+$"); {noformat}
Community feedback would be appreciated.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)