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}'
97
-
}
98
-
}
99
-
stage('L0: Hi ITN grammars') {
100
-
steps {
101
-
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/inverse_text_normalization/inverse_normalize.py --lang=hi --text="एक" --cache_dir ${HI_TN_CACHE}'
102
-
}
103
-
}
104
-
}
105
-
}
106
-
107
-
stage('L0: Create DE/ES TN/ITN Grammars') {
83
+
stage('L0: Create DE/ES/FR TN/ITN Grammars') {
108
84
when {
109
85
anyOf {
110
86
branch 'main'
@@ -140,34 +116,21 @@ pipeline {
140
116
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}'
141
117
}
142
118
}
143
-
}
144
-
}
145
-
146
-
stage('L0: Create AR TN/ITN Grammars') {
147
-
when {
148
-
anyOf {
149
-
branch 'main'
150
-
branch 'staging/**'
151
-
branch 'staging_*'
152
-
changeRequest target: 'main'
153
-
}
154
-
}
155
-
failFast true
156
-
parallel {
157
-
stage('L0: AR TN grammars') {
119
+
stage('L0: FR TN grammars') {
158
120
steps {
159
-
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/text_normalization/normalize.py --lang=ar --text="2" --cache_dir ${AR_TN_CACHE}'
121
+
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/text_normalization/normalize.py --lang=fr --text="2" --cache_dir ${FR_TN_CACHE}'
160
122
}
161
123
}
162
-
stage('L0: AR ITN grammars') {
124
+
stage('L0: FR ITN grammars') {
163
125
steps {
164
-
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/inverse_text_normalization/inverse_normalize.py --lang=ar --text="اثنان " --cache_dir ${AR_TN_CACHE}'
126
+
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/inverse_text_normalization/inverse_normalize.py --lang=fr --text="cent " --cache_dir ${FR_TN_CACHE}'
165
127
}
166
128
}
167
129
}
168
130
}
169
131
170
-
stage('L0: Create FR TN/ITN & VI TN/ITN & HU TN & IT TN') {
132
+
133
+
stage('L0: Create HI/VI/RU TN/ITN') {
171
134
when {
172
135
anyOf {
173
136
branch 'main'
@@ -178,40 +141,40 @@ pipeline {
178
141
}
179
142
failFast true
180
143
parallel {
181
-
stage('L0: FR TN grammars') {
144
+
stage('L0: VI ITN grammars') {
182
145
steps {
183
-
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/text_normalization/normalize.py --lang=fr --text="2" --cache_dir ${FR_TN_CACHE}'
146
+
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}'
184
147
}
185
148
}
186
-
stage('L0: FR ITN grammars') {
149
+
stage('L0: VI TN grammars') {
187
150
steps {
188
-
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/inverse_text_normalization/inverse_normalize.py --lang=fr --text="cent " --cache_dir ${FR_TN_CACHE}'
151
+
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/text_normalization/normalize.py --lang=vi --text="100" --cache_dir ${VI_TN_CACHE}'
189
152
}
190
153
}
191
-
stage('L0: VI ITN grammars') {
154
+
stage('L0: RU TN grammars') {
192
155
steps {
193
-
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}'
156
+
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/text_normalization/normalize_with_audio.py --lang=ru --text="03" --cache_dir ${RU_TN_CACHE}'
194
157
}
195
158
}
196
-
stage('L0: VI TN grammars') {
159
+
stage('L0: RU ITN grammars') {
197
160
steps {
198
-
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/text_normalization/normalize.py --lang=vi --text="100" --cache_dir ${VI_TN_CACHE}'
161
+
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/inverse_text_normalization/inverse_normalize.py --lang=ru --text="три " --cache_dir ${RU_TN_CACHE}'
199
162
}
200
163
}
201
-
stage('L0: HU TN grammars') {
164
+
stage('L0: Hi TN grammars') {
202
165
steps {
203
-
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/text_normalization/normalize.py --lang=hu --text="100" --cache_dir ${HU_TN_CACHE}'
166
+
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/text_normalization/normalize.py --lang=hi --text="१" --cache_dir ${HI_TN_CACHE}'
204
167
}
205
168
}
206
-
stage('L0: IT TN grammars') {
169
+
stage('L0: Hi ITN grammars') {
207
170
steps {
208
-
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/text_normalization/normalize.py --lang=it --text="122" --cache_dir ${IT_TN_CACHE}'
171
+
sh 'CUDA_VISIBLE_DEVICES="" python nemo_text_processing/inverse_text_normalization/inverse_normalize.py --lang=hi --text="एक" --cache_dir ${HI_TN_CACHE}'
0 commit comments