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
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/text_normalization/normalize.py --lang=hi --text="१" --cache_dir ${HI_TN_CACHE}'
108
-
}
109
-
}
110
-
stage('L0: Hi ITN grammars') {
111
-
steps {
112
-
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/inverse_text_normalization/inverse_normalize.py --lang=hi --text="एक" --cache_dir ${HI_TN_CACHE}'
113
-
}
114
-
}
115
-
116
-
}
117
-
}
118
-
119
-
stage('L0: Create DE/ES TN/ITN Grammars') {
120
-
when {
121
-
anyOf {
122
-
branch 'main'
123
-
changeRequest target: 'main'
124
-
}
125
-
}
126
-
failFast true
127
-
parallel {
128
-
stage('L0: DE TN grammars') {
129
-
steps {
130
-
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/text_normalization/normalize.py --lang=de --text="1" --cache_dir ${DEFAULT_TN_CACHE}'
131
-
}
132
-
}
133
-
stage('L0: DE ITN grammars') {
134
-
steps {
135
-
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/inverse_text_normalization/inverse_normalize.py --lang=de --text="ein hundert " --cache_dir ${DEFAULT_TN_CACHE}'
136
-
}
137
-
}
138
-
stage('L0: ES TN grammars') {
139
-
steps {
140
-
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/text_normalization/normalize.py --lang=es --text="1" --cache_dir ${ES_TN_CACHE}'
141
-
}
142
-
}
143
-
stage('L0: ES ITN grammars') {
144
-
steps {
145
-
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/inverse_text_normalization/inverse_normalize.py --lang=es --text="ciento uno " --cache_dir ${ES_TN_CACHE}'
146
-
}
147
-
}
148
-
stage('L0: Codeswitched ES/EN ITN grammars') {
149
-
steps {
150
-
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/inverse_text_normalization/inverse_normalize.py --lang=es_en --text="ciento uno " --cache_dir ${ES_EN_TN_CACHE}'
151
-
}
152
-
}
153
-
}
154
-
}
155
-
156
-
stage('L0: Create AR TN/ITN Grammars') {
157
-
when {
158
-
anyOf {
159
-
branch 'main'
160
-
changeRequest target: 'main'
161
-
}
162
-
}
163
-
failFast true
164
-
parallel {
165
-
stage('L0: AR TN grammars') {
166
-
steps {
167
-
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/text_normalization/normalize.py --lang=ar --text="2" --cache_dir ${AR_TN_CACHE}'
168
-
}
169
-
}
170
-
stage('L0: AR ITN grammars') {
171
-
steps {
172
-
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/inverse_text_normalization/inverse_normalize.py --lang=ar --text="اثنان " --cache_dir ${AR_TN_CACHE}'
173
-
}
174
-
}
175
-
176
-
}
177
-
}
178
-
179
-
stage('L0: Create FR TN/ITN & VI ITN & HU TN & IT TN') {
180
-
when {
181
-
anyOf {
182
-
branch 'main'
183
-
changeRequest target: 'main'
184
-
}
185
-
}
186
-
failFast true
187
-
parallel {
188
-
stage('L0: FR TN grammars') {
189
-
steps {
190
-
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/text_normalization/normalize.py --lang=fr --text="2" --cache_dir ${FR_TN_CACHE}'
191
-
}
192
-
}
193
-
stage('L0: FR ITN grammars') {
194
-
steps {
195
-
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/inverse_text_normalization/inverse_normalize.py --lang=fr --text="cent " --cache_dir ${FR_TN_CACHE}'
196
-
}
197
-
}
198
-
stage('L0: VI ITN grammars') {
199
-
steps {
200
-
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/inverse_text_normalization/inverse_normalize.py --lang=vi --text="một ngàn " --cache_dir ${VI_TN_CACHE}'
201
-
}
202
-
}
203
-
stage('L0: HU TN grammars') {
204
-
steps {
205
-
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/text_normalization/normalize.py --lang=hu --text="100" --cache_dir ${HU_TN_CACHE}'
206
-
}
207
-
}
208
-
stage('L0: IT TN grammars') {
209
-
steps {
210
-
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/text_normalization/normalize.py --lang=it --text="122" --cache_dir ${IT_TN_CACHE}'
0 commit comments