mirror of https://github.com/coqui-ai/TTS.git
remove Variable from models/tacotron.py
This commit is contained in:
parent
8dc0df5ac2
commit
2c1f66a0fc
|
@ -1,5 +1,4 @@
|
||||||
import torch
|
import torch
|
||||||
from torch.autograd import Variable
|
|
||||||
from torch import nn
|
from torch import nn
|
||||||
from torch.nn import functional as F
|
from torch.nn import functional as F
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
# coding: utf-8
|
# coding: utf-8
|
||||||
import torch
|
import torch
|
||||||
from torch import nn
|
from torch import nn
|
||||||
|
|
||||||
from .attention import AttentionRNN
|
from .attention import AttentionRNN
|
||||||
from .attention import get_mask_from_lengths
|
from .attention import get_mask_from_lengths
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue