Pipeline to Detect PHI for Deidentification (ner_deidentification_dl)

Description

This pretrained pipeline is built on the top of ner_deidentify_dl model.

Predicted Entities

DATE, PATIENT, MEDICALRECORD, DOCTOR, AGE, HOSPITAL,STATE, CITY, PROFESSION, STREET, ZIP, PHONE, COUNTRY, ORGANIZATION, FAX, IDNUM, HEALTHPLAN, USERNAME, EMAIL, BIOID, LOCATION-OTHER, DEVICE, URL,ID

Copy S3 URI

How to use

from sparknlp.pretrained import PretrainedPipeline

pipeline = PretrainedPipeline("ner_deidentify_dl_pipeline", "en", "clinical/models")

text = '''Record date : 2093-01-13 , David Hale , M.D . , Name : Hendrickson Ora , MR # 7194334 Date : 01/13/93 . PCP : Oliveira , 25 years old , Record date : 2079-11-09 . Cocke County Baptist Hospital , 0295 Keats Street , Phone 302-786-5227.'''

result = pipeline.fullAnnotate(text)
import com.johnsnowlabs.nlp.pretrained.PretrainedPipeline

val pipeline = new PretrainedPipeline("ner_deidentify_dl_pipeline", "en", "clinical/models")

val text = "Record date : 2093-01-13 , David Hale , M.D . , Name : Hendrickson Ora , MR # 7194334 Date : 01/13/93 . PCP : Oliveira , 25 years old , Record date : 2079-11-09 . Cocke County Baptist Hospital , 0295 Keats Street , Phone 302-786-5227."

val result = pipeline.fullAnnotate(text)
import nlu
nlu.load("en.med_ner.deidentify.pipeline").predict("""Record date : 2093-01-13 , David Hale , M.D . , Name : Hendrickson Ora , MR # 7194334 Date : 01/13/93 . PCP : Oliveira , 25 years old , Record date : 2079-11-09 . Cocke County Baptist Hospital , 0295 Keats Street , Phone 302-786-5227.""")

Results

|    | ner_chunks                    |   begin |   end | ner_label     |   confidence |
|---:|:------------------------------|--------:|------:|:--------------|-------------:|
|  0 | 2093-01-13                    |      14 |    23 | DATE          |      0.9999  |
|  1 | David Hale                    |      27 |    36 | DOCTOR        |      0.9913  |
|  2 | Hendrickson Ora               |      55 |    69 | DOCTOR        |      0.95565 |
|  3 | 7194334                       |      78 |    84 | MEDICALRECORD |      0.9857  |
|  4 | 01/13/93                      |      93 |   100 | DATE          |      0.999   |
|  5 | Oliveira                      |     110 |   117 | DOCTOR        |      0.9966  |
|  6 | 25                            |     121 |   122 | AGE           |      0.6433  |
|  7 | 2079-11-09                    |     150 |   159 | DATE          |      0.9984  |
|  8 | Cocke County Baptist Hospital |     163 |   191 | HOSPITAL      |      0.9466  |
|  9 | Keats Street                  |     200 |   211 | STREET        |      0.91485 |
| 10 | 302-786-5227                  |     221 |   232 | PHONE         |      0.7415  |

Model Information

Model Name: ner_deidentify_dl_pipeline
Type: pipeline
Compatibility: Healthcare NLP 4.3.0+
License: Licensed
Edition: Official
Language: en
Size: 1.7 GB

Included Models

  • DocumentAssembler
  • SentenceDetectorDLModel
  • TokenizerModel
  • WordEmbeddingsModel
  • MedicalNerModel
  • NerConverterInternalModel