jonathanagustin commited on
Commit
42c31a2
1 Parent(s): 4a65d9b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +116 -0
README.md CHANGED
@@ -1,3 +1,119 @@
1
  ---
 
 
2
  license: cc-by-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
  license: cc-by-4.0
5
+ license_link: https://creativecommons.org/licenses/by/4.0/
6
+ tags:
7
+ - automatic-diagnosis
8
+ - automatic-symptom-detection
9
+ - differential-diagnosis
10
+ - synthetic-patients
11
+ - diseases
12
+ - health-care
13
+ pretty_name: DDXPlus
14
+ size_categories:
15
+ - 1K<n<10K
16
+ source_datasets:
17
+ - original
18
+ task_categories:
19
+ - tabular-classification
20
+ task_ids:
21
+ - multi-class-classification
22
+ paperswithcode_id: ddxplus
23
+ configs:
24
+ - config_name: default
25
+ data_files:
26
+ - split: train
27
+ path: "train.csv"
28
+ - split: test
29
+ path: "test.csv"
30
+ - split: validate
31
+ path: "validate.csv"
32
+
33
+ extra_gated_prompt: "By accessing this dataset, you agree to use it solely for research purposes and not for clinical decision-making."
34
+ extra_gated_fields:
35
+ Consent: checkbox
36
+ Purpose of use:
37
+ type: select
38
+ options:
39
+ - Research
40
+ - Educational
41
+ - label: Other
42
+ value: other
43
+
44
+ train-eval-index:
45
+ - config: default
46
+ task: medical-diagnosis
47
+ task_id: binary-classification
48
+ splits:
49
+ train_split: train
50
+ eval_split: validate
51
+ col_mapping:
52
+ AGE: AGE
53
+ SEX: SEX
54
+ PATHOLOGY: PATHOLOGY
55
+ EVIDENCES: EVIDENCES
56
+ INITIAL_EVIDENCE: INITIAL_EVIDENCE
57
+ DIFFERENTIAL_DIAGNOSIS: DIFFERENTIAL_DIAGNOSIS
58
+ metrics:
59
+ - type: accuracy
60
+ name: Accuracy
61
+ - type: f1
62
+ name: F1 Score
63
  ---
