ncbi/pubmed
Updated • 1.3k • 163
How to use rttl-ai/BIOptimus with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("fill-mask", model="rttl-ai/BIOptimus") # Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("rttl-ai/BIOptimus")
model = AutoModelForMaskedLM.from_pretrained("rttl-ai/BIOptimus")Model Description: BIOptimus v.0.4 model is a BERT-like model pre-trained on PubMed abstracts. It is a biomedical language model pre-trained using contextualized weight distillation and Curriculum Learning. This model achieves state-of-the-art performance on several biomedical NER datasets from BLURB benchmark.