We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hi,我理解的look-ahead是使用多少未来帧,可是我在看您代码的过程中发现是在后面补两帧0,noisy_mag = F.pad(noisy_mag, [0, self.look_ahead]),最后只取第二帧之后的数据output = sb_mask[:, :, :, self.look_ahead:]
noisy_mag = F.pad(noisy_mag, [0, self.look_ahead])
output = sb_mask[:, :, :, self.look_ahead:]
是不是在推理的过程中,不需要补0,而是直接处理3帧,结果出一帧(output = sb_mask[:, :, :, self.look_ahead:])之后,然后流式的一帧进 一帧出
The text was updated successfully, but these errors were encountered:
No branches or pull requests
hi,我理解的look-ahead是使用多少未来帧,可是我在看您代码的过程中发现是在后面补两帧0,
noisy_mag = F.pad(noisy_mag, [0, self.look_ahead])
,最后只取第二帧之后的数据output = sb_mask[:, :, :, self.look_ahead:]
是不是在推理的过程中,不需要补0,而是直接处理3帧,结果出一帧(
output = sb_mask[:, :, :, self.look_ahead:]
)之后,然后流式的一帧进 一帧出The text was updated successfully, but these errors were encountered: