gchhablani commited on
Commit
3782ba8
1 Parent(s): fdc6693

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md CHANGED
@@ -48,6 +48,30 @@ More information needed
48
 
49
  ## Training procedure
50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  ### Training hyperparameters
52
 
53
  The following hyperparameters were used during training:
 
48
 
49
  ## Training procedure
50
 
51
+
52
+ This model is trained using the [run_glue](https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue.py) script. The following command was used:
53
+
54
+ ```bash
55
+ #!/usr/bin/bash
56
+
57
+
58
+ python ../run_glue.py \
59
+ --model_name_or_path bert-base-cased \
60
+ --task_name rte \
61
+ --do_train \
62
+ --do_eval \
63
+ --max_seq_length 512 \
64
+ --per_device_train_batch_size 16 \
65
+ --learning_rate 2e-5 \
66
+ --num_train_epochs 3 \
67
+ --output_dir bert-base-cased-finetuned-rte \
68
+ --push_to_hub \
69
+ --hub_strategy all_checkpoints \
70
+ --logging_strategy epoch \
71
+ --save_strategy epoch \
72
+ --evaluation_strategy epoch \
73
+ ```
74
+
75
  ### Training hyperparameters
76
 
77
  The following hyperparameters were used during training: