Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,3 +1,72 @@
|
|
1 |
-
---
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
pretty_name: "MedBrowseComp: Medical Browsing and Comparison Dataset"
|
5 |
+
tags:
|
6 |
+
- medical
|
7 |
+
- healthcare
|
8 |
+
- browsing
|
9 |
+
- comparison
|
10 |
+
license: "apache-2.0"
|
11 |
+
task_categories:
|
12 |
+
- question-answering
|
13 |
+
- text-retrieval
|
14 |
+
configs:
|
15 |
+
- config_name: default # Defines a configuration named 'default'
|
16 |
+
data_files: # Specifies data files for this configuration
|
17 |
+
- split: MedBrowseComp_50
|
18 |
+
path: MedBrowseComp_50.csv
|
19 |
+
- split: MedBrowseComp_605
|
20 |
+
path: MedBrowseComp_605.csv
|
21 |
+
- split: MedBrowseComp_CUA
|
22 |
+
path: MedBrowseComp_CUA.csv
|
23 |
+
|
24 |
+
---
|
25 |
+
|
26 |
+
# MedBrowseComp Dataset
|
27 |
+
|
28 |
+
This repository contains datasets for medical browsing and comparison tasks.
|
29 |
+
|
30 |
+
## Datasets
|
31 |
+
|
32 |
+
The repository contains three harmonized datasets:
|
33 |
+
|
34 |
+
1. **MedBrowseComp_50**: A collection of 50 medical entries for browsing and comparison.
|
35 |
+
2. **MedBrowseComp_605**: A comprehensive collection of 605 medical entries.
|
36 |
+
3. **MedBrowseComp_CUA**: A curated collection of medical data for comparison and analysis.
|
37 |
+
|
38 |
+
## Usage
|
39 |
+
|
40 |
+
These datasets can be used for various medical text processing tasks, information retrieval, and comparative analysis.
|
41 |
+
|
42 |
+
Example usage with the Hugging Face datasets library:
|
43 |
+
|
44 |
+
```python
|
45 |
+
from datasets import load_dataset
|
46 |
+
|
47 |
+
# Load the dataset
|
48 |
+
dataset = load_dataset("AIM-Harvard/MedBrowseComp")
|
49 |
+
|
50 |
+
# Access specific splits
|
51 |
+
med50_data = dataset["MedBrowseComp_50"]
|
52 |
+
med605_data = dataset["MedBrowseComp_605"]
|
53 |
+
cua_data = dataset["MedBrowseComp_CUA"]
|
54 |
+
```
|
55 |
+
|
56 |
+
## GitHub Repository
|
57 |
+
|
58 |
+
For more information and related tools, visit: [https://github.com/MedBrowseComp](https://github.com/MedBrowseComp)
|
59 |
+
|
60 |
+
## Citation
|
61 |
+
|
62 |
+
If you use this dataset in your research, please cite:
|
63 |
+
|
64 |
+
```
|
65 |
+
@dataset{medbrowsecomp2025,
|
66 |
+
author = {AIM-Harvard},
|
67 |
+
title = {MedBrowseComp: Medical Browsing and Comparison Dataset},
|
68 |
+
year = {2025},
|
69 |
+
publisher = {Hugging Face},
|
70 |
+
url = {https://huggingface.co/datasets/AIM-Harvard/MedBrowseComp}
|
71 |
+
}
|
72 |
+
```
|