Description
This pipeline is designed to:
- extract clinical entities
- assign assertion status to the extracted entities
- establish relations between the extracted entities
from clinical texts. In this pipeline, ner_jsl NER model, assertion_jsl assertion model, re_test_result_date, and posology_re relation extraction models were used to achieve those tasks. Here are the NER, assertion, and relation extraction labels this pipeline can extract. Here are the NER, assertion, and relation extraction labels this pipeline can extract.
-
Clinical Entity Labels:
Admission_Discharge
Age
Alcohol
Allergen
BMI
Birth_Entity
Blood_Pressure
Cerebrovascular_Disease
Clinical_Dept
Communicable_Disease
Date
Death_Entity
Diabetes
Diet
Direction
Disease_Syndrome_Disorder
Dosage
Drug_BrandName
Drug_Ingredient
Duration
EKG_Findings
Employment
External_body_part_or_region
Family_History_Header
Fetus_NewBorn
Form
Frequency
Gender
HDL
Heart_Disease
Height
Hyperlipidemia
Hypertension
ImagingFindings
Imaging_Technique
Injury_or_Poisoning
Internal_organ_or_component
Kidney_Disease
LDL
Labour_Delivery
Medical_Device
Medical_History_Header
Modifier
O2_Saturation
Obesity
Oncological
Overweight
Oxygen_Therapy
Pregnancy
Procedure
Psychological_Condition
Pulse
Race_Ethnicity
Relationship_Status
RelativeDate
RelativeTime
Respiration
Route
Section_Header
Sexually_Active_or_Sexual_Orientation
Smoking
Social_History_Header
Strength
Substance
Substance_Quantity
Symptom
Temperature
Test
Test_Result
Time
Total_Cholesterol
Treatment
Triglycerides
VS_Finding
Vaccine
Vaccine_Name
Vital_Signs_Header
Weight
-
Assertion Status Labels:
Hypothetical
,Someoneelse
,Past
,Absent
,Family
,Planned
,Possible
,Present
-
Relation Extraction Labels:
is_finding_of
,is_date_of
,is_result_of
,Drug_BrandName-Dosage
,Drug_BrandName-Frequency
,Drug_BrandName-Route
,Drug_BrandName-Strength
,Drug_Ingredient-Dosage
,Drug_Ingredient-Frequency
,Drug_Ingredient-Route
,Drug_Ingredient-Strength
,O
How to use
from sparknlp.pretrained import PretrainedPipeline
ner_pipeline = PretrainedPipeline("explain_clinical_doc_granular", "en", "clinical/models")
result = ner_pipeline.annotate("""
The patient admitted for gastrointestinal pathology, under working treatment.
History of prior heart murmur with echocardiogram findings as above on March 1998.
Echocardiogram from today indicates left ventricular function is normal but left atrial enlargement.
Based on the above findings, we will treat her medically with ACE inhibitors 10 mg, p.o, daily. Also we will give Furosemide 40 mg, p.o later and see how she fares.""")
import com.johnsnowlabs.nlp.pretrained.PretrainedPipeline
val ner_pipeline = PretrainedPipeline("explain_clinical_doc_granular", "en", "clinical/models")
val result = ner_pipeline.annotate("""
The patient admitted for gastrointestinal pathology, under working treatment.
History of prior heart murmur with echocardiogram findings as above on March 1998.
Echocardiogram from today indicates left ventricular function is normal but left atrial enlargement.
Based on the above findings, we will treat her medically with ACE inhibitors 10 mg, p.o, daily. Also we will give Furosemide 40 mg, p.o later and see how she fares.""")
Results
# ner_chunk
+-----------+-----+---+--------------------------+-------------------+
|sentence_id|begin|end|entity |label |
+-----------+-----+---+--------------------------+-------------------+
|0 |13 |20 |admitted |Admission_Discharge|
|0 |26 |51 |gastrointestinal pathology|Clinical_Dept |
|1 |96 |107|heart murmur |Heart_Disease |
|1 |114 |127|echocardiogram |Test |
|1 |150 |159|March 1998 |Date |
|2 |162 |175|Echocardiogram |Test |
|2 |182 |186|today |RelativeDate |
|2 |198 |222|left ventricular function |Test |
|2 |227 |232|normal |Test_Result |
|2 |238 |260|left atrial enlargement |Heart_Disease |
|3 |306 |308|her |Gender |
|3 |325 |338|ACE inhibitors |Drug_Ingredient |
|3 |340 |344|10 mg |Strength |
|3 |347 |349|p.o |Route |
|3 |352 |356|daily |Frequency |
|4 |377 |386|Furosemide |Drug_Ingredient |
|4 |388 |392|40 mg |Strength |
|4 |395 |397|p.o |Route |
|4 |417 |419|she |Gender |
+-----------+-----+---+--------------------------+-------------------+
# assertion
+-----------+-----+---+-------------------------+---------------+----------------+----------+
|sentence_id|begin|end|entity |label |assertion_status|confidence|
+-----------+-----+---+-------------------------+---------------+----------------+----------+
|1 |96 |107|heart murmur |Heart_Disease |Past |1.0 |
|1 |114 |127|echocardiogram |Test |Past |1.0 |
|2 |162 |175|Echocardiogram |Test |Present |1.0 |
|2 |198 |222|left ventricular function|Test |Present |1.0 |
|2 |227 |232|normal |Test_Result |Present |1.0 |
|2 |238 |260|left atrial enlargement |Heart_Disease |Present |1.0 |
|3 |325 |338|ACE inhibitors |Drug_Ingredient|Planned |1.0 |
|4 |377 |386|Furosemide |Drug_Ingredient|Planned |1.0 |
+-----------+-----+---+-------------------------+---------------+----------------+----------+
# relation
+-----------+-------------------------+---------------------+-------------------------+---------------------+-------------------------+--------------------------+----------------------------------+---------------------------------+----------------------------------+---------------------------------+-------------------------+--------------------------+-------------------------+--------------------------+-------------------------+
|sentence_id|all_relations |all_relations_entity1|all_relations_chunk1 |all_relations_entity2|all_relations_chunk2 |test_result_date_relations|test_result_date_relations_entity1|test_result_date_relations_chunk1|test_result_date_relations_entity2|test_result_date_relations_chunk2|posology_relations |posology_relations_entity1|posology_relations_chunk1|posology_relations_entity2|posology_relations_chunk2|
+-----------+-------------------------+---------------------+-------------------------+---------------------+-------------------------+--------------------------+----------------------------------+---------------------------------+----------------------------------+---------------------------------+-------------------------+--------------------------+-------------------------+--------------------------+-------------------------+
|1 |is_finding_of |Heart_Disease |heart murmur |Test |echocardiogram |is_finding_of |Heart_Disease |heart murmur |Test |echocardiogram |Drug_Ingredient-Strength |Drug_Ingredient |ACE inhibitors |Strength |10 mg |
|1 |is_date_of |Heart_Disease |heart murmur |Date |March 1998 |is_date_of |Heart_Disease |heart murmur |Date |March 1998 |Drug_Ingredient-Route |Drug_Ingredient |ACE inhibitors |Route |p.o |
|1 |is_date_of |Test |echocardiogram |Date |March 1998 |is_date_of |Test |echocardiogram |Date |March 1998 |Drug_Ingredient-Frequency|Drug_Ingredient |ACE inhibitors |Frequency |daily |
|2 |is_date_of |Test |Echocardiogram |RelativeDate |today |is_date_of |Test |Echocardiogram |RelativeDate |today |Drug_Ingredient-Strength |Drug_Ingredient |Furosemide |Strength |40 mg |
|2 |is_finding_of |Test |Echocardiogram |Heart_Disease |left atrial enlargement |is_finding_of |Test |Echocardiogram |Heart_Disease |left atrial enlargement |null |null |null |null |null |
|2 |is_date_of |RelativeDate |today |Test |left ventricular function|is_date_of |RelativeDate |today |Test |left ventricular function |null |null |null |null |null |
|2 |is_date_of |RelativeDate |today |Test_Result |normal |is_date_of |RelativeDate |today |Test_Result |normal |null |null |null |null |null |
|2 |is_date_of |RelativeDate |today |Heart_Disease |left atrial enlargement |is_date_of |RelativeDate |today |Heart_Disease |left atrial enlargement |null |null |null |null |null |
|2 |is_result_of |Test |left ventricular function|Test_Result |normal |is_result_of |Test |left ventricular function |Test_Result |normal |null |null |null |null |null |
|2 |is_finding_of |Test |left ventricular function|Heart_Disease |left atrial enlargement |is_finding_of |Test |left ventricular function |Heart_Disease |left atrial enlargement |null |null |null |null |null |
|3 |Drug_Ingredient-Strength |Drug_Ingredient |ACE inhibitors |Strength |10 mg |null |null |null |null |null |null |null |null |null |null |
|3 |Drug_Ingredient-Route |Drug_Ingredient |ACE inhibitors |Route |p.o |null |null |null |null |null |null |null |null |null |null |
|3 |Drug_Ingredient-Frequency|Drug_Ingredient |ACE inhibitors |Frequency |daily |null |null |null |null |null |null |null |null |null |null |
|4 |Drug_Ingredient-Strength |Drug_Ingredient |Furosemide |Strength |40 mg |null |null |null |null |null |null |null |null |null |null |
|4 |Drug_Ingredient-Route |Drug_Ingredient |Furosemide |Route |p.o |null |null |null |null |null |null |null |null |null |null |
+-----------+-------------------------+---------------------+-------------------------+---------------------+-------------------------+--------------------------+----------------------------------+---------------------------------+----------------------------------+---------------------------------+-------------------------+--------------------------+-------------------------+--------------------------+-------------------------+
Model Information
Model Name: | explain_clinical_doc_granular |
Type: | pipeline |
Compatibility: | Healthcare NLP 5.3.3+ |
License: | Licensed |
Edition: | Official |
Language: | en |
Size: | 1.7 GB |
Included Models
- DocumentAssembler
- SentenceDetectorDLModel
- TokenizerModel
- WordEmbeddingsModel
- MedicalNerModel
- NerConverterInternalModel
- NerConverterInternalModel
- AssertionDLModel
- PerceptronModel
- DependencyParserModel
- RelationExtractionModel
- PosologyREModel
- AnnotationMerger