Created
March 2, 2024 21:37
-
-
Save wolfecameron/3ed9274a0297aab403b5e2d2254ee0ac to your computer and use it in GitHub Desktop.
Feed-forward layer of a transformer.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Source: https://github.com/karpathy/nanoGPT/blob/master/model.py | |
""" | |
from torch import nn | |
class FFNN(nn.Module): | |
def __init__( | |
self, | |
d, | |
bias=False, | |
dropout=0.2, | |
): | |
""" | |
Arguments: | |
d: size of embedding dimension | |
bias: whether or not to use bias in linear layers | |
dropout: probability of dropout | |
""" | |
super().__init__() | |
self.c_fc = nn.Linear(d, 4 * d, bias=bias) | |
self.gelu = nn.GELU() | |
self.c_proj = nn.Linear(4 * d, d, bias=bias) | |
self.dropout = nn.Dropout(dropout) | |
def forward(self, x): | |
x = self.c_fc(x) # [B, T, 4*d] | |
x = self.gelu(x) | |
x = self.c_proj(x) # [B, T, d] | |
x = self.dropout(x) | |
return x |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment