medalpaca/medalpaca-7b

Model

91

stars

14

commits

9

repos using this model

4

linked in READMEs

Apr 2, 2024

updated

endpoints_compatible
llama
medical
pytorch
safetensors
text-generation
text-generation-inference
transformers

README

MedAlpaca 7b

Table of Contents

Model Description

Model Description

Architecture

medalpaca-7b is a large language model specifically fine-tuned for medical domain tasks. It is based on LLaMA (Large Language Model Meta AI) and contains 7 billion parameters. The primary goal of this model is to improve question-answering and medical dialogue tasks. Architecture

Training Data

The training data for this project was sourced from various resources. Firstly, we used Anki flashcards to automatically generate questions, from the front of the cards and anwers from the back of the card. Secondly, we generated medical question-answer pairs from Wikidoc. We extracted paragraphs with relevant headings, and used Chat-GPT 3.5 to generate questions from the headings and using the corresponding paragraphs as answers. This dataset is still under development and we believe that approximately 70% of these question answer pairs are factual correct. Thirdly, we used StackExchange to extract question-answer pairs, taking the top-rated question from five categories: Academia, Bioinformatics, Biology, Fitness, and Health. Additionally, we used a dataset from ChatDoctor consisting of 200,000 question-answer pairs, available at https://github.com/Kent0n-Li/ChatDoctor.

Sourcen items
ChatDoc large200000
wikidoc67704
Stackexchange academia40865
Anki flashcards33955
Stackexchange biology27887
Stackexchange fitness9833
Stackexchange health7721
Wikidoc patient information5942
Stackexchange bioinformatics5407

Model Usage

To evaluate the performance of the model on a specific dataset, you can use the Hugging Face Transformers library's built-in evaluation scripts. Please refer to the evaluation guide for more information. Inference

You can use the model for inference tasks like question-answering and medical dialogues using the Hugging Face Transformers library. Here's an example of how to use the model for a question-answering task:


from transformers import pipeline

pl = pipeline("text-generation", model="medalpaca/medalpaca-7b", tokenizer="medalpaca/medalpaca-7b")
question = "What are the symptoms of diabetes?"
context = "Diabetes is a metabolic disease that causes high blood sugar. The symptoms include increased thirst, frequent urination, and unexplained weight loss."
answer = pl(f"Context: {context}\n\nQuestion: {question}\n\nAnswer: ")
print(answer)

Limitations

The model may not perform effectively outside the scope of the medical domain. The training data primarily targets the knowledge level of medical students, which may result in limitations when addressing the needs of board-certified physicians. The model has not been tested in real-world applications, so its efficacy and accuracy are currently unknown. It should never be used as a substitute for a doctor's opinion and must be treated as a research tool only.

Open LLM Leaderboard Evaluation Results

Detailed results can be found here

MetricValue
Avg.44.98
ARC (25-shot)54.1
HellaSwag (10-shot)80.42
MMLU (5-shot)41.47
TruthfulQA (0-shot)40.46
Winogrande (5-shot)71.19
GSM8K (5-shot)3.03
DROP (3-shot)24.21

Contributors

kbressem

9 commits

basujindal

1 commits

KB
Keno Bressem

1 commits

medalpaca/medalpaca-7b

Model

91

stars

14

commits

9

repos using this model

4

linked in READMEs

Apr 2, 2024

updated

endpoints_compatible
llama
medical
pytorch
safetensors
text-generation
text-generation-inference
transformers

README

MedAlpaca 7b

Table of Contents

Model Description

Model Description

Architecture

medalpaca-7b is a large language model specifically fine-tuned for medical domain tasks. It is based on LLaMA (Large Language Model Meta AI) and contains 7 billion parameters. The primary goal of this model is to improve question-answering and medical dialogue tasks. Architecture

Training Data

The training data for this project was sourced from various resources. Firstly, we used Anki flashcards to automatically generate questions, from the front of the cards and anwers from the back of the card. Secondly, we generated medical question-answer pairs from Wikidoc. We extracted paragraphs with relevant headings, and used Chat-GPT 3.5 to generate questions from the headings and using the corresponding paragraphs as answers. This dataset is still under development and we believe that approximately 70% of these question answer pairs are factual correct. Thirdly, we used StackExchange to extract question-answer pairs, taking the top-rated question from five categories: Academia, Bioinformatics, Biology, Fitness, and Health. Additionally, we used a dataset from ChatDoctor consisting of 200,000 question-answer pairs, available at https://github.com/Kent0n-Li/ChatDoctor.

Sourcen items
ChatDoc large200000
wikidoc67704
Stackexchange academia40865
Anki flashcards33955
Stackexchange biology27887
Stackexchange fitness9833
Stackexchange health7721
Wikidoc patient information5942
Stackexchange bioinformatics5407

Model Usage

To evaluate the performance of the model on a specific dataset, you can use the Hugging Face Transformers library's built-in evaluation scripts. Please refer to the evaluation guide for more information. Inference

You can use the model for inference tasks like question-answering and medical dialogues using the Hugging Face Transformers library. Here's an example of how to use the model for a question-answering task:


from transformers import pipeline

pl = pipeline("text-generation", model="medalpaca/medalpaca-7b", tokenizer="medalpaca/medalpaca-7b")
question = "What are the symptoms of diabetes?"
context = "Diabetes is a metabolic disease that causes high blood sugar. The symptoms include increased thirst, frequent urination, and unexplained weight loss."
answer = pl(f"Context: {context}\n\nQuestion: {question}\n\nAnswer: ")
print(answer)

Limitations

The model may not perform effectively outside the scope of the medical domain. The training data primarily targets the knowledge level of medical students, which may result in limitations when addressing the needs of board-certified physicians. The model has not been tested in real-world applications, so its efficacy and accuracy are currently unknown. It should never be used as a substitute for a doctor's opinion and must be treated as a research tool only.

Open LLM Leaderboard Evaluation Results

Detailed results can be found here

MetricValue
Avg.44.98
ARC (25-shot)54.1
HellaSwag (10-shot)80.42
MMLU (5-shot)41.47
TruthfulQA (0-shot)40.46
Winogrande (5-shot)71.19
GSM8K (5-shot)3.03
DROP (3-shot)24.21

Contributors

kbressem

9 commits

basujindal

1 commits

KB
Keno Bressem

1 commits