You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`-j N`, `--jobs N`, `--threads N`: Number of threads/jobs to use
@@ -181,25 +181,26 @@ You need to download the pre-trained OpenNLP models from the [OpenNLP model down
181
181
./build/bin/korapxmltool -t zip -T opennlp:/usr/local/kl/korap/Ingestion/lib/models/opennlp/de-pos-maxent.bin /tmp/zca24.zip
182
182
```
183
183
184
-
### Tag and lemmatize with TreeTagger
184
+
### Tag and lemmatize with integrated TreeTagger
185
+
186
+
(Requires Docker)
185
187
186
188
```shell script
187
-
./build/bin/korapxmltool -A "docker run --rm -i korap/conllu-treetagger -l french" -t zip app/src/test/resources/wdf19.zip
189
+
./build/bin/korapxmltool -T treetagger:german -t zip app/src/test/resources/wdf19.zip
188
190
```
189
191
See [TreeTagger Docker Image with CoNLL-U Support](https://github.com/KorAP/conllu-treetagger-docker).
190
192
191
-
### Tag and lemmatize with spaCy directly to a new KorAP-XML ZIP file
192
-
193
-
This requires the [spaCy Docker Image with CoNLL-U Support](https://gitlab.ids-mannheim.de/KorAP/sota-pos-lemmatizers) and is only available for German.
193
+
### Tag and lemmatize with integrated spaCy to CoNLL-U
194
194
195
+
(Requires Docker)
195
196
```shell script
196
-
./build/bin/korapxmltool -j4 -A "docker run -e SPACY_USE_DEPENDENCIES=False --rm -i korap/conllu2spacy:latest" -t zip ./app/src/test/resources/goe.zip
197
+
./build/bin/korapxmltool -j 1 -T spacy ./app/src/test/resources/goe.zip| less
197
198
```
198
199
199
200
### Tag, lemmatize and dependency parse with spaCy directly to a new KorAP-XML ZIP file
200
201
201
202
```shell script
202
-
./build/bin/korapxmltool -j4 -A "docker run -e SPACY_USE_DEPENDENCIES=True --rm -i korap/conllu2spacy:latest" -t zip ./app/src/test/resources/goe.zip
203
+
./build/bin/korapxmltool -P spacy -t zip ./app/src/test/resources/goe.zip
203
204
```
204
205
205
206
### Tag, lemmatize and constituency parse with CoreNLP (3.X) directly to a new KorAP-XML ZIP file
0 commit comments