Pipeline to Detect Cellular/Molecular Biology Entities

Description

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

Live Demo Open in Colab Copy S3 URI

How to use

from sparknlp.pretrained import PretrainedPipeline

cellular_pipeline = PretrainedPipeline("bert_token_classifier_ner_cellular_pipeline", "en", "clinical/models")

cellular_pipeline.fullAnnotate("Detection of various other intracellular signaling proteins is also described. Genetic characterization of transactivation of the human T-cell leukemia virus type 1 promoter: Binding of Tax to Tax-responsive element 1 is mediated by the cyclic AMP-responsive members of the CREB/ATF family of transcription factors. To achieve a better understanding of the mechanism of transactivation by Tax of human T-cell leukemia virus type 1 Tax-responsive element 1 (TRE-1), we developed a genetic approach with Saccharomyces cerevisiae. We constructed a yeast reporter strain containing the lacZ gene under the control of the CYC1 promoter associated with three copies of TRE-1. Expression of either the cyclic AMP response element-binding protein (CREB) or CREB fused to the GAL4 activation domain (GAD) in this strain did not modify the expression of the reporter gene. Tax alone was also inactive.")
import com.johnsnowlabs.nlp.pretrained.PretrainedPipeline

val cellular_pipeline = new PretrainedPipeline("bert_token_classifier_ner_cellular_pipeline", "en", "clinical/models")

cellular_pipeline.fullAnnotate("Detection of various other intracellular signaling proteins is also described. Genetic characterization of transactivation of the human T-cell leukemia virus type 1 promoter: Binding of Tax to Tax-responsive element 1 is mediated by the cyclic AMP-responsive members of the CREB/ATF family of transcription factors. To achieve a better understanding of the mechanism of transactivation by Tax of human T-cell leukemia virus type 1 Tax-responsive element 1 (TRE-1), we developed a genetic approach with Saccharomyces cerevisiae. We constructed a yeast reporter strain containing the lacZ gene under the control of the CYC1 promoter associated with three copies of TRE-1. Expression of either the cyclic AMP response element-binding protein (CREB) or CREB fused to the GAL4 activation domain (GAD) in this strain did not modify the expression of the reporter gene. Tax alone was also inactive.")
import nlu
nlu.load("en.classify.token_bert.cellular_pipeline").predict("""Detection of various other intracellular signaling proteins is also described. Genetic characterization of transactivation of the human T-cell leukemia virus type 1 promoter: Binding of Tax to Tax-responsive element 1 is mediated by the cyclic AMP-responsive members of the CREB/ATF family of transcription factors. To achieve a better understanding of the mechanism of transactivation by Tax of human T-cell leukemia virus type 1 Tax-responsive element 1 (TRE-1), we developed a genetic approach with Saccharomyces cerevisiae. We constructed a yeast reporter strain containing the lacZ gene under the control of the CYC1 promoter associated with three copies of TRE-1. Expression of either the cyclic AMP response element-binding protein (CREB) or CREB fused to the GAL4 activation domain (GAD) in this strain did not modify the expression of the reporter gene. Tax alone was also inactive.""")

Results

+-----------------------------------------------------------+---------+
 |chunk                                                      |ner_label|
 +-----------------------------------------------------------+---------+
 |intracellular signaling proteins                           |protein  |
 |human T-cell leukemia virus type 1 promoter                |DNA      |
 |Tax                                                        |protein  |
 |Tax-responsive element 1                                   |DNA      |
 |cyclic AMP-responsive members                              |protein  |
 |CREB/ATF family                                            |protein  |
 |transcription factors                                      |protein  |
 |Tax                                                        |protein  |
 |human T-cell leukemia virus type 1 Tax-responsive element 1|DNA      |
 |TRE-1                                                      |DNA      |
 |lacZ gene                                                  |DNA      |
 |CYC1 promoter                                              |DNA      |
 |TRE-1                                                      |DNA      |
 |cyclic AMP response element-binding protein                |protein  |
 |CREB                                                       |protein  |
 |CREB                                                       |protein  |
 |GAL4 activation domain                                     |protein  |
 |GAD                                                        |protein  |
 |reporter gene                                              |DNA      |
 |Tax                                                        |protein  |
 +-----------------------------------------------------------+---------+

Model Information

Model Name: bert_token_classifier_ner_cellular_pipeline
Type: pipeline
Compatibility: Healthcare NLP 3.4.1+
License: Licensed
Edition: Official
Language: en
Size: 404.4 MB

Included Models

  • DocumentAssembler
  • TokenizerModel
  • MedicalBertForTokenClassifier
  • NerConverter
  • Finisher