64
+
65
+ # Dataset Description
66
+
67
+ We are releasing under the CC-BY licence a new large-scale dataset for Automatic Symptom Detection (ASD) and Automatic Diagnosis (AD) systems in the medical domain. The dataset contains patients synthesized using a proprietary medical knowledge base and a commercial rule-based AD system. Patients in the dataset are characterized by their socio-demographic data, a pathology they are suffering from, a set of symptoms and antecedents related to this pathology, and a differential diagnosis. The symptoms and antecedents can be binary, categorical and multi-choice, with the potential of leading to more efficient and natural interactions between ASD/AD systems and patients. To the best of our knowledge, this is the first large-scale dataset that includes the differential diagnosis, and non-binary symptoms and antecedents.
68
+
69
+ **Note**: We use evidence as a general term to refer to a symptom or an antecedent.
70
+
71
+ This directory contains the following files:
72
+ - **release_evidences.json**: a JSON file describing all possible evidences considered in the dataset.
73
+ - **release_conditions.json**: a JSON file describing all pathologies considered in the dataset.
74
+ - **release_train_patients.zip**: a CSV file containing the patients of the training set.
75
+ - **release_validate_patients.zip**: a CSV file containing the patients of the validation set.
76
+ - **release_test_patients.zip**: a CSV file containing the patients of the test set.
77
+
78
+ ## Evidence Description
79
+
80
+ Each evidence in the `release_evidences.json` file is described using the following entries:
81
+ - **name**: name of the evidence.
82
+ - **code_question**: a code allowing to identify which evidences are related. Evidences having the same `code_question` form a group of related symptoms. The value of the `code_question` refers to the evidence that need to be simulated/activated for the other members of the group to be eventually simulated.
83
+ - **question_fr**: the query, in French, associated to the evidence.
84
+ - **question_en**: the query, in English, associated to the evidence.
85
+ - **is_antecedent**: a flag indicating whether the evidence is an antecedent or a symptom.
86
+ - **data_type**: the type of evidence. We use `B` for binary, `C` for categorical, and `M` for multi-choice evidences.
87
+ - **default_value**: the default value of the evidence. If this value is used to characterize the evidence, then it is as if the evidence was not synthesized.
88
+ - **possible-values**: the possible values for the evidences. Only valid for categorical and multi-choice evidences.
89
+ - **value_meaning**: The meaning, in French and English, of each code that is part of the `possible-values` field. Only valid for categorical and multi-choice evidences.
90
+
91
+ ## Pathology Description
92
+ The file `release_conditions.json` contains information about the pathologies that patients in the datasets may suffer from. Each pathology has the following attributes:
93
+ - **condition_name**: name of the pathology.
94
+ - **cond-name-fr**: name of the pathology in French.
95
+ - **cond-name-eng**: name of the pathology in English.
96
+ - **icd10-id**: ICD-10 code of the pathology.
97
+ - **severity**: the severity associated with the pathology. The lower the more severe.
98
+ - **symptoms**: data structure describing the set of symptoms characterizing the pathology. Each symptom is represented by its corresponding `name` entry in the `release_evidences.json` file.
99
+ - **antecedents**: data structure describing the set of antecedents characterizing the pathology. Each antecedent is represented by its corresponding `name` entry in the `release_evidences.json` file.
100
+
101
+ ## Patient Description
102
+
103
+ Each patient in each of the 3 sets has the following attributes:
104
+ - **AGE**: the age of the synthesized patient.
105
+ - **SEX**: the sex of the synthesized patient.
106
+ - **PATHOLOGY**: name of the ground truth pathology (`condition_name` property in the `release_conditions.json` file) that the synthesized patient is suffering from.
107
+ - **EVIDENCES**: list of evidences experienced by the patient. An evidence can either be binary, categorical or multi-choice. A categorical or multi-choice evidence is represented in the format `[evidence-name]_@_[evidence-value]` where [`evidence-name`] is the name of the evidence (`name` entry in the `release_evidences.json` file) and [`evidence-value`] is a value from the `possible-values` entry. Note that for a multi-choice evidence, it is possible to have several `[evidence-name]_@_[evidence-value]` items in the evidence list, with each item being associated with a different evidence value. A binary evidence is represented as `[evidence-name]`.
108
+ - **INITIAL_EVIDENCE**: the evidence provided by the patient to kick-start an interaction with an ASD/AD system. This is useful during model evaluation for a fair comparison of ASD/AD systems as they will all begin an interaction with a given patient from the same starting point. The initial evidence is randomly selected from the binary evidences found in the evidence list mentioned above (i.e., `EVIDENCES`) and it is part of this list.
109
+ - **DIFFERENTIAL_DIAGNOSIS**: The ground truth differential diagnosis for the patient. It is represented as a list of pairs of the form `[[patho_1, proba_1], [patho_2, proba_2], ...]` where `patho_i` is the pathology name (`condition_name` entry in the `release_conditions.json` file) and `proba_i` is its related probability.
110
+
111
+ ## Note:
112
+
113
+ We hope this dataset will encourage future works for ASD and AD systems that consider the differential diagnosis and the severity of pathologies. It is important to keep in mind that this dataset is formed of synthetic patients and is meant for research purposes. Given the assumptions made during the generation process of this dataset, we would like to emphasize that the dataset should not be used to train and deploy a model prior to performing rigorous evaluations of the model performance and verifying that the system has proper coverage and representation of the population that it will interact with.
114
+
115
+ It is important to understand that the level of specificity, sensitivity and confidence that a physician will seek when evaluating a patient will be influenced by the clinical setting. The dataset was built for acute care and biased toward high mortality and morbidity pathologies. Physicians will tend to consider negative evidences as equally important in such a clinical context in order to evaluate high acuity diseases.
116
+
117
+ In the creation of the DDXPlus dataset, a small subset of the diseases was chosen to establish a baseline. Medical professionals have to consider this very important point when reviewing the results of models trained with this dataset, as the differential is considerably smaller. A smaller differential means less potential evidences to collect. It is thus essential to understand this point when we look at the differential produced and the evidence collected by a model based on this dataset.
118
+
119
+ For more information, please check our [paper](https://arxiv.org/abs/2205.09148).