blob: 53978cb9e2408c9172d4b482afbd48784c3f8b27 (
plain)
1
2
3
4
5
6
7
8
|
# evaluate the base gpt2
# n_layer=12, n_head=12, n_embd=768
# 124M parameters
batch_size = 8
eval_iters = 500 # use more iterations to get good estimate
eval_only = True
wandb_log = False
init_from = 'gpt2'
|