gchhablani commited on
Commit
deb1cc1
1 Parent(s): 164222f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +26 -0
README.md CHANGED
@@ -54,6 +54,32 @@ More information needed
54
 
55
  ## Training procedure
56
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57
  ### Training hyperparameters
58
 
59
  The following hyperparameters were used during training:
 
54
 
55
  ## Training procedure
56
 
57
+ 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:
58
+
59
+ ```bash
60
+ #!/usr/bin/bash
61
+
62
+
63
+ #!/usr/bin/bash
64
+
65
+
66
+ python ../run_glue.py \
67
+ --model_name_or_path google/fnet-base \
68
+ --task_name qqp \
69
+ --do_train \
70
+ --do_eval \
71
+ --max_seq_length 512 \
72
+ --per_device_train_batch_size 16 \
73
+ --learning_rate 2e-5 \
74
+ --num_train_epochs 3 \
75
+ --output_dir fnet-base-finetuned-qqp \
76
+ --push_to_hub \
77
+ --hub_strategy all_checkpoints \
78
+ --logging_strategy epoch \
79
+ --save_strategy epoch \
80
+ --evaluation_strategy epoch \
81
+ ```
82
+
83
  ### Training hyperparameters
84
 
85
  The following hyperparameters were used during training: