mirror of
https://github.com/rasbt/LLMs-from-scratch.git
synced 2026-04-10 12:33:42 +00:00
update pr
This commit is contained in:
@@ -341,7 +341,7 @@
|
||||
" self.d_out = d_out\n",
|
||||
"\n",
|
||||
" self.qkv = nn.Linear(d_in, 3 * d_out, bias=qkv_bias)\n",
|
||||
" self.proj = nn.Linear(d_in, d_out)\n",
|
||||
" self.proj = nn.Linear(d_out, d_out)\n",
|
||||
" self.dropout = dropout\n",
|
||||
"\n",
|
||||
" def forward(self, x):\n",
|
||||
|
||||
Reference in New Issue
Block a user