Skip to content

Commit

Permalink
AWS Comprehend Medical Update: The InferICD10CM API now returns TIME_…
Browse files Browse the repository at this point in the history
…EXPRESSION entities that refer to medical conditions.
  • Loading branch information
AWS committed Apr 13, 2021
1 parent 9fb25d7 commit 48286c2
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"type": "feature",
"category": "AWS Comprehend Medical",
"contributor": "",
"description": "The InferICD10CM API now returns TIME_EXPRESSION entities that refer to medical conditions."
}
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
{"shape":"InvalidEncodingException"},
{"shape":"TextSizeLimitExceededException"}
],
"documentation":"<p>InferICD10CM detects medical conditions as entities listed in a patient record and links those entities to normalized concept identifiers in the ICD-10-CM knowledge base from the Centers for Disease Control. Amazon Comprehend Medical only detects medical entities in English language texts.</p>"
"documentation":"<p>InferICD10CM detects medical conditions as entities listed in a patient record and links those entities to normalized concept identifiers in the ICD-10-CM knowledge base from the Centers for Disease Control. Amazon Comprehend Medical only detects medical entities in English language texts. </p>"
},
"InferRxNorm":{
"name":"InferRxNorm",
Expand All @@ -168,7 +168,7 @@
{"shape":"InvalidEncodingException"},
{"shape":"TextSizeLimitExceededException"}
],
"documentation":"<p>InferRxNorm detects medications as entities listed in a patient record and links to the normalized concept identifiers in the RxNorm database from the National Library of Medicine. Amazon Comprehend Medical only detects medical entities in English language texts.</p>"
"documentation":"<p>InferRxNorm detects medications as entities listed in a patient record and links to the normalized concept identifiers in the RxNorm database from the National Library of Medicine. Amazon Comprehend Medical only detects medical entities in English language texts. </p>"
},
"ListEntitiesDetectionV2Jobs":{
"name":"ListEntitiesDetectionV2Jobs",
Expand Down Expand Up @@ -827,6 +827,14 @@
"Traits":{
"shape":"ICD10CMTraitList",
"documentation":"<p>The contextual information for the attribute. The traits recognized by InferICD10CM are <code>DIAGNOSIS</code>, <code>SIGN</code>, <code>SYMPTOM</code>, and <code>NEGATION</code>.</p>"
},
"Category":{
"shape":"ICD10CMEntityType",
"documentation":"<p>The category of attribute. Can be either of <code>DX_NAME</code> or <code>TIME_EXPRESSION</code>.</p>"
},
"RelationshipType":{
"shape":"ICD10CMRelationshipType",
"documentation":"<p>The type of relationship between the entity and attribute. Type for the relationship can be either of <code>OVERLAP</code> or <code>SYSTEM_ORGAN_SITE</code>.</p>"
}
},
"documentation":"<p>The detected attributes that relate to an entity. This includes an extracted segment of the text that is an attribute of an entity, or otherwise related to an entity. InferICD10CM detects the following attributes: <code>Direction</code>, <code>System, Organ or Site</code>, and <code>Acuity</code>.</p>"
Expand All @@ -842,7 +850,9 @@
"DIRECTION",
"SYSTEM_ORGAN_SITE",
"QUALITY",
"QUANTITY"
"QUANTITY",
"TIME_TO_DX_NAME",
"TIME_EXPRESSION"
]
},
"ICD10CMConcept":{
Expand Down Expand Up @@ -884,7 +894,7 @@
},
"Type":{
"shape":"ICD10CMEntityType",
"documentation":"<p>Describes the specific type of entity with category of entities. InferICD10CM detects entities of the type <code>DX_NAME</code>.</p>"
"documentation":"<p>Describes the specific type of entity with category of entities. InferICD10CM detects entities of the type <code>DX_NAME</code> and <code>TIME_EXPRESSION</code>.</p>"
},
"Score":{
"shape":"Float",
Expand Down Expand Up @@ -923,7 +933,17 @@
},
"ICD10CMEntityType":{
"type":"string",
"enum":["DX_NAME"]
"enum":[
"DX_NAME",
"TIME_EXPRESSION"
]
},
"ICD10CMRelationshipType":{
"type":"string",
"enum":[
"OVERLAP",
"SYSTEM_ORGAN_SITE"
]
},
"ICD10CMTrait":{
"type":"structure",
Expand Down Expand Up @@ -1027,7 +1047,7 @@
"documentation":"<p>The path to the input data files in the S3 bucket.</p>"
}
},
"documentation":"<p>The input properties for an entities detection job. This includes the name of the S3 bucket and the path to the files to be analyzed. See <a>batch-manifest</a> for more information. </p>"
"documentation":"<p>The input properties for an entities detection job. This includes the name of the S3 bucket and the path to the files to be analyzed. </p>"
},
"Integer":{"type":"integer"},
"InternalServerException":{
Expand Down

0 comments on commit 48286c2

Please sign in to comment.