commit | 61f7b7003dfb0f23f1cff3e5555c7a2e258719b0 | [log] [tgz] |
---|---|---|
author | Eliza Margaretha <margaretha@ids-mannheim.de> | Wed Oct 26 18:07:01 2016 +0200 |
committer | Eliza Margaretha <margaretha@ids-mannheim.de> | Wed Oct 26 18:09:07 2016 +0200 |
tree | 30176c14791b20dc534f4b19d75c62a3fdec1339 | |
parent | 07cff28e6772b8145ac808e592ffa85b4100674c [diff] |
Removed distances. Empty tokens are treated as normal tokens. Change-Id: I15d3b8b9bc92f6ffd92fbc545ac371dffc965ef1
Koral is a translator tool for converting different corpus query languages to KoralQuery, a JSON-LD-based protocol for the common representation of linguistic queries. KoralQuery specifications are described extensively in Bingel (2015). This work has been carried out within the KorAP project.
Koral v0.23 supports the following corpus query languages (QLs):
You can use the main class QuerySerializer to translate and serialize queries. Valid QL identifiers are cosmas2
, annis
, poliqarp
, poliqarpplus
and cql
.
import de.ids_mannheim.korap.query.serialize.QuerySerialzer; QuerySerializer qs = new QuerySerializer(); String query = "contains(<s>,[orth=zu][pos=ADJA])"; qs.setQuery(query, "poliqarpplus"); System.out.println(qs.toJSON());
This will print out the following JSON-LD string for the Koralized query. The query asks for a sentence element (<s>
) contained in a sequence of the surface form zu and a token with the part-of-speech tag ADJA. In the KoralQuery string, a containment relation is defined over two operands, an s span and a sequence of two tokens.
{ "@context": "http://korap.ids-mannheim.de/ns/KoralQuery/v0.2/context.jsonld", "query": { "@type": "koral:group", "operation": "operation:position", "frames": [ "frames:isAround" ], "operands": [ { "@type": "koral:span", "key": "s" }, { "@type": "koral:group", "operation": "operation:sequence", "operands": [ { "@type": "koral:token", "wrap": { "@type": "koral:term", "layer": "orth", "key": "zu", "match": "match:eq" } }, { "@type": "koral:token", "wrap": { "@type": "koral:term", "layer": "pos", "key": "ADJA", "match": "match:eq" } } ] } ] } }
Koral allows designing and implementating corpus query systems independent of any specific query languages. The systems only need to have Koral translate a query to a KoralQuery (see usage) and feed the translated query to their search engine. Several query languages can be supported without further adjustments to the search engine.
Koral and KoralQuery have been designed and developed within the KorAP Project, and are used in KorAP to translate queries to a common format before sending them to its search engine.
Installation is straightforward (Maven3 required):
git clone https://github.com/korap/Koral [install-dir] cd [install-dir] mvn test -Dhttps.protocols=TLSv1.2 mvn install
There is also a command line version. After installation, simply run
java -jar target/Koral-0.2.jar [query] [queryLanguage]
J. Bingel, "Instantiation and implementation of a corpus query lingua franca," M.S. thesis, University of Heidelberg, Heidelberg, 2015.
J. Bingel and N. Diewald, "KoralQuery – a General Corpus Query Protocol," in Proceedings of the Workshop on Innovative Corpus Query and Visualization Tools at NODALIDA 2015, Vilnius, 2015, pp. 1-5.
Koral and KoralQuery were developed by Joachim Bingel, Nils Diewald, Michael Hanl and Eliza Margaretha at IDS Mannheim.
The ANTLR grammars for parsing ANNIS QL and COSMAS II QL were developed by Thomas Krause (HU Berlin) and Franck Bodmer (IDS Mannheim), respectively. Minor adaptations of those grammars were implemented by the Koral authors.
The authors wish to thank Piotr Bański, Franck Bodmer, Elena Frick and Carsten Schnober for their valuable input.
Koral is published under the BSD-2 License. See also the attached LICENSE.
The ANNIS grammar is licensed under the Apache License 2.0.