Positional Encoding
PositionalEncoding
Bases: Module
Source code in src/transformer/modules/positional_encoding.py
6 7 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 |
|
__init__(d_model, seq_len, dropout)
Trigonometric Positional Encoding
Represents the position of a word within a sequence following Section 3.5 of "Attention is All you Need".
Parameters:
Name | Type | Description | Default |
---|---|---|---|
d_model |
int
|
the Transformer model dimension |
required |
seq_len |
int
|
the sequence lenth of our data |
required |
dropout |
float
|
the dropout percentage |
required |
Source code in src/transformer/modules/positional_encoding.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
|