Skip to content

Commit

Permalink
meant to set always_save_checkpoint to False instead, so we only writ…
Browse files Browse the repository at this point in the history
…e when val improves
  • Loading branch information
karpathy committed Jan 12, 2023
1 parent c1ac2d5 commit e21cbf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/train_shakespeare_char.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
log_interval = 10 # don't print too too often

# we expect to overfit on this small dataset, so only save when val improves
always_save_checkpoint = True
always_save_checkpoint = False

wandb_log = False # override via command line if you like
wandb_project = 'shakespeare-char'
Expand Down

0 comments on commit e21cbf8

Please sign in to comment.