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

meant to set always_save_checkpoint to False instead, so we only write when val improves

This commit is contained in:
Andrej Karpathy 2023-01-12 05:47:34 +00:00
parent c1ac2d58f1
commit e21cbf887f

View File

@ -7,7 +7,7 @@ eval_iters = 200
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'