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
Delete train_results.json
Browse files- train_results.json +0 -8
train_results.json
DELETED
|
@@ -1,8 +0,0 @@
|
|
| 1 |
-
{
|
| 2 |
-
"epoch": 4.0,
|
| 3 |
-
"train_loss": 1.7515089764228484,
|
| 4 |
-
"train_runtime": 22215.4472,
|
| 5 |
-
"train_samples": 35201,
|
| 6 |
-
"train_samples_per_second": 6.338,
|
| 7 |
-
"train_steps_per_second": 1.056
|
| 8 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|