feat: Add model checkpoints and configurations

This commit is contained in:
2025-10-20 09:38:24 +08:00
parent 9a9de170d1
commit 6b782b86e1
4 changed files with 36 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,18 @@
{
"n_layer": 12,
"n_embd": 120,
"n_head": 12,
"max_epoch": 200,
"batch_size": 128,
"lr_initial": 0.0006,
"lr_final": 6e-05,
"weight_decay": 0.2,
"warmup_epochs": 10,
"early_stopping_patience": 10,
"pdrop": 0.0,
"token_pdrop": 0.0,
"betas": [
0.9,
0.99
]
}

View File

@@ -0,0 +1,18 @@
{
"n_layer": 16,
"n_embd": 256,
"n_head": 16,
"max_epoch": 200,
"batch_size": 128,
"lr_initial": 0.0006,
"lr_final": 6e-05,
"weight_decay": 0.2,
"warmup_epochs": 10,
"early_stopping_patience": 10,
"pdrop": 0.0,
"token_pdrop": 0.0,
"betas": [
0.9,
0.99
]
}