Description
This pretrained pipeline is built on the top of ner_chemprot_clinical model.
Predicted Entities
CHEMICAL
, GENE-N
, GENE-Y
How to use
from sparknlp.pretrained import PretrainedPipeline
pipeline = PretrainedPipeline("ner_chemprot_clinical_pipeline", "en", "clinical/models")
text = '''Keratinocyte growth factor and acidic fibroblast growth factor are mitogens for primary cultures of mammary epithelium.'''
result = pipeline.fullAnnotate(text)
import com.johnsnowlabs.nlp.pretrained.PretrainedPipeline
val pipeline = new PretrainedPipeline("ner_chemprot_clinical_pipeline", "en", "clinical/models")
val text = "Keratinocyte growth factor and acidic fibroblast growth factor are mitogens for primary cultures of mammary epithelium."
val result = pipeline.fullAnnotate(text)
import nlu
nlu.load("en.med_ner.chemprot_clinical.pipeline").predict("""Keratinocyte growth factor and acidic fibroblast growth factor are mitogens for primary cultures of mammary epithelium.""")
Results
| | ner_chunk | begin | end | ner_label | confidence |
|---:|:-------------|--------:|------:|:------------|-------------:|
| 0 | Keratinocyte | 0 | 11 | GENE-Y | 0.7433 |
| 1 | growth | 13 | 18 | GENE-Y | 0.6481 |
| 2 | factor | 20 | 25 | GENE-Y | 0.5693 |
| 3 | acidic | 31 | 36 | GENE-Y | 0.5518 |
| 4 | fibroblast | 38 | 47 | GENE-Y | 0.5111 |
| 5 | growth | 49 | 54 | GENE-Y | 0.4559 |
| 6 | factor | 56 | 61 | GENE-Y | 0.5213 |
Model Information
Model Name: | ner_chemprot_clinical_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