You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I notice in utterance_mvn(), if norm_means is True, then std.sqrt() is performed twice?
is there any explanation?
if norm_means:
x -= mean
if norm_vars:
var = x.pow(2).sum(dim=1, keepdim=True) / ilens_
std = torch.clamp(var.sqrt(), min=eps)
x = x / std.sqrt()
return x, ilens
The text was updated successfully, but these errors were encountered:
I notice in utterance_mvn(), if norm_means is True, then std.sqrt() is performed twice?
is there any explanation?
The text was updated successfully, but these errors were encountered: