Summarization
Transformers
PyTorch
t5
text2text-generation
Generated from Trainer
Eval Results (legacy)
text-generation-inference
Instructions to use Andyrasika/summarization_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Andyrasika/summarization_model 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="Andyrasika/summarization_model")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("Andyrasika/summarization_model") model = AutoModelForSeq2SeqLM.from_pretrained("Andyrasika/summarization_model") - Notebooks
- Google Colab
- Kaggle
Commit ·
dce0315
1
Parent(s): 8b7c0ec
Update README.md
Browse files
README.md
CHANGED
|
@@ -23,6 +23,7 @@ model-index:
|
|
| 23 |
- name: Rouge1
|
| 24 |
type: rouge
|
| 25 |
value: 0.145
|
|
|
|
| 26 |
---
|
| 27 |
|
| 28 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
@@ -79,4 +80,4 @@ The following hyperparameters were used during training:
|
|
| 79 |
- Transformers 4.32.0
|
| 80 |
- Pytorch 2.0.1+cu118
|
| 81 |
- Datasets 2.14.4
|
| 82 |
-
- Tokenizers 0.13.3
|
|
|
|
| 23 |
- name: Rouge1
|
| 24 |
type: rouge
|
| 25 |
value: 0.145
|
| 26 |
+
pipeline_tag: summarization
|
| 27 |
---
|
| 28 |
|
| 29 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
|
|
| 80 |
- Transformers 4.32.0
|
| 81 |
- Pytorch 2.0.1+cu118
|
| 82 |
- Datasets 2.14.4
|
| 83 |
+
- Tokenizers 0.13.3
|