Description This model is a BioBERT based classifier that can classify if an article is a randomized clinical trial (RCT) or not. Predicted Entities True, False 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"]) \ .setOutputCol("token") sequence_classifier = MedicalBertForSequenceClassification.pre...