forked from ufal/teitok-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathveld_parseudpipe.yaml
More file actions
68 lines (63 loc) · 1.72 KB
/
veld_parseudpipe.yaml
File metadata and controls
68 lines (63 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
x-veld:
code:
description: "This code veld encapsulates and veldifies the parseudpipe script. All its
config here are passed down to the script. For more information on its usage and config,
see: https://github.com/ufal/teitok-tools?tab=readme-ov-file#parseudpipe"
topic:
- NLP
- ETL
- Tokenization
- Universal Dependencies
input:
- volume: /veld/input/
file_type: xml
environment_var: in_xml_file
output:
- volume: /veld/output/
file_type: xml
environment_var: out_xml_file
config:
- environment_var: model
description: "which UDPIPE model to use"
var_type: str
optional: true
- environment_var: lang
description: "language of the texts (if no model is provided)"
var_type: str
optional: true
- environment_var: token
description: "token node"
var_type: str
optional: true
- environment_var: tokxp
description: "token XPath"
var_type: str
optional: true
- environment_var: sent
description: "sentence node"
var_type: str
optional: true
- environment_var: sentxp
description: "sentence XPath"
var_type: str
optional: true
- environment_var: atts
description: "attributes to use for the word form"
var_type: str
optional: true
services:
veld_parseudpipe:
build: .
volumes:
- ./:/veld/code/
command: bash /veld/code/veld_parseudpipe.sh
environment:
in_xml_file: null
out_xml_file: null
model: null
lang: null
token: null
tokxp: null
sent: null
sentxp: null
atts: null