Henrychur commited on
Commit
9cb4451
1 Parent(s): bc8aaad

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -0
README.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ tags:
5
+ - medical
6
+ ---
7
+ # MMedS-Bench
8
+ [💻Github Repo](https://github.com/MAGIC-AI4Med/MedS-Ins) [🖨️arXiv Paper](https://arxiv.org/abs/2408.12547)
9
+
10
+ The official instruction finetuning dataset for "Towards Evaluating and Building Versatile Large Language Models for Medicine".
11
+
12
+
13
+
14
+ ## Introduction
15
+ The MedS-Ins dataset is a meticulously curated instruction-tuning dataset, specifically crafted to enhance the capabilities of large language models (LLMs) in handling complex medical tasks. This dataset draws from a diverse array of text domains, encompassing exams, clinical texts, academic papers, medical knowledge bases, and daily conversations. These domains have been carefully selected to represent a wide spectrum of medical knowledge and interaction, providing a well-rounded foundation for training medical LLMs.
16
+ ## Data Format
17
+ The data format is the same as [MedS-Ins](https://huggingface.co/datasets/Henrychur/MedS-Ins).
18
+ ```bash
19
+ {
20
+ "Contributors": [""],
21
+ "Source": [""],
22
+ "URL": [""],
23
+ "Categories": [""],
24
+ "Reasoning": [""],
25
+ "Definition": [""],
26
+ "Input_language": [""],
27
+ "Output_language": [""],
28
+ "Instruction_language": [""],
29
+ "Domains": [""],
30
+ "Positive Examples": [ { "input": "", "output": "", "explanation": ""} ],
31
+ "Negative Examples": [ { "input": "", "output": "", "explanation": ""} ],
32
+ "Instances": [ { "id": "", "input": "", "output": [""]} ],
33
+ }
34
+ ```
35
+