File size: 472 Bytes
927832b f4b10b5 927832b f4b10b5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
---
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")
``` |