Views
No views yet
| Model | Exact Match (EM) | F1 Score |
|---|---|---|
| ELECTRA-Base-SQuAD2-BioASQ8B | 61.89 | 74.39 |
| BioM-ELECTRA-Base-SQuAD2-BioASQ8B | 70.31 | 80.90 |
| ELECTRA-Large-SQuAD2-BioASQ8B | 67.36 | 78.90 |
| BioM-ELECTRA-Large-SQuAD2-BioASQ8B | 74.31 | 84.72 |
1python3 run_squad.py --model_type electra --model_name_or_path sultan/BioM-ELECTRA-Base-SQuAD2 \
2--train_file BioASQ8B/train.json \
3--predict_file BioASQ8B/dev.json \
4--do_lower_case \
5--do_train \
6--do_eval \
7--threads 20 \
8--version_2_with_negative \
9--num_train_epochs 3 \
10--learning_rate 3e-5 \
11--max_seq_length 512 \
12--doc_stride 128 \
13--per_gpu_train_batch_size 8 \
14--gradient_accumulation_steps 2 \
15--per_gpu_eval_batch_size 128 \
16--logging_steps 50 \
17--save_steps 5000 \
18--fp16 \
19--fp16_opt_level O1 \
20--overwrite_output_dir \
21--output_dir BioM-ELECTRA-Base-SQuAD-BioASQ \
22--overwrite_cache1@inproceedings{alrowili-shanker-2021-biom,
2title = "{B}io{M}-Transformers: Building Large Biomedical Language Models with {BERT}, {ALBERT} and {ELECTRA}",
3author = "Alrowili, Sultan and
4Shanker, Vijay",
5booktitle = "Proceedings of the 20th Workshop on Biomedical Language Processing",
6month = jun,
7year = "2021",
8address = "Online",
9publisher = "Association for Computational Linguistics",
10url = "https://www.aclweb.org/anthology/2021.bionlp-1.24",
11pages = "221--227",
12abstract = "The impact of design choices on the performance of biomedical language models recently has been a subject for investigation. In this paper, we empirically study biomedical domain adaptation with large transformer models using different design choices. We evaluate the performance of our pretrained models against other existing biomedical language models in the literature. Our results show that we achieve state-of-the-art results on several biomedical domain tasks despite using similar or less computational cost compared to other models in the literature. Our findings highlight the significant effect of design choices on improving the performance of biomedical language models.",
13}