Skip to content

Commit cfeef6d

Browse files
authored
Typo: SGD->AdamW (ml-explore#471)
1 parent 838990b commit cfeef6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

transformer_lm/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def step(inputs, targets):
189189
"--num_iters", type=int, default=100000, help="Iterations to train for."
190190
)
191191
parser.add_argument(
192-
"--learning_rate", type=float, default=3e-4, help="SGD learning rate."
192+
"--learning_rate", type=float, default=3e-4, help="AdamW learning rate."
193193
)
194194
parser.add_argument(
195195
"--weight_decay", type=float, default=1e-5, help="Set the weight decay"

0 commit comments

Comments
 (0)