The model is an extractive Question Answering algorithm that can find an answer to a question by finding a segment in a text.
The base pretrained model is GatorTronS which was trained on billions of words in various clinical texts (
https://huggingface.co/UFNLP/gatortronS).
Then using the COVID-QA dataset (
https://huggingface.co/datasets/covid_qa_deepset), I fine-tuned the model for an extractive Question Answering algorithm that can answer
a question by finding it within a text.
The github code associated with the model can be found here:
https://github.com/longluu/Medical-QA-extractive.
This dataset contains 2,019 question/answer pairs annotated by volunteer biomedical experts on scientific articles regarding COVID-19 and other medical issues.
The dataset can be found here:
https://github.com/deepset-ai/COVID-QA. The preprocessed data can be found here
https://huggingface.co/datasets/covid_qa_deepset.
The model was trained and validated on train and validation sets.
Here we use 2 metrics for QA tasks exact match and F-1.
Feel free to reach out to me at
thelong20.4@gmail.com if you have any question or suggestion.