Feed Forward
FeedForward
Bases: Module
Creates a feed-forward neural network. The network includes a layer normalization, an activation function (LeakyReLU), and dropout layers.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
d_model |
int
|
The number of expected features in the input. |
required |
kernel_size |
int
|
The size of the convolving kernel for the first conv1d layer. |
required |
dropout |
float
|
The dropout probability. |
required |
expansion_factor |
int
|
The expansion factor for the hidden layer size in the feed-forward network, default is 4. |
4
|
leaky_relu_slope |
float
|
Controls the angle of the negative slope of LeakyReLU activation, default is |
LEAKY_RELU_SLOPE
|
Source code in models/tts/delightful_tts/attention/feed_forward.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
|
forward(x)
Forward pass of the feed-forward neural network.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x |
Tensor
|
Input tensor of shape (batch_size, seq_len, num_features). |
required |
Returns:
Name | Type | Description |
---|---|---|
Tensor |
Tensor
|
Output tensor of shape (batch_size, seq_len, num_features). |
Source code in models/tts/delightful_tts/attention/feed_forward.py
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
|