CoolFace
Modelpublic

qanastek/FrenchMedMCQA-BART-base-Wikipedia-BM25

sourceHugging Faceapache-2.0updated 4y agoView on Hugging Face
1likes37downloads
Model Card

FrenchMedMCQA : Multiple-choice question answering on pharmacology exams using BART-base, Wikipedia external knowledge and BM25 retriever

People Involved

Affiliations

  1. 1.LIA, NLP team, Avignon University, Avignon, France.
  2. 2.LS2N, TALN team, Nantes University, Nantes, France.
  3. 3.CHU Nantes, Nantes University, Nantes, France.

Demo: How to use in HuggingFace Transformers

Requires Transformers: ``pip install transformers``

python
from datasets import load_dataset
from transformers import AutoTokenizer, AutoModelForSequenceClassification, pipeline

path_model = "qanastek/FrenchMedMCQA-BART-base-Wikipedia-BM25"

tokenizer = AutoTokenizer.from_pretrained(path_model)
model = AutoModelForSequenceClassification.from_pretrained(path_model)

pipeline = pipeline(task="summarization", model=model, tokenizer=tokenizer) # CPU

dataset  = load_dataset("qanastek/FrenchMedMCQA")["test"]

for e in dataset:
    prediction = pipeline(source, truncation=True, max_length=900)[0]["summary_text"]

Output:

[image]

Training data

The questions and their associated candidate answer(s) were collected from real French pharmacy exams on the remede website. Questions and answers were manually created by medical experts and used during examinations. The dataset is composed of 2,025 questions with multiple answers and 1,080 with a single one, for a total of 3,105 questions. Each instance of the dataset contains an identifier, a question, five options (labeled from A to E) and correct answer(s). The average question length is 14.17 tokens and the average answer length is 6.44 tokens. The vocabulary size is of 13k words, of which 3.8k are estimated medical domain-specific words (i.e. a word related to the medical field). We find an average of 2.49 medical domain-specific words in each question (17 % of the words) and 2 in each answer (36 % of the words). On average, a medical domain-specific word is present in 2 questions and in 8 answers.

# AnswersTrainingValidationTestTotal
15951643211,080
25284597670
371871141930
42963056382
5342743
Total21713126223,105

Evaluation results

The test corpora used for this evaluation is available on Github.

ArchitectureHammingEMRHammingEMRHammingEMRHammingEMRHammingEMR
BioBERT V1.136.1915.4338.7216.7233.3314.1435.1316.2334.2713.98
PubMedBERT33.9814.1434.0013.9835.6615.5933.8714.7935.4414.79
CamemBERT-base36.2416.5534.1914.4634.7815.4334.6614.7934.6114.95
XLM-RoBERTa-base37.9217.2031.2611.8935.8416.0732.4714.6333.0014.95
BART-base31.9315.9134.9818.6433.8017.6829.6512.8634.6518.32

BibTeX Citations

Please cite the following paper when using this model.

FrenchMedMCQA corpus and linked tools:

latex
@unpublished{labrak:hal-03824241,
  TITLE = {{FrenchMedMCQA: A French Multiple-Choice Question Answering Dataset for Medical domain}},
  AUTHOR = {Labrak, Yanis and Bazoge, Adrien and Dufour, Richard and Daille, B{\'e}atrice and Gourraud, Pierre-Antoine and Morin, Emmanuel and Rouvier, Mickael},
  URL = {https://hal.archives-ouvertes.fr/hal-03824241},
  NOTE = {working paper or preprint},
  YEAR = {2022},
  MONTH = Oct,
  PDF = {https://hal.archives-ouvertes.fr/hal-03824241/file/LOUHI_2022___QA-3.pdf},
  HAL_ID = {hal-03824241},
  HAL_VERSION = {v1},
}

HuggingFace's Transformers :

latex
@misc{https://doi.org/10.48550/arxiv.1910.03771,
    doi = {10.48550/ARXIV.1910.03771},
    url = {https://arxiv.org/abs/1910.03771},
    author = {Wolf, Thomas and Debut, Lysandre and Sanh, Victor and Chaumond, Julien and Delangue, Clement and Moi, Anthony and Cistac, Pierric and Rault, Tim and Louf, Rémi and Funtowicz, Morgan and Davison, Joe and Shleifer, Sam and von Platen, Patrick and Ma, Clara and Jernite, Yacine and Plu, Julien and Xu, Canwen and Scao, Teven Le and Gugger, Sylvain and Drame, Mariama and Lhoest, Quentin and Rush, Alexander M.},
    keywords = {Computation and Language (cs.CL), FOS: Computer and information sciences, FOS: Computer and information sciences},
    title = {HuggingFace's Transformers: State-of-the-art Natural Language Processing},
    publisher = {arXiv},
    year = {2019}, 
    copyright = {arXiv.org perpetual, non-exclusive license}
}

Acknowledgment

This work was financially supported by Zenidoc, the DIETS project financed by the Agence Nationale de la Recherche (ANR) under contract ANR-20-CE23-0005 and the ANR AIBy4 (ANR-20-THIA-0011).