sultan commited on
Commit
7b4612b
1 Parent(s): d2c9ea9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -8
README.md CHANGED
@@ -22,7 +22,7 @@ models.
22
 
23
  # Model Description
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-Large. This model (TensorFlow version ) took the lead in the BioASQ9b-Factoid challenge under the name of (UDEL-LAB2). To see the full details of BioASQ9B results, please check this link http://participants-area.bioasq.org/results/9b/phaseB/ ( you need to register).
26
 
27
  Huggingface library doesn't implement Layer-Wise decay feature, which affects the performance on SQuAD task. The reported result of BioM-ELECTRA-SQuAD in our paper is 88.3 (F1) since we use ELECTRA open-source code with TF checkpoint, which uses Layer-Wise decay.
28
 
@@ -60,13 +60,13 @@ To reproduce results in Google Colab:
60
  - Run this python code:
61
 
62
  ```python
63
- python /content/transformers/examples/pytorch/question-answering/run_qa.py --model_name_or_path sultan/BioM-ELECTRA-Large-SQuAD2 \
64
- --do_eval \
65
- --version_2_with_negative \
66
- --per_device_eval_batch_size 8 \
67
- --dataset_name squad_v2 \
68
- --overwrite_output_dir \
69
- --fp16 \
70
  --output_dir out
71
  ```
72
 
 
22
 
23
  # Model Description
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-Large. This model (TensorFlow version ) took the lead in the BioASQ9b-Factoid challenge (Batch 5) under the name of (UDEL-LAB2). To see the full details of BioASQ9B results, please check this link http://participants-area.bioasq.org/results/9b/phaseB/ ( you need to register).
26
 
27
  Huggingface library doesn't implement Layer-Wise decay feature, which affects the performance on SQuAD task. The reported result of BioM-ELECTRA-SQuAD in our paper is 88.3 (F1) since we use ELECTRA open-source code with TF checkpoint, which uses Layer-Wise decay.
28
 
 
60
  - Run this python code:
61
 
62
  ```python
63
+ python /content/transformers/examples/pytorch/question-answering/run_qa.py --model_name_or_path sultan/BioM-ELECTRA-Large-SQuAD2 \\
64
+ --do_eval \\
65
+ --version_2_with_negative \\
66
+ --per_device_eval_batch_size 8 \\
67
+ --dataset_name squad_v2 \\
68
+ --overwrite_output_dir \\
69
+ --fp16 \\
70
  --output_dir out
71
  ```
72