Spaces:
Running
Running
metadata
title: README
emoji: π
colorFrom: red
colorTo: purple
sdk: static
pinned: false
To use our fine-tuned BioBERT model to remove references to priors from radiology reports, run the following:
from transformers import AutoTokenizer, AutoModelForTokenClassification
modelname = "rajpurkarlab/biobert-finetuned-prior-rmv"
tokenizer = AutoTokenizer.from_pretrained(modelname)
model = AutoModelForTokenClassification.from_pretrained(modelname)