Merge pull request #796 from alibaba-damo-academy/dev_lhn

fix uniasr finetune bug
This commit is contained in:
hnluo 2023-08-02 10:52:03 +08:00 committed by GitHub
commit 0b359919f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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: