Commit
·
9e5e1b5
1
Parent(s):
058deab
Create README.md
Browse files
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 |
+
|