mirror of
https://github.com/modelscope/FunASR
synced 2025-09-15 14:48:36 +08:00
fix uniasr finetune bug
This commit is contained in:
parent
0f18a6d2a0
commit
0270f62add
@ -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:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user