Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 1 | =pod |
| 2 | |
| 3 | =encoding utf8 |
| 4 | |
| 5 | =head1 NAME |
| 6 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 7 | korapxml2krill - Merge KorapXML data and create Krill documents |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 8 | |
| 9 | |
| 10 | =head1 SYNOPSIS |
| 11 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 12 | korapxml2krill [archive|extract] --input <directory|archive> [options] |
Akron | 2fd402b | 2016-10-27 21:26:48 +0200 | [diff] [blame] | 13 | |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 14 | |
| 15 | =head1 DESCRIPTION |
| 16 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 17 | L<KorAP::XML::Krill> is a library to convert KorAP-XML documents to files |
| 18 | compatible with the L<Krill|https://github.com/KorAP/Krill> indexer. |
| 19 | The C<korapxml2krill> command line tool is a simple wrapper to the library. |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 20 | |
| 21 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 22 | =head1 INSTALLATION |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 23 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 24 | The preferred way to install L<KorAP::XML::Krill> is to use L<cpanm|App::cpanminus>. |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 25 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 26 | $ cpanm https://github.com/KorAP/KorAP-XML-Krill.git |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 27 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 28 | In case everything went well, the C<korapxml2krill> tool will |
| 29 | be available on your command line immediately. |
Akron | 6eff23b | 2018-09-24 10:31:20 +0200 | [diff] [blame] | 30 | Minimum requirement for L<KorAP::XML::Krill> is Perl 5.16. |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 31 | In addition to work with zip archives, the C<unzip> tool needs to be present. |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 32 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 33 | =head1 ARGUMENTS |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 34 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 35 | $ korapxml2krill -z --input <directory> --output <filename> |
| 36 | |
| 37 | Without arguments, C<korapxml2krill> converts a directory of a single KorAP-XML document. |
| 38 | It expects the input to point to the text level folder. |
| 39 | |
| 40 | =over 2 |
| 41 | |
| 42 | =item B<archive> |
| 43 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 44 | $ korapxml2krill archive -z --input <directory|archive> --output <directory|tar> |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 45 | |
| 46 | Converts an archive of KorAP-XML documents. It expects a directory |
| 47 | (pointing to the corpus level folder) or one or more zip files as input. |
| 48 | |
| 49 | =item B<extract> |
| 50 | |
| 51 | $ korapxml2krill extract --input <archive> --output <directory> --sigle <SIGLE> |
| 52 | |
| 53 | Extracts KorAP-XML documents from a zip file. |
| 54 | |
Akron | 442c4e9 | 2017-04-10 23:41:31 +0200 | [diff] [blame] | 55 | =item B<serial> |
| 56 | |
| 57 | $ korapxml2krill serial -i <archive1> -i <archive2> -o <directory> -cfg <config-file> |
| 58 | |
| 59 | Convert archives sequentially. The inputs are not merged but treated |
| 60 | as they are (so they may be premerged or globs). |
| 61 | the C<--out> directory is treated as the base directory where subdirectories |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 62 | are created based on the archive name. In case the C<--to-tar> flag is given, |
| 63 | the output will be a tar file. |
Akron | 442c4e9 | 2017-04-10 23:41:31 +0200 | [diff] [blame] | 64 | |
| 65 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 66 | =back |
Akron | a76d835 | 2016-10-27 16:27:32 +0200 | [diff] [blame] | 67 | |
Akron | 7606afa | 2016-10-25 16:23:49 +0200 | [diff] [blame] | 68 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 69 | =head1 OPTIONS |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 70 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 71 | =over 2 |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 72 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 73 | =item B<--input|-i> <directory|zip file> |
Akron | a76d835 | 2016-10-27 16:27:32 +0200 | [diff] [blame] | 74 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 75 | Directory or zip file(s) of documents to convert. |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 76 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 77 | Without arguments, C<korapxml2krill> expects a folder of a single KorAP-XML |
Akron | f1a1de9 | 2016-11-02 17:32:12 +0100 | [diff] [blame] | 78 | document, while C<archive> expects a KorAP-XML corpus folder or a zip |
| 79 | file to batch process multiple files. |
| 80 | C<extract> expects zip files only. |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 81 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 82 | C<archive> supports multiple input zip files with the constraint, |
| 83 | that the first archive listed contains all primary data files |
| 84 | and all meta data files. |
Akron | a76d835 | 2016-10-27 16:27:32 +0200 | [diff] [blame] | 85 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 86 | -i file/news.zip -i file/news.malt.zip -i "#file/news.tt.zip" |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 87 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 88 | Input may also be defined using BSD glob wildcards. |
| 89 | |
| 90 | -i 'file/news*.zip' |
| 91 | |
| 92 | The extended input array will be sorted in length order, so the shortest |
| 93 | path needs to contain all primary data files and all meta data files. |
| 94 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 95 | (The directory structure follows the base directory format, |
| 96 | that may include a C<.> root folder. |
| 97 | In this case further archives lacking a C<.> root folder |
| 98 | need to be passed with a hash sign in front of the archive's name. |
| 99 | This may require to quote the parameter.) |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 100 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 101 | To support zip files, a version of C<unzip> needs to be installed that is |
| 102 | compatible with the archive file. |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 103 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 104 | B<The root folder switch using the hash sign is experimental and |
| 105 | may vanish in future versions.> |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 106 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 107 | |
Akron | 442c4e9 | 2017-04-10 23:41:31 +0200 | [diff] [blame] | 108 | =item B<--input-base|-ib> <directory> |
| 109 | |
| 110 | The base directory for inputs. |
| 111 | |
| 112 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 113 | =item B<--output|-o> <directory|file> |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 114 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 115 | Output folder for archive processing or |
| 116 | document name for single output (optional), |
| 117 | writes to C<STDOUT> by default |
| 118 | (in case C<output> is not mandatory due to further options). |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 119 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 120 | =item B<--overwrite|-w> |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 121 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 122 | Overwrite files that already exist. |
Akron | 7606afa | 2016-10-25 16:23:49 +0200 | [diff] [blame] | 123 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 124 | |
Akron | 3741f8b | 2016-12-21 19:55:21 +0100 | [diff] [blame] | 125 | =item B<--token|-t> <foundry>#<file> |
Akron | a5920b1 | 2016-06-29 18:51:21 +0200 | [diff] [blame] | 126 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 127 | Define the default tokenization by specifying |
| 128 | the name of the foundry and optionally the name |
| 129 | of the layer-file. Defaults to C<OpenNLP#tokens>. |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 130 | |
Akron | 3741f8b | 2016-12-21 19:55:21 +0100 | [diff] [blame] | 131 | |
| 132 | =item B<--base-sentences|-bs> <foundry>#<layer> |
| 133 | |
| 134 | Define the layer for base sentences. |
| 135 | If given, this will be used instead of using C<Base#Sentences>. |
| 136 | Currently C<DeReKo#Structure> is the only additional layer supported. |
| 137 | |
| 138 | Defaults to unset. |
| 139 | |
| 140 | |
| 141 | =item B<--base-paragraphs|-bp> <foundry>#<layer> |
| 142 | |
| 143 | Define the layer for base paragraphs. |
| 144 | If given, this will be used instead of using C<Base#Paragraphs>. |
| 145 | Currently C<DeReKo#Structure> is the only additional layer supported. |
| 146 | |
| 147 | Defaults to unset. |
| 148 | |
| 149 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 150 | =item B<--base-pagebreaks|-bpb> <foundry>#<layer> |
| 151 | |
| 152 | Define the layer for base pagebreaks. |
| 153 | Currently C<DeReKo#Structure> is the only layer supported. |
| 154 | |
| 155 | Defaults to unset. |
| 156 | |
| 157 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 158 | =item B<--skip|-s> <foundry>[#<layer>] |
| 159 | |
| 160 | Skip specific annotations by specifying the foundry |
| 161 | (and optionally the layer with a C<#>-prefix), |
| 162 | e.g. C<Mate> or C<Mate#Morpho>. Alternatively you can skip C<#ALL>. |
| 163 | Can be set multiple times. |
| 164 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 165 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 166 | =item B<--anno|-a> <foundry>#<layer> |
| 167 | |
| 168 | Convert specific annotations by specifying the foundry |
| 169 | (and optionally the layer with a C<#>-prefix), |
| 170 | e.g. C<Mate> or C<Mate#Morpho>. |
| 171 | Can be set multiple times. |
| 172 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 173 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 174 | =item B<--primary|-p> |
| 175 | |
| 176 | Output primary data or not. Defaults to C<true>. |
| 177 | Can be flagged using C<--no-primary> as well. |
| 178 | This is I<deprecated>. |
| 179 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 180 | |
Akron | ed9baf0 | 2019-01-22 17:03:25 +0100 | [diff] [blame] | 181 | =item B<--non-word-tokens|-nwt> |
| 182 | |
| 183 | Tokenize non-word tokens like word tokens (defined as matching |
| 184 | C</[\d\w]/>). Useful to treat punctuations as tokens. |
| 185 | |
| 186 | Defaults to unset. |
| 187 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 188 | =item B<--jobs|-j> |
| 189 | |
| 190 | Define the number of concurrent jobs in seperated forks |
| 191 | for archive processing. |
| 192 | Defaults to C<0> (everything runs in a single process). |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 193 | |
| 194 | If C<sequential-extraction> is not set to false, this will |
| 195 | also apply to extraction. |
| 196 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 197 | Pass -1, and the value will be set automatically to 5 |
| 198 | times the number of available cores. |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 199 | This is I<experimental>. |
| 200 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 201 | |
Akron | 263274c | 2019-02-07 09:48:30 +0100 | [diff] [blame] | 202 | =item B<--koral|-k> |
| 203 | |
| 204 | Version of the output format. Supported versions are: |
| 205 | C<0> for legacy serialization, C<0.03> for serialization |
| 206 | with metadata fields as key-values on the root object, |
| 207 | C<0.4> for serialization with metadata fields as a list |
| 208 | of C<"@type":"koral:field"> objects. |
| 209 | |
| 210 | Currently defaults to C<0.03>. |
| 211 | |
| 212 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 213 | =item B<--sequential-extraction|-se> |
| 214 | |
| 215 | Flag to indicate, if the C<jobs> value also applies to extraction. |
| 216 | Some systems may have problems with extracting multiple archives |
| 217 | to the same folder at the same time. |
| 218 | Can be flagged using C<--no-sequential-extraction> as well. |
| 219 | Defaults to C<false>. |
| 220 | |
| 221 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 222 | =item B<--meta|-m> |
| 223 | |
| 224 | Define the metadata parser to use. Defaults to C<I5>. |
| 225 | Metadata parsers can be defined in the C<KorAP::XML::Meta> namespace. |
| 226 | This is I<experimental>. |
| 227 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 228 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 229 | =item B<--pretty|-y> |
| 230 | |
| 231 | Pretty print JSON output. Defaults to C<false>. |
| 232 | This is I<deprecated>. |
| 233 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 234 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 235 | =item B<--gzip|-z> |
| 236 | |
| 237 | Compress the output. |
| 238 | Expects a defined C<output> file in single processing. |
| 239 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 240 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 241 | =item B<--cache|-c> |
| 242 | |
| 243 | File to mmap a cache (using L<Cache::FastMmap>). |
| 244 | Defaults to C<korapxml2krill.cache> in the calling directory. |
| 245 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 246 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 247 | =item B<--cache-size|-cs> |
| 248 | |
| 249 | Size of the cache. Defaults to C<50m>. |
| 250 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 251 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 252 | =item B<--cache-init|-ci> |
| 253 | |
| 254 | Initialize cache file. |
| 255 | Can be flagged using C<--no-cache-init> as well. |
| 256 | Defaults to C<true>. |
| 257 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 258 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 259 | =item B<--cache-delete|-cd> |
| 260 | |
| 261 | Delete cache file after processing. |
| 262 | Can be flagged using C<--no-cache-delete> as well. |
| 263 | Defaults to C<true>. |
| 264 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 265 | |
Akron | 636aa11 | 2017-04-07 18:48:56 +0200 | [diff] [blame] | 266 | =item B<--config|-cfg> |
| 267 | |
| 268 | Configure the parameters of your call in a file |
| 269 | of key-value pairs with whitespace separator |
| 270 | |
| 271 | overwrite 1 |
| 272 | token DeReKo#Structure |
| 273 | ... |
| 274 | |
| 275 | Supported parameters are: |
Akron | 442c4e9 | 2017-04-10 23:41:31 +0200 | [diff] [blame] | 276 | C<overwrite>, C<gzip>, C<jobs>, C<input-base>, |
Akron | 636aa11 | 2017-04-07 18:48:56 +0200 | [diff] [blame] | 277 | C<token>, C<log>, C<cache>, C<cache-size>, C<cache-delete>, C<meta>, |
Akron | 57510c1 | 2019-01-04 14:58:53 +0100 | [diff] [blame] | 278 | C<output>, C<koral>, |
| 279 | C<tempary-extract>, C<sequential-extraction>, |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 280 | C<base-sentences>, C<base-paragraphs>, |
| 281 | C<base-pagebreaks>, |
| 282 | C<skip> (semicolon separated), C<sigle> |
Akron | 636aa11 | 2017-04-07 18:48:56 +0200 | [diff] [blame] | 283 | (semicolon separated), C<anno> (semicolon separated). |
| 284 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 285 | Configuration parameters will always be overwritten by |
| 286 | passed parameters. |
| 287 | |
| 288 | |
Akron | 8150010 | 2017-04-07 20:45:44 +0200 | [diff] [blame] | 289 | =item B<--temporary-extract|-te> |
| 290 | |
| 291 | Only valid for the C<archive> command. |
| 292 | |
| 293 | This will first extract all files into a |
| 294 | directory and then will archive. |
| 295 | If the directory is given as C<:temp:>, |
| 296 | a temporary directory is used. |
| 297 | This is especially useful to avoid |
| 298 | massive unzipping and potential |
| 299 | network latency. |
Akron | 636aa11 | 2017-04-07 18:48:56 +0200 | [diff] [blame] | 300 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 301 | |
Akron | c93a080 | 2019-07-11 15:48:34 +0200 | [diff] [blame^] | 302 | =item B<--to-tar> |
| 303 | |
| 304 | Only valid for the C<archive> command. |
| 305 | |
| 306 | Writes the output into a tar archive. |
| 307 | |
| 308 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 309 | =item B<--sigle|-sg> |
| 310 | |
| 311 | Extract the given texts. |
| 312 | Can be set multiple times. |
| 313 | I<Currently only supported on C<extract>.> |
| 314 | Sigles have the structure C<Corpus>/C<Document>/C<Text>. |
| 315 | In case the C<Text> path is omitted, the whole document will be extracted. |
| 316 | On the document level, the postfix wildcard C<*> is supported. |
| 317 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 318 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 319 | =item B<--log|-l> |
| 320 | |
| 321 | The L<Log4perl> log level, defaults to C<ERROR>. |
| 322 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 323 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 324 | =item B<--help|-h> |
| 325 | |
| 326 | Print this document. |
| 327 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 328 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 329 | =item B<--version|-v> |
| 330 | |
| 331 | Print version information. |
| 332 | |
| 333 | =back |
| 334 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 335 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 336 | =head1 ANNOTATION SUPPORT |
| 337 | |
| 338 | L<KorAP::XML::Krill> has built-in importer for some annotation foundries and layers |
| 339 | developed in the KorAP project that are part of the KorAP preprocessing pipeline. |
| 340 | The base foundry with paragraphs, sentences, and the text element are mandatory for |
| 341 | L<Krill|https://github.com/KorAP/Krill>. |
| 342 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 343 | Base |
| 344 | #Paragraphs |
| 345 | #Sentences |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 346 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 347 | Connexor |
| 348 | #Morpho |
| 349 | #Phrase |
| 350 | #Sentences |
| 351 | #Syntax |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 352 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 353 | CoreNLP |
| 354 | #Constituency |
| 355 | #Morpho |
| 356 | #NamedEntities |
| 357 | #Sentences |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 358 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 359 | CMC |
| 360 | #Morpho |
| 361 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 362 | DeReKo |
| 363 | #Structure |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 364 | |
Akron | 57510c1 | 2019-01-04 14:58:53 +0100 | [diff] [blame] | 365 | DGD |
| 366 | #Morpho |
| 367 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 368 | DRuKoLa |
| 369 | #Morpho |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 370 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 371 | Glemm |
| 372 | #Morpho |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 373 | |
Akron | ed9baf0 | 2019-01-22 17:03:25 +0100 | [diff] [blame] | 374 | HNC |
| 375 | #Morpho |
| 376 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 377 | LWC |
| 378 | #Dependency |
| 379 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 380 | Malt |
| 381 | #Dependency |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 382 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 383 | MarMoT |
| 384 | #Morpho |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 385 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 386 | Mate |
| 387 | #Dependency |
| 388 | #Morpho |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 389 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 390 | MDParser |
| 391 | #Dependency |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 392 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 393 | OpenNLP |
| 394 | #Morpho |
| 395 | #Sentences |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 396 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 397 | Sgbr |
| 398 | #Lemma |
| 399 | #Morpho |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 400 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 401 | TreeTagger |
| 402 | #Morpho |
| 403 | #Sentences |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 404 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 405 | XIP |
| 406 | #Constituency |
| 407 | #Morpho |
| 408 | #Sentences |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 409 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 410 | |
| 411 | More importers are in preparation. |
| 412 | New annotation importers can be defined in the C<KorAP::XML::Annotation> namespace. |
| 413 | See the built-in annotation importers as examples. |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 414 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 415 | |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 416 | =head1 AVAILABILITY |
| 417 | |
| 418 | https://github.com/KorAP/KorAP-XML-Krill |
| 419 | |
| 420 | |
| 421 | =head1 COPYRIGHT AND LICENSE |
| 422 | |
Akron | ed9baf0 | 2019-01-22 17:03:25 +0100 | [diff] [blame] | 423 | Copyright (C) 2015-2019, L<IDS Mannheim|http://www.ids-mannheim.de/> |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 424 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 425 | Author: L<Nils Diewald|http://nils-diewald.de/> |
Akron | 8150010 | 2017-04-07 20:45:44 +0200 | [diff] [blame] | 426 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 427 | Contributor: Eliza Margaretha |
| 428 | |
| 429 | L<KorAP::XML::Krill> is developed as part of the L<KorAP|http://korap.ids-mannheim.de/> |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 430 | Corpus Analysis Platform at the |
Akron | 94262ce | 2019-02-28 21:42:43 +0100 | [diff] [blame] | 431 | L<Leibniz Institute for the German Language (IDS)|http://ids-mannheim.de/>, |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 432 | member of the |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 433 | L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/en/about-us/leibniz-competition/projekte-2011/2011-funding-line-2/>. |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 434 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 435 | This program is free software published under the |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 436 | L<BSD-2 License|https://raw.githubusercontent.com/KorAP/KorAP-XML-Krill/master/LICENSE>. |
| 437 | |
| 438 | =cut |