sultan commited on
Commit
cbd99a8
1 Parent(s): b9a145a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -5
README.md CHANGED
@@ -24,7 +24,7 @@ models.
24
 
25
  This model is fine-tuned on the SQuAD2.0 dataset. Fine-tuning the biomedical language model on the SQuAD dataset helps improve the score on the BioASQ challenge. If you plan to work with BioASQ or biomedical QA tasks, it's better to use this model over BioM-ELECTRA-Base.
26
 
27
- Huggingface library doesn't implement Layer-Wise decay feature, which affects the performance on SQuAD task. The reported result of BioM-ELECTRA-Base-SQuAD in our paper is 84.4 (F1) since we use ELECTRA open-source code with TF checkpoint, which uses Layer-Wise decay.
28
 
29
 
30
  Evaluation results on SQuAD2.0 Dev Dataset
@@ -51,11 +51,8 @@ Evaluation results on SQuAD2.0 Dev Dataset
51
 
52
  ```python
53
  !git clone https://github.com/huggingface/transformers
54
-
55
  !pip3 install -e transformers
56
-
57
  !pip3 install sentencepiece
58
-
59
  !pip3 install -r /content/transformers/examples/pytorch/question-answering/requirements.txt
60
 
61
  ```
@@ -100,7 +97,6 @@ python transformers/examples/pytorch/question-answering/run_qa.py --model_name_o
100
  ```
101
 
102
  - You don't need to download the SQuAD2 dataset. The code will download it from the HuggingFace datasets hub.
103
-
104
  - Check our GitHub repo at https://github.com/salrowili/BioM-Transformers for TensorFlow and GluonNLP checkpoints.
105
 
106
 
 
24
 
25
  This model is fine-tuned on the SQuAD2.0 dataset. Fine-tuning the biomedical language model on the SQuAD dataset helps improve the score on the BioASQ challenge. If you plan to work with BioASQ or biomedical QA tasks, it's better to use this model over BioM-ELECTRA-Base.
26
 
27
+ Huggingface library doesn't implement Layer-Wise decay feature, which affects the performance on SQuAD task. The reported result of BioM-ELECTRA-Base-SQuAD in our paper is 84.4 (F1) since we use ELECTRA open-source code with TF checkpoint, which uses Layer-Wise decay. You can downoad our TensorFlow checkpoint that was fine-tuned on SQuAD2.0 and achieved 84.4 F1 score from here https://github.com/salrowili/BioM-Transformers .
28
 
29
 
30
  Evaluation results on SQuAD2.0 Dev Dataset
 
51
 
52
  ```python
53
  !git clone https://github.com/huggingface/transformers
 
54
  !pip3 install -e transformers
 
55
  !pip3 install sentencepiece
 
56
  !pip3 install -r /content/transformers/examples/pytorch/question-answering/requirements.txt
57
 
58
  ```
 
97
  ```
98
 
99
  - You don't need to download the SQuAD2 dataset. The code will download it from the HuggingFace datasets hub.
 
100
  - Check our GitHub repo at https://github.com/salrowili/BioM-Transformers for TensorFlow and GluonNLP checkpoints.
101
 
102