huggingface / huggingface/course
Typo: "Solutions for erratic curves" +learning_rate=1e-4 must be +learning_rate=1e-46
Open
- Dominant language
- MDX
- Stars
- 4.2k
- Forks
- 1.4k
- Avg merge
- 13m
- Merged PRs (30d)
- 1
Description
in the code provided to sloution to erratic by decreasing the learning rate, but
the code increase it
'''
from transformers import TrainingArguments
training_args = TrainingArguments(
output_dir="./results",
-learning_rate=1e-5,
+learning_rate=1e-4,
-per_device_train_batch_size=16,
+per_device_train_batch_size=32,
)
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.