zhengyun21 commited on
Commit
14ffa33
1 Parent(s): 1f6042d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +67 -0
README.md CHANGED
@@ -1,3 +1,70 @@
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
+ - patient summary
7
+ size_categories:
8
+ - 100K<n<1M
9
  ---
10
+
11
+ # Dataset Card for PMC-Patients
12
+
13
+ ## Dataset Description
14
+
15
+ - **Homepage:** https://github.com/pmc-patients/pmc-patients
16
+ - **Repository:** https://github.com/pmc-patients/pmc-patients
17
+ - **Paper:** https://arxiv.org/pdf/2202.13876.pdf
18
+ - **Leaderboard:** https://pmc-patients.github.io/
19
+ - **Point of Contact:** [email protected]
20
+
21
+ ### Dataset Summary
22
+
23
+ **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.
24
+
25
+
26
+ ### Supported Tasks and Leaderboards
27
+
28
+ **This is purely the patient summary dataset with relational annotations. For ReCDS benchmark, refer to [this dataset](https://huggingface.co/datasets/zhengyun21/PMC-Patients-ReCDS)**
29
+
30
+ 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).
31
+ For details, please refer to [our paper](https://arxiv.org/pdf/2202.13876.pdf) and [leaderboard](https://pmc-patients.github.io/).
32
+
33
+ ### Languages
34
+
35
+ English (en).
36
+
37
+ ## Dataset Structure
38
+
39
+ ### PMC-Paitents_full.json
40
+
41
+ This file contains all information about patients summaries in PMC-Patients, which is a list of dict with keys:
42
+
43
+ - `patient_id`: string. A continuous id of patients, starting from 0.
44
+ - `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.
45
+ - `PMID`: string. PMID for source article.
46
+ - `file_path`: string. File path of xml file of source article.
47
+ - `title`: string. Source article title.
48
+ - `patient`: string. Patient summary.
49
+ - `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.
50
+ - `gender`: 'M' or 'F'. Male or Female.
51
+ - `similar_patients`: list of string. `patient_uid` of the similar patients.
52
+ - `relevant_articles`: list of string. `PMID` of the relevant articles.
53
+
54
+ ## Dataset Creation
55
+
56
+ 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).
57
+
58
+ ### Citation Information
59
+
60
+ If you find PMC-Patients helpful in your research, please cite our work by:
61
+ ```
62
+ @misc{zhao2023pmcpatients,
63
+ title={PMC-Patients: A Large-scale Dataset of Patient Summaries and Relations for Benchmarking Retrieval-based Clinical Decision Support Systems},
64
+ author={Zhengyun Zhao and Qiao Jin and Fangyuan Chen and Tuorui Peng and Sheng Yu},
65
+ year={2023},
66
+ eprint={2202.13876},
67
+ archivePrefix={arXiv},
68
+ primaryClass={cs.CL}
69
+ }
70
+ ```