Fix a typo.

This commit is contained in:
Fangjun Kuang 2021-11-29 07:14:28 +08:00
parent 52a306297c
commit 69bde537a1

View File

@ -122,7 +122,7 @@ class OfflineFeature(nn.Module):
)
features.append(this_chunk)
if end < x.size(0):
last_chunk = self.compute_features(x[end:], vtln_warp)
last_chunk = self.computer.compute_features(x[end:], vtln_warp)
features.append(last_chunk)
features = torch.cat(features, dim=0)