Description Classify texts/sentences in two categories: True : The sentence is talking about a possible ADE. False : The sentence doesn’t have any information about an ADE. This model is a BioBERT-based classifier. Predicted Entities Live Demo Open in Colab Download Copy S3 URI How to use PythonHealthcare NLPPythonJohnSnowLabsScalaNLU document_assembler = DocumentAssembler() \ .setInputCol("text") \ .setOutputCol("document") tokenizer = Tokenizer() \ .setInputCols(["document"]) \ .setOutput...