Spaces:
Sleeping
Sleeping
Update Encoder.py
Browse files- Encoder.py +1 -0
Encoder.py
CHANGED
|
@@ -2,6 +2,7 @@ from torch import nn
|
|
| 2 |
from torch.nn import functional as F
|
| 3 |
from nn_layers import convolutional_module
|
| 4 |
|
|
|
|
| 5 |
|
| 6 |
class Encoder(nn.Module):
|
| 7 |
"""This is the encoder part of tacotron2. It includes a stack of three 1d convolutional layers
|
|
|
|
| 2 |
from torch.nn import functional as F
|
| 3 |
from nn_layers import convolutional_module
|
| 4 |
|
| 5 |
+
torch.manual_seed(1234)
|
| 6 |
|
| 7 |
class Encoder(nn.Module):
|
| 8 |
"""This is the encoder part of tacotron2. It includes a stack of three 1d convolutional layers
|