Model Details
Model Description
This model is a fine-tuned version of google/flan-t5-base, specifically adapted for abstractive summarization of scientific abstracts into concise titles. It has been trained on a dataset curated from Springer journal publications, filtered to include only machine learning-related research. By leveraging the instruction-following capabilities of FLAN-T5, the model generates precise and contextually relevant titles.
Further fine-tuning on a broader dataset across multiple disciplines could enhance its generalization and accuracy in other research domains.
- Developed by: tiam4tt, HTThuanHcmus
- Model type: Language Model
- Language(s) (NLP): English
- License: MIT
- Finetuned from model: google/flan-t5-base
Project Repo
- Repository: tiam4tt/TextMining_TitleGeneration
Usage
from transformers import AutoModelForSeq2SeqLM, AutoTokenizer
model = AutoModelForSeq2SeqLM.from_pretrained("tiam4tt/flan-t5-titlegen-springer")
tokenizer = AutoTokenizer.from_pretrained("tiam4tt/flan-t5-titlegen-springer")
abstract = "Transfer learning has become a crucial technique in deep learning, enabling models to leverage knowledge from pre-trained networks for improved performance on new tasks. In this study, we propose an optimized fine-tuning strategy for convolutional neural networks (CNNs), reducing training time while maintaining high accuracy. Experiments on CIFAR-10 show a 15% improvement in efficiency compared to standard fine-tuning methods, demonstrating the effectiveness of our approach."
inputs = tokenizer(abstract, return_tensors="pt", padding=True, truncation=True)
outputs = model.generate(**inputs, max_new_tokens=32)
title = tokenizer.decode(outputs[0], skip_special_tokens=True)
print(title)
Direct Use and Downstream Use
This model can be further trained on a more diverse dataset covering fields beyond machine learning to generate more precise and contextually relevant titles.
Out-of-Scope Use
Using this model for unrelated tasks, such as summarizing news articles, generating creative writing, or processing highly technical abstracts from unrelated fields (e.g., chemistry, law, or medicine), may result in inaccurate or low-quality outputs. Fine-tuning on broader datasets would be required for effective generalization beyond machine learning literature.
Training Data
- Downloads last month
- 26
Model tree for tiam4tt/flan-t5-titlegen-springer
Base model
google/flan-t5-baseEvaluation results
- ROUGE_1self-reported0.507
- ROUGE_2self-reported0.303
- ROUGE_Lself-reported0.435
- ROUGE_Lsumself-reported0.435
- Precisionself-reported0.912
- Recallself-reported0.899
- F1self-reported0.905