From 0270f62addd6ea7f6141584e2782c6cd751ce1fd Mon Sep 17 00:00:00 2001 From: "haoneng.lhn" Date: Wed, 2 Aug 2023 10:50:23 +0800 Subject: [PATCH] fix uniasr finetune bug --- funasr/modules/subsampling.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/funasr/modules/subsampling.py b/funasr/modules/subsampling.py index 77aa422a2..af33aef10 100644 --- a/funasr/modules/subsampling.py +++ b/funasr/modules/subsampling.py @@ -358,7 +358,8 @@ class Conv1dSubsampling(torch.nn.Module): """ x = x.transpose(1, 2) # (b, d ,t) x = self.pad_fn(x) - x = F.relu(self.conv(x)) + #x = F.relu(self.conv(x)) + x = F.leaky_relu(self.conv(x), negative_slope=0.) x = x.transpose(1, 2) # (b, t ,d) if x_len is None: