--- 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") ```