Raychanan commited on
Commit
0f40ee7
1 Parent(s): 6afb06d

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -0
README.md ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ training_args = TrainingArguments(
2
+ output_dir="./results",
3
+ learning_rate=5e-5,
4
+ per_device_train_batch_size=1,
5
+ per_device_eval_batch_size=1,
6
+ num_train_epochs=5,
7
+ weight_decay=0.01,
8
+ evaluation_strategy="epoch",
9
+ push_to_hub=True
10
+ )