Skip to content

Commit

Permalink
Bug Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
generalMG committed Jul 21, 2024
1 parent a4f7153 commit ed543db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions train.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
beta2 = 0.95
meta_vocab_size = None

dataset = 'openwebtext'
dataset = 'shakespeare'
batch_size = 1
gradient_accumulation_steps = 512
context_size = 1024
Expand All @@ -40,7 +40,7 @@
eval_interval = 10
log_interval = 10
eval_only = False
out_dir = 'gpt2_openwebtext_pretrain_mlx'
out_dir = 'gpt2_shakespeare_pretrain_mlx'

config_keys = [k for k,v in globals().items() if not k.startswith('_') and isinstance(v, (int, float, bool, str))]
exec(open('configurator.py').read())
Expand Down

0 comments on commit ed543db

Please sign in to comment.