nathanachi commited on
Commit
9e5e1b5
·
1 Parent(s): 058deab

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -0
README.md ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ from transformers import AutoTokenizer, AutoModelForTokenClassification
2
+
3
+ modelname = "rajpurkarlab/biobert-finetuned-change-classification"
4
+ tokenizer = AutoTokenizer.from_pretrained(modelname)
5
+ model = AutoModelForTokenClassification.from_pretrained(modelname)
6
+