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