Summarization
Transformers
PyTorch
Core ML
ONNX
Safetensors
English
t5
text2text-generation
text-generation-inference
Instructions to use Falconsai/text_summarization with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Falconsai/text_summarization with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "summarization" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("summarization", model="Falconsai/text_summarization")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("Falconsai/text_summarization") model = AutoModelForSeq2SeqLM.from_pretrained("Falconsai/text_summarization") - Inference
- Notebooks
- Google Colab
- Kaggle
Multilingual powerhouse — testing for mobile deployment
#17
by 3morixd - opened
This model covers German, Urdu, Arabic, Hebrew, Polish — exactly the kind of multilingual capability we need for global mobile AI.
At Dispatch AI (FZE, UAE), we're building mobile AI that works for everyone. Models like this are the foundation.
We benchmark multilingual models on our 40-phone farm (Snapdragon 865) to see which maintain quality across languages when quantized to 4-bit. Results vary wildly — some lose 30% quality in non-English after quantization.
Would love to see multilingual eval at different quantization levels.
- Dispatch AI (FZE), Sharjah UAE