ireneli1024's picture
Update README.md
f4b10b5
|
raw
history blame contribute delete
No virus
472 Bytes
---
license: other
tags:
- code
---
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.
How to use:
```
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
tokenizer = AutoTokenizer.from_pretrained("ireneli1024/biobart-v2-base-finetuned-pubmed-train")
model = AutoModelForSeq2SeqLM.from_pretrained("ireneli1024/biobart-v2-base-finetuned-pubmed-train")
```