Description
This model detects the assertion status of oncology treatment entities. The model identifies if the treatment has been used (Present_Or_Past
status), or if it is mentioned but in hypothetical or absent sentences (Hypothetical_Or_Absent
status).
Predicted Entities
Hypothetical_Or_Absent
, Present_Or_Past
How to use
document_assembler = DocumentAssembler()\
.setInputCol("text")\
.setOutputCol("document")
sentence_detector = SentenceDetectorDLModel.pretrained("sentence_detector_dl_healthcare","en","clinical/models")\
.setInputCols(["document"])\
.setOutputCol("sentence")
tokenizer = Tokenizer() \
.setInputCols(["sentence"]) \
.setOutputCol("token")
word_embeddings = WordEmbeddingsModel().pretrained("embeddings_clinical", "en", "clinical/models")\
.setInputCols(["sentence", "token"]) \
.setOutputCol("embeddings")
ner = MedicalNerModel.pretrained("ner_oncology_wip", "en", "clinical/models") \
.setInputCols(["sentence", "token", "embeddings"]) \
.setOutputCol("ner")
ner_converter = NerConverter() \
.setInputCols(["sentence", "token", "ner"]) \
.setOutputCol("ner_chunk")\
.setWhiteList(["Cancer_Surgery", "Chemotherapy"])
assertion = AssertionDLModel.pretrained("assertion_oncology_treatment_binary", "en", "clinical/models") \
.setInputCols(["sentence", "ner_chunk", "embeddings"]) \
.setOutputCol("assertion")
pipeline = Pipeline(stages=[document_assembler,
sentence_detector,
tokenizer,
word_embeddings,
ner,
ner_converter,
assertion])
data = spark.createDataFrame([["The patient underwent a mastectomy two years ago. We recommend to start chemotherapy."]]).toDF("text")
result = pipeline.fit(data).transform(data)
val document_assembler = new DocumentAssembler()
.setInputCol("text")
.setOutputCol("document")
val sentence_detector = SentenceDetectorDLModel.pretrained("sentence_detector_dl_healthcare","en","clinical/models")
.setInputCols(Array("document"))
.setOutputCol("sentence")
val tokenizer = new Tokenizer()
.setInputCols(Array("sentence"))
.setOutputCol("token")
val word_embeddings = WordEmbeddingsModel().pretrained("embeddings_clinical", "en", "clinical/models")
.setInputCols(Array("sentence", "token"))
.setOutputCol("embeddings")
val ner = MedicalNerModel.pretrained("ner_oncology_wip", "en", "clinical/models")
.setInputCols(Array("sentence", "token", "embeddings"))
.setOutputCol("ner")
val ner_converter = new NerConverter()
.setInputCols(Array("sentence", "token", "ner"))
.setOutputCol("ner_chunk")
.setWhiteList(Array("Cancer_Surgery", "Chemotherapy"))
val clinical_assertion = AssertionDLModel.pretrained("assertion_oncology_treatment_binary","en","clinical/models")
.setInputCols(Array("sentence","ner_chunk","embeddings"))
.setOutputCol("assertion")
val pipeline = new Pipeline().setStages(Array(document_assembler,
sentence_detector,
tokenizer,
word_embeddings,
ner,
ner_converter,
assertion))
val data = Seq("""The patient underwent a mastectomy two years ago. We recommend to start chemotherapy.""").toDF("text")
val result = pipeline.fit(data).transform(data)
Results
| chunk | ner_label | assertion |
|:-------------|:---------------|:-----------------------|
| mastectomy | Cancer_Surgery | Present_Or_Past |
| chemotherapy | Chemotherapy | Hypothetical_Or_Absent |
Model Information
Model Name: | assertion_oncology_treatment_binary |
Compatibility: | Healthcare NLP 5.4.0+ |
License: | Licensed |
Edition: | Official |
Input Labels: | [document, chunk, embeddings] |
Output Labels: | [assertion_pred] |
Language: | en |
Size: | 1.4 MB |
References
In-house annotated oncology case reports.
Benchmarking
label precision recall f1-score support
Hypothetical_Or_Absent 0.76 0.77 0.76 128.0
Present_Or_Past 0.75 0.73 0.74 118.0
macro-avg 0.75 0.75 0.75 246.0
weighted-avg 0.75 0.75 0.75 246.0