Skip to content

Commit 03e1866

Browse files
committed
restore post_processor for vi
Signed-off-by: Mariana Graterol Fuenmayor <marianag@nvidia.com>
1 parent 5b86ebf commit 03e1866

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nemo_text_processing/text_normalization/normalize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ def normalize(
385385
return text
386386
output = SPACE_DUP.sub(' ', output[1:])
387387

388-
if self.lang in ["en", "hi"] and hasattr(self, 'post_processor') and self.post_processor is not None:
388+
if self.lang in ["en", "hi", "vi"] and hasattr(self, 'post_processor') and self.post_processor is not None:
389389
output = self.post_process(output)
390390

391391
if punct_post_process:

0 commit comments

Comments
 (0)