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
|
@@ -17,7 +17,7 @@ should probably proofread and complete it, then remove this comment. -->
|
|
| 17 |
|
| 18 |
# summarization_ilpost
|
| 19 |
|
| 20 |
-
This model is a fine-tuned version of [gsarti/it5-base](https://huggingface.co/gsarti/it5-base) on
|
| 21 |
It achieves the following results on the evaluation set:
|
| 22 |
- Loss: 1.6020
|
| 23 |
- Rouge1: 33.7802
|
|
|
|
| 17 |
|
| 18 |
# summarization_ilpost
|
| 19 |
|
| 20 |
+
This model is a fine-tuned version of [gsarti/it5-base](https://huggingface.co/gsarti/it5-base) on IlPost dataset.
|
| 21 |
It achieves the following results on the evaluation set:
|
| 22 |
- Loss: 1.6020
|
| 23 |
- Rouge1: 33.7802
|