From 722f15451698e635760874c23050cf01937a63f4 Mon Sep 17 00:00:00 2001 From: "david.95" Date: Mon, 29 Aug 2022 17:37:15 +0800 Subject: [PATCH] remove debug code, test=tts --- paddlespeech/t2s/frontend/tone_sandhi.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/paddlespeech/t2s/frontend/tone_sandhi.py b/paddlespeech/t2s/frontend/tone_sandhi.py index 9c6713f65..68fb03fcb 100644 --- a/paddlespeech/t2s/frontend/tone_sandhi.py +++ b/paddlespeech/t2s/frontend/tone_sandhi.py @@ -349,16 +349,7 @@ class ToneSandhi(): finals: List[str]) -> List[str]: finals = self._bu_sandhi(word, finals) - if word=='数额': - print("after _bu_sandhi") - print(finals) finals = self._yi_sandhi(word, finals) - if word=='数额': - print("after _yi_sandhi") - print(finals) finals = self._neural_sandhi(word, pos, finals) - if word=='数额': - print("after _neural_sandhi") - print(finals) finals = self._three_sandhi(word, finals) return finals