-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathveld_step_all.yaml
150 lines (124 loc) · 3.38 KB
/
veld_step_all.yaml
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
x-veld:
chain:
description: "An aggregating chain, reusing and referencing all individual chains in a
sequential processing"
topic:
- "ETL"
- "NLP"
- "Machine Learning"
- "Tokenization"
- "Lemmatization"
- "Part Of Speech"
- "Dependency Parsing"
- "Universal Dependencies"
- "Grammatical Annotation"
services:
# veld_preprocess
veld_preprocess_cze:
extends:
file: veld_step1_preprocess.yaml
service: veld_preprocess_cze
veld_preprocess_deu:
extends:
file: veld_step1_preprocess.yaml
service: veld_preprocess_deu
veld_preprocess_eng:
extends:
file: veld_step1_preprocess.yaml
service: veld_preprocess_eng
veld_preprocess_fra:
extends:
file: veld_step1_preprocess.yaml
service: veld_preprocess_fra
veld_preprocess_spa:
extends:
file: veld_step1_preprocess.yaml
service: veld_preprocess_spa
# veld_download_models
veld_download_cze:
extends:
file: veld_step2_download_models.yaml
service: veld_download_cze
depends_on:
veld_preprocess_cze:
condition: service_completed_successfully
veld_download_deu:
extends:
file: veld_step2_download_models.yaml
service: veld_download_deu
depends_on:
veld_preprocess_deu:
condition: service_completed_successfully
veld_download_eng:
extends:
file: veld_step2_download_models.yaml
service: veld_download_eng
depends_on:
veld_preprocess_eng:
condition: service_completed_successfully
veld_download_fra:
extends:
file: veld_step2_download_models.yaml
service: veld_download_fra
depends_on:
veld_preprocess_fra:
condition: service_completed_successfully
veld_download_spa:
extends:
file: veld_step2_download_models.yaml
service: veld_download_spa
depends_on:
veld_preprocess_spa:
condition: service_completed_successfully
# veld_infer
veld_infer_cze:
extends:
file: veld_step3_infer.yaml
service: veld_infer_cze
depends_on:
veld_download_cze:
condition: service_completed_successfully
veld_infer_deu:
extends:
file: veld_step3_infer.yaml
service: veld_infer_deu
depends_on:
veld_download_deu:
condition: service_completed_successfully
veld_infer_eng:
extends:
file: veld_step3_infer.yaml
service: veld_infer_eng
depends_on:
veld_download_eng:
condition: service_completed_successfully
veld_infer_fra:
extends:
file: veld_step3_infer.yaml
service: veld_infer_fra
depends_on:
veld_download_fra:
condition: service_completed_successfully
veld_infer_spa:
extends:
file: veld_step3_infer.yaml
service: veld_infer_spa
depends_on:
veld_download_spa:
condition: service_completed_successfully
# veld_analyse
veld_analyse:
extends:
file: veld_step4_analyse.yaml
service: veld_analyse
depends_on:
veld_infer_cze:
condition: service_completed_successfully
veld_infer_deu:
condition: service_completed_successfully
veld_infer_eng:
condition: service_completed_successfully
veld_infer_fra:
condition: service_completed_successfully
veld_infer_spa:
condition: service_completed_successfully