Skip to content

Commit

Permalink
Merge pull request meta-llama#127 from MarkSchmidty/patch-1
Browse files Browse the repository at this point in the history
changed max_seq_len 1024 to 2048
  • Loading branch information
timlacroix authored Mar 5, 2023
2 parents 2845af9 + a81fb4e commit e22bdb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llama/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class ModelArgs:
norm_eps: float = 1e-5

max_batch_size: int = 32
max_seq_len: int = 1024
max_seq_len: int = 2048


class RMSNorm(torch.nn.Module):
Expand Down

0 comments on commit e22bdb2

Please sign in to comment.