Summarization
Transformers
PyTorch
TensorBoard
Safetensors
Italian
t5
text2text-generation
text-generation-inference
Instructions to use ARTeLab/it5-summarization-ilpost with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ARTeLab/it5-summarization-ilpost 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="ARTeLab/it5-summarization-ilpost")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("ARTeLab/it5-summarization-ilpost") model = AutoModelForSeq2SeqLM.from_pretrained("ARTeLab/it5-summarization-ilpost") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
| 2 |
language:
|
| 3 |
- it
|
| 4 |
-
tags:
|
| 5 |
-
- generated_from_trainer
|
| 6 |
metrics:
|
| 7 |
- rouge
|
| 8 |
model-index:
|
|
@@ -10,6 +10,8 @@ model-index:
|
|
| 10 |
results: []
|
| 11 |
---
|
| 12 |
|
|
|
|
|
|
|
| 13 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
| 14 |
should probably proofread and complete it, then remove this comment. -->
|
| 15 |
|
|
|
|
| 1 |
---
|
| 2 |
+
tags:
|
| 3 |
+
- summarization
|
| 4 |
language:
|
| 5 |
- it
|
|
|
|
|
|
|
| 6 |
metrics:
|
| 7 |
- rouge
|
| 8 |
model-index:
|
|
|
|
| 10 |
results: []
|
| 11 |
---
|
| 12 |
|
| 13 |
+
|
| 14 |
+
|
| 15 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
| 16 |
should probably proofread and complete it, then remove this comment. -->
|
| 17 |
|