Summarization
Transformers
PyTorch
Safetensors
Portuguese
t5
text2text-generation
pt-br
abstractive summarization
text-generation-inference
Instructions to use recogna-nlp/ptt5-base-summ with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use recogna-nlp/ptt5-base-summ 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="recogna-nlp/ptt5-base-summ")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("recogna-nlp/ptt5-base-summ") model = AutoModelForSeq2SeqLM.from_pretrained("recogna-nlp/ptt5-base-summ", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 134 Bytes
fe2eec3 | 1 2 3 4 | version https://git-lfs.github.com/spec/v1
oid sha256:603281b7ef3df584611b0d7161de3bd54dfa71119ccc544ea3505bfaeca356ee
size 891702929
|