commit | 783e2a27b3e9612cff8348e841c6a484c0d761f9 | [log] [tgz] |
---|---|---|
author | Marc Kupietz <kupietz@ids-mannheim.de> | Fri Sep 11 23:34:27 2020 +0200 |
committer | Marc Kupietz <kupietz@ids-mannheim.de> | Mon Sep 14 09:40:25 2020 +0200 |
tree | e2605d396fbfad73b94a2e0c085e509a2360ca4a | |
parent | 571c194376e9bfc928da5a4eb765e59eceae096d [diff] |
Ignore quoted email names like "John Doe"@xx.com They are rare and are now delivering too many false positives due to Twitter handles, like: Pluto." Eris-Entdecker Mike Brown, der im Kurznachrichtendienst Twitter unter "@plutokiller A different prioritization does not seem necessary either. Change-Id: I75e328f027f917ab1db246da80201e30604472db
Efficient, OpenNLP tools compatible DFA tokenizer and sentence splitter with character offset output based on JFlex, suitable for German and other European languages.
The KorAP tokenizer is used for the German Reference Corpus DeReKo. Being based on a finite state automaton, it is not accurate as language model based tokenizers, but with ~5 billion words per hour typically more efficient. An important feature in the DeReKo/KorAP context is also, that it reliably reports the character offsets of the tokens so that this information can be used for applying standoff annotations.
The main class KorAPTokenizerImpl
implements the opennlp.tools.tokenize.Tokenizer
and opennlp.tools.sentdetect.SentenceDetector
interfaces and can thus be used as a drop-in replacement in OpenNLP applications.
The scanner is based on the Lucene scanner with modifications from David Hall.
Our changes mainly concern a good coverage of German abbreviations, and some updates for handling computer mediated communication, optimized and tested against the gold data from the EmpiriST 2015 shared task (Beißwenger et al. 2016).
$ MAVEN_OPTS="-Xss50m" mvn clean install
Because of the large table of abbreviations, the conversion from the jflex source to java, i.e. the calculation of the DFA, takes about 4 to 20 minutes, depending on your hardware, and requires a lot of heap space.
For this reason the java source that is generated from the jflex source is distributed with the source code and not deleted on mvn clean
.
If you want to modify the jflex source, while keeping the abbreviation lists, you will need ad least 5 GB of free RAM.
The KorAP tokenizer reads from standard input and writes to standard output. It currently supports two modes.
In the default mode, the tokenizer prints all offsets of the first character of a token and the first character after a token. In order to end a text, flush the output and reset the character position, an EOT character (0x04) can be used.
$ echo -n -e 'This is a text.\x0a\x03\x0aAnd this is another text.\n\x03\n' |\ java -jar target/KorAP-Tokenizer-1.2-SNAPSHOT.jar 0 4 5 7 8 9 10 15 0 3 4 8 9 11 12 19 20 25
echo -n -e ' This ist a start of a text. And this is a sentence!!! But what the hack????\x0a\x03\x0aAnd this is another text.\n\x03\nAnd this a sentence without marker\n' |\ java -jar target/KorAP-Tokenizer-1.2-SNAPSHOT.jar -s 1 5 6 9 10 11 12 17 18 20 21 22 23 27 27 28 29 32 33 37 38 40 41 42 43 51 51 54 55 58 59 63 64 67 68 72 72 76 1 28 29 54 55 76 0 3 4 8 9 11 12 19 20 24 24 25 0 25
Authors:
Copyright (c) 2020, Leibniz Institute for the German Language, Mannheim, Germany
This package is developed as part of the KorAP Corpus Analysis Platform at the Leibniz Institute for German Language (IDS).
The package contains code from Apache Lucene with modifications by Jim Hall.
It is published under the Apache 2.0 License.
Contributions are very welcome!
Your contributions should ideally be committed via our Gerrit server to facilitate reviewing (see Gerrit Code Review - A Quick Introduction if you are not familiar with Gerrit). However, we are also happy to accept comments and pull requests via GitHub.