zhengyun21
commited on
Commit
·
c5fc69c
1
Parent(s):
d8655e9
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,85 @@
|
|
1 |
---
|
2 |
license: cc-by-nc-sa-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: cc-by-nc-sa-4.0
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
tags:
|
6 |
+
- information retrieval
|
7 |
+
- patient similarity
|
8 |
+
- clinical decision support
|
9 |
+
size_categories:
|
10 |
+
- 100K<n<1M
|
11 |
---
|
12 |
+
|
13 |
+
# Dataset Card for PMC-Patients
|
14 |
+
|
15 |
+
## Dataset Description
|
16 |
+
|
17 |
+
- **Homepage:**
|
18 |
+
- **Repository:**
|
19 |
+
- **Paper:**
|
20 |
+
- **Leaderboard:**
|
21 |
+
- **Point of Contact:**
|
22 |
+
|
23 |
+
### Dataset Summary
|
24 |
+
|
25 |
+
**PMC-Patients** is a first-of-its-kind dataset consisting of 167k patient summaries extracted from case reports in PubMed Central (PMC), 3.1M patient-article relevance and 293k patient-patient similarity annotations defined by PubMed citation graph.
|
26 |
+
|
27 |
+
### Supported Tasks and Leaderboards
|
28 |
+
|
29 |
+
Based on PMC-Patients, we define two tasks to benchmark Retrieval-based Clinical Decision Support (ReCDS) systems: Patient-to-Article Retrieval (PAR) and Patient-to-Patient Retrieval (PPR).
|
30 |
+
For details, please refer to [our paper](https://arxiv.org/pdf/2202.13876.pdf) and [leaderboard](https://pmc-patients.github.io/).
|
31 |
+
|
32 |
+
### Languages
|
33 |
+
|
34 |
+
English (en).
|
35 |
+
|
36 |
+
## Dataset Structure
|
37 |
+
|
38 |
+
### PMC-Paitents.json
|
39 |
+
|
40 |
+
This file contains all information about patients summaries in PMC-Patients, which is a list of dict with keys:
|
41 |
+
|
42 |
+
- `patient_id`: string. A continuous id of patients, starting from 0.
|
43 |
+
- `patient_uid`: string. Unique ID for each patient, with format PMID-x, where PMID is the PubMed Identifier of the source article of the patient and x denotes index of the patient in source article.
|
44 |
+
- `PMID`: string. PMID for source article.
|
45 |
+
- `file_path`: string. File path of xml file of source article.
|
46 |
+
- `title`: string. Source article title.
|
47 |
+
- `patient`: string. Patient summary.
|
48 |
+
- `age`: list of tuples. Each entry is in format `(value, unit)` where value is a float number and unit is in 'year', 'month', 'week', 'day' and 'hour' indicating age unit. For example, `[[1.0, 'year'], [2.0, 'month']]` indicating the patient is a one-year- and two-month-old infant.
|
49 |
+
- `gender`: 'M' or 'F'. Male or Female.
|
50 |
+
|
51 |
+
### PAR & PPR Datasets
|
52 |
+
|
53 |
+
We present data of the two retrieval tasks in exactly the same format as [BEIR](https://github.com/beir-cellar/beir/wiki/Load-your-custom-dataset). we refer the readers to their wiki page for the data format.
|
54 |
+
|
55 |
+
The PAR and PPR tasks share queries and query splits. The `_id` field for queries and PPR corpus is `patient_uid` in PMC-Patients, and the `_id` for PAR corpus is the PMID of the article.
|
56 |
+
|
57 |
+
### Data Instances
|
58 |
+
|
59 |
+
[More Information Needed]
|
60 |
+
|
61 |
+
### Data Fields
|
62 |
+
|
63 |
+
[More Information Needed]
|
64 |
+
|
65 |
+
### Data Splits
|
66 |
+
|
67 |
+
[More Information Needed]
|
68 |
+
|
69 |
+
## Dataset Creation
|
70 |
+
|
71 |
+
If you are interested in the collection of PMC-Patients and reproducing our baselines, please refer to [this reporsitory](https://github.com/zhao-zy15/PMC-Patients).
|
72 |
+
|
73 |
+
### Citation Information
|
74 |
+
|
75 |
+
If you find PMC-Patients helpful in your research, please cite our work by:
|
76 |
+
```
|
77 |
+
@misc{zhao2023pmcpatients,
|
78 |
+
title={PMC-Patients: A Large-scale Dataset of Patient Summaries and Relations for Benchmarking Retrieval-based Clinical Decision Support Systems},
|
79 |
+
author={Zhengyun Zhao and Qiao Jin and Fangyuan Chen and Tuorui Peng and Sheng Yu},
|
80 |
+
year={2023},
|
81 |
+
eprint={2202.13876},
|
82 |
+
archivePrefix={arXiv},
|
83 |
+
primaryClass={cs.CL}
|
84 |
+
}
|
85 |
+
```
|