Summarization
Transformers
PyTorch
TensorBoard
Safetensors
English
t5
text2text-generation
Generated from Trainer
Eval Results (legacy)
text-generation-inference
Instructions to use sudoLife/tst-summarization with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use sudoLife/tst-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="sudoLife/tst-summarization")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("sudoLife/tst-summarization") model = AutoModelForSeq2SeqLM.from_pretrained("sudoLife/tst-summarization") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -22,6 +22,10 @@ model-index:
|
|
| 22 |
- name: Rouge1
|
| 23 |
type: rouge
|
| 24 |
value: 41.607
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
---
|
| 26 |
|
| 27 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
@@ -72,4 +76,4 @@ The following hyperparameters were used during training:
|
|
| 72 |
- Transformers 4.29.2
|
| 73 |
- Pytorch 1.13.1+cu117
|
| 74 |
- Datasets 2.12.0
|
| 75 |
-
- Tokenizers 0.13.3
|
|
|
|
| 22 |
- name: Rouge1
|
| 23 |
type: rouge
|
| 24 |
value: 41.607
|
| 25 |
+
language:
|
| 26 |
+
- en
|
| 27 |
+
library_name: transformers
|
| 28 |
+
pipeline_tag: summarization
|
| 29 |
---
|
| 30 |
|
| 31 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
|
|
| 76 |
- Transformers 4.29.2
|
| 77 |
- Pytorch 1.13.1+cu117
|
| 78 |
- Datasets 2.12.0
|
| 79 |
+
- Tokenizers 0.13.3
|