The dataset is currently empty. Upload or create new data files. Then, you will be able to explore them in the Dataset Viewer.

The StatPearls Corpus in MedRAG

This HF dataset contains the information of the StatPearls corpus used in MedRAG. It can be used for medical Retrieval-Augmented Generation (RAG).

According to the privacy policy of StatPearls, we are not allowed to distribute the StatPearls content. Please download the raw data from NCBI Bookshelf and use our code for the chunking.

Dataset Details

Dataset Descriptions

StatPearls is a point-of-the-care clinical decision support tool similar to UpToDate. We use the 9,330 publicly available StatPearl articles through NCBI Bookshelf to construct the StatPearls corpus. We chunked StatPearls according to the hierarchical structure, treating each paragraph in an article as a snippet and splicing all the relevant hierarchical headings as the corresponding title. Our chunked corpus contains 301,202 snippets with an average of 119 tokens.

Dataset Structure

Each row is a snippet of StatPearls, which includes the following features:

  • id: a unique identifier of the snippet
  • title: the title and subtitles of the StatPearl article from which the snippet is collected
  • content: the content of the snippet
  • contents: a concatenation of 'title' and 'content', which will be used by the BM25 retriever

Uses

Direct Use

git clone https://github.com/Teddy-XiongGZ/MedRAG.git
cd MedRAG

wget https://ftp.ncbi.nlm.nih.gov/pub/litarch/3d/12/statpearls_NBK430685.tar.gz -P ./corpus/statpearls
tar -xzvf ./corpus/statpearls/statpearls_NBK430685.tar.gz -C ./corpus/statpearls
python src/data/statpearls.py

Use in MedRAG

>> from src.medrag import MedRAG

>> question = "A lesion causing compression of the facial nerve at the stylomastoid foramen will cause ipsilateral"
>> options = {
    "A": "paralysis of the facial muscles.",
    "B": "paralysis of the facial muscles and loss of taste.",
    "C": "paralysis of the facial muscles, loss of taste and lacrimation.",
    "D": "paralysis of the facial muscles, loss of taste, lacrimation and decreased salivation."
}

>> medrag = MedRAG(llm_name="OpenAI/gpt-3.5-turbo-16k", rag=True, retriever_name="MedCPT", corpus_name="StatPearls")
>> answer, snippets, scores = medrag.answer(question=question, options=options, k=32) # scores are given by the retrieval system

Citation

@article{xiong2024benchmarking,
    title={Benchmarking Retrieval-Augmented Generation for Medicine}, 
    author={Guangzhi Xiong and Qiao Jin and Zhiyong Lu and Aidong Zhang},
    journal={arXiv preprint arXiv:2402.13178},
    year={2024}
}
Downloads last month
0
Edit dataset card

Models trained or fine-tuned on MedRAG/statpearls