zhengyun21 commited on
Commit
f28a4f2
1 Parent(s): 844a5cd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -4
README.md CHANGED
@@ -38,9 +38,9 @@ English (en).
38
 
39
  ## Dataset Structure
40
 
41
- ### PMC-Paitents_full.json
42
 
43
- This file contains all information about patients summaries in PMC-Patients, which is a list of dict with keys:
44
 
45
  - `patient_id`: string. A continuous id of patients, starting from 0.
46
  - `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.
@@ -50,8 +50,8 @@ This file contains all information about patients summaries in PMC-Patients, whi
50
  - `patient`: string. Patient summary.
51
  - `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.
52
  - `gender`: 'M' or 'F'. Male or Female.
53
- - `similar_patients`: list of string. `patient_uid` of the similar patients.
54
- - `relevant_articles`: list of string. `PMID` of the relevant articles.
55
 
56
  ## Dataset Creation
57
 
@@ -60,6 +60,7 @@ If you are interested in the collection of PMC-Patients and reproducing our base
60
  ### Citation Information
61
 
62
  If you find PMC-Patients helpful in your research, please cite our work by:
 
63
  ```
64
  @misc{zhao2023pmcpatients,
65
  title={PMC-Patients: A Large-scale Dataset of Patient Summaries and Relations for Benchmarking Retrieval-based Clinical Decision Support Systems},
 
38
 
39
  ## Dataset Structure
40
 
41
+ ### PMC-Paitents.csv
42
 
43
+ This file contains all information about patients summaries in PMC-Patients, with the following columns:
44
 
45
  - `patient_id`: string. A continuous id of patients, starting from 0.
46
  - `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.
 
50
  - `patient`: string. Patient summary.
51
  - `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.
52
  - `gender`: 'M' or 'F'. Male or Female.
53
+ - `relevant_articles`: dict. The key is PMID of the relevant articles and the corresponding value is its relevance score (2 or 1 as defined in the ``Methods'' section).
54
+ - `similar_patients`: dict. The key is patient_uid of the similar patients and the corresponding value is its similarity score (2 or 1 as defined in the ``Methods'' section).
55
 
56
  ## Dataset Creation
57
 
 
60
  ### Citation Information
61
 
62
  If you find PMC-Patients helpful in your research, please cite our work by:
63
+
64
  ```
65
  @misc{zhao2023pmcpatients,
66
  title={PMC-Patients: A Large-scale Dataset of Patient Summaries and Relations for Benchmarking Retrieval-based Clinical Decision Support Systems},