Description
This pretrained pipeline is built on the top of ner_ade_healthcare model.
Live Demo Open in Colab Copy S3 URI
How to use
from sparknlp.pretrained import PretrainedPipeline
pipeline = PretrainedPipeline("ner_ade_healthcare_pipeline", "en", "clinical/models")
pipeline.fullAnnotate("Been taking Lipitor for 15 years, have experienced severe fatigue a lot!!!. Doctor moved me to voltaren 2 months ago, so far, have only experienced cramps")
import com.johnsnowlabs.nlp.pretrained.PretrainedPipeline
val pipeline = new PretrainedPipeline("ner_ade_healthcare_pipeline", "en", "clinical/models")
pipeline.fullAnnotate("Been taking Lipitor for 15 years, have experienced severe fatigue a lot!!!. Doctor moved me to voltaren 2 months ago, so far, have only experienced cramps")
import nlu
nlu.load("en.med_ner.healthcare_ade.pipeline").predict("""Been taking Lipitor for 15 years, have experienced severe fatigue a lot!!!. Doctor moved me to voltaren 2 months ago, so far, have only experienced cramps""")
Results
+--------------+---------+
|chunk |ner_label|
+--------------+---------+
|Lipitor |DRUG |
|severe fatigue|ADE |
|voltaren |DRUG |
|cramps |ADE |
+--------------+---------+
Model Information
Model Name: | ner_ade_healthcare_pipeline |
Type: | pipeline |
Compatibility: | Healthcare NLP 3.4.1+ |
License: | Licensed |
Edition: | Official |
Language: | en |
Size: | 513.5 MB |
Included Models
- DocumentAssembler
- SentenceDetectorDLModel
- TokenizerModel
- WordEmbeddingsModel
- MedicalNerModel
- NerConverter