toderian commited on
Commit
957b4f0
·
verified ·
1 Parent(s): 11a9cc2

Add preprocessor_config.json

Browse files
Files changed (1) hide show
  1. preprocessor_config.json +60 -0
preprocessor_config.json ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "1.0.0",
3
+ "feature_order": [
4
+ "developmental_milestones",
5
+ "iq_dq",
6
+ "intellectual_disability",
7
+ "language_disorder",
8
+ "language_development",
9
+ "dysmorphism",
10
+ "behaviour_disorder",
11
+ "neurological_exam"
12
+ ],
13
+ "categorical_features": {
14
+ "developmental_milestones": {
15
+ "type": "categorical",
16
+ "mapping": {"N": 0, "G": 1, "M": 2, "C": 3},
17
+ "description": "N=Normal, G=Global delay, M=Motor delay, C=Cognitive delay"
18
+ },
19
+ "intellectual_disability": {
20
+ "type": "categorical",
21
+ "mapping": {"N": 0, "F70.0": 1, "F71": 2, "F72": 3},
22
+ "description": "N=None, F70.0=Mild (ICD-10), F71=Moderate, F72=Severe"
23
+ },
24
+ "language_disorder": {
25
+ "type": "binary",
26
+ "mapping": {"N": 0, "Y": 1},
27
+ "description": "N=No, Y=Yes"
28
+ },
29
+ "language_development": {
30
+ "type": "categorical",
31
+ "mapping": {"N": 0, "delay": 1, "A": 2},
32
+ "description": "N=Normal, delay=Delayed, A=Absent"
33
+ },
34
+ "dysmorphism": {
35
+ "type": "binary",
36
+ "mapping": {"NO": 0, "Y": 1},
37
+ "description": "NO=No dysmorphic features, Y=Yes"
38
+ },
39
+ "behaviour_disorder": {
40
+ "type": "binary",
41
+ "mapping": {"N": 0, "Y": 1},
42
+ "description": "N=No, Y=Yes"
43
+ },
44
+ "neurological_exam": {
45
+ "type": "text_binary",
46
+ "normal_value": "N",
47
+ "encoding": {"normal": 0, "abnormal": 1},
48
+ "description": "'N' for normal, any other non-empty string indicates abnormality"
49
+ }
50
+ },
51
+ "numeric_features": {
52
+ "iq_dq": {
53
+ "type": "numeric",
54
+ "min": 20,
55
+ "max": 150,
56
+ "normalization": "min_max",
57
+ "description": "IQ or Developmental Quotient score"
58
+ }
59
+ }
60
+ }