fajrikoto/id_liputan6
Updated • 336 • 12
Hello everyone, we are from Bina Nusantara University (SumText Group) consisting of Stevan Pohan, Joseph Vincent Liem, and Yongky Alexander Tristan. This is the result of a model that we have fine-tuned for the use of abstractive summarization
from transformers import AutoModelForSeq2SeqLM, AutoTokenizer
model_path = "migz117/T5-Abstractive"
model = AutoModelForSeq2SeqLM.from_pretrained(model_path).to(device)
tokenizer = AutoTokenizer.from_pretrained(model_path)