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
__floordiv__ rounds toward 0 (like the 'trunc' function NOT 'floor'). This results in incorrect rounding for negative values. To keep the current behavior, use torch.div(a, b, rounding_mode='trunc'), or for actual floor division, use torch.div(a, b, rounding_mode='floor').
Some TTS models generate negative loss values during training with the Marylux-648 dataset. This can have an impact on the results.
The text was updated successfully, but these errors were encountered:
__floordiv__
rounds toward 0 (like the 'trunc' function NOT 'floor'). This results in incorrect rounding for negative values. To keep the current behavior, use torch.div(a, b, rounding_mode='trunc'), or for actual floor division, use torch.div(a, b, rounding_mode='floor').Some TTS models generate negative loss values during training with the Marylux-648 dataset. This can have an impact on the results.
The text was updated successfully, but these errors were encountered: