Instructions to use Saravananofficial/Text_Summarizer with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Saravananofficial/Text_Summarizer with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("Saravananofficial/Text_Summarizer") model = AutoModelForSeq2SeqLM.from_pretrained("Saravananofficial/Text_Summarizer") - Notebooks
- Google Colab
- Kaggle
Quick Links
Text-Summarizer
About
An Abstractive text summarizer trained using lstm based sequence to sequence model with attention mechanisim. The attention model is used for generating each word of the summary conditioned on the input sentence.
- Used CNN_DailyMail dataset.
- Code + Deployment : https://www.youtube.com/watch?v=LFZBA99NOpU

Training Model Overview
loss graph
Conclusion
- 🫶 The machine learning model to convert a text document to abstract is done successfully.
- 🫶 Created a Flask app using an api call from this repository & deployed the app in heroku app.
Deployment:
- Downloads last month
- 3
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support


# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("Saravananofficial/Text_Summarizer") model = AutoModelForSeq2SeqLM.from_pretrained("Saravananofficial/Text_Summarizer")