mirror of
https://github.com/rasbt/LLMs-from-scratch.git
synced 2026-04-10 12:33:42 +00:00
Fix code comment: embed_dim -> d_out (#698)
This commit is contained in:
committed by
GitHub
parent
01be5a42e4
commit
d37ddb668a
@@ -352,7 +352,7 @@
|
||||
" def __init__(self, d_in, d_out, num_heads, context_length, dropout=0.0, qkv_bias=False):\n",
|
||||
" super().__init__()\n",
|
||||
"\n",
|
||||
" assert d_out % num_heads == 0, \"embed_dim is indivisible by num_heads\"\n",
|
||||
" assert d_out % num_heads == 0, \"d_out is indivisible by num_heads\"\n",
|
||||
"\n",
|
||||
" self.num_heads = num_heads\n",
|
||||
" self.context_length = context_length\n",
|
||||
@@ -588,7 +588,7 @@
|
||||
" def __init__(self, d_in, d_out, num_heads, context_length, dropout=0.0, qkv_bias=False):\n",
|
||||
" super().__init__()\n",
|
||||
"\n",
|
||||
" assert d_out % num_heads == 0, \"embed_dim is indivisible by num_heads\"\n",
|
||||
" assert d_out % num_heads == 0, \"d_out is indivisible by num_heads\"\n",
|
||||
"\n",
|
||||
" self.num_heads = num_heads\n",
|
||||
" self.context_length = context_length\n",
|
||||
|
||||
Reference in New Issue
Block a user