ireneli1024 commited on
Commit
f4b10b5
1 Parent(s): b6e89bd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -0
README.md CHANGED
@@ -1,3 +1,17 @@
1
  ---
2
  license: other
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: other
3
+ tags:
4
+ - code
5
  ---
6
+
7
+ This is the finetuned model based on [biobart-v2](https://huggingface.co/GanjinZero/biobart-v2-base). We took the Pubmed training split to fine-tune it.
8
+
9
+ How to use:
10
+ ```
11
+ from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
12
+
13
+ tokenizer = AutoTokenizer.from_pretrained("ireneli1024/biobart-v2-base-finetuned-pubmed-train")
14
+
15
+ model = AutoModelForSeq2SeqLM.from_pretrained("ireneli1024/biobart-v2-base-finetuned-pubmed-train")
16
+
17
+ ```