From 81a00ff6be9703161fff85fe2c12959ac0ae6387 Mon Sep 17 00:00:00 2001 From: zxcd <228587199@qq.com> Date: Wed, 8 Feb 2023 11:27:04 +0000 Subject: [PATCH] remove useless print. --- paddlespeech/s2t/models/whisper/whipser.py | 1 - 1 file changed, 1 deletion(-) diff --git a/paddlespeech/s2t/models/whisper/whipser.py b/paddlespeech/s2t/models/whisper/whipser.py index 9234476b5..a28013e4b 100644 --- a/paddlespeech/s2t/models/whisper/whipser.py +++ b/paddlespeech/s2t/models/whisper/whipser.py @@ -195,7 +195,6 @@ class AudioEncoder(nn.Layer): x : paddle.Tensor, shape = (batch_size, n_mels, n_ctx) the mel spectrogram of the audio """ - print (x.shape) x = F.gelu(self.conv1(x)) x = F.gelu(self.conv2(x)) x = paddle.transpose(x, (0, 2, 1))