1
0
mirror of https://github.com/osmarks/nanogpt-experiments.git synced 2024-11-10 20:09:58 +00:00

Frozen GPTConfig

This commit is contained in:
ankandrew 2022-12-29 17:07:19 -03:00
parent 682a0ac8f1
commit 7f0e6d9a71

View File

@ -90,7 +90,7 @@ class Block(nn.Module):
x = x + self.mlp(self.ln_2(x))
return x
@dataclass
@dataclass(frozen=True)
class GPTConfig:
block_size: int = 1024
vocab_size: int = 50257