Instructions to use Overglitch/t5-small-cnn-dailymail with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Overglitch/t5-small-cnn-dailymail 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="Overglitch/t5-small-cnn-dailymail")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("Overglitch/t5-small-cnn-dailymail") model = AutoModelForSeq2SeqLM.from_pretrained("Overglitch/t5-small-cnn-dailymail") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -18,8 +18,6 @@ pipeline_tag: summarization
|
|
| 18 |
This is the model card of a 🤗 transformers model that has been pushed on the Hub. This model card has been automatically generated.
|
| 19 |
|
| 20 |
- **Developed by:** [More Information Needed]
|
| 21 |
-
- **Funded by [optional]:** [More Information Needed]
|
| 22 |
-
- **Shared by [optional]:** [More Information Needed]
|
| 23 |
- **Model type:** [More Information Needed]
|
| 24 |
- **Language(s) (NLP):** [More Information Needed]
|
| 25 |
- **License:** [More Information Needed]
|
|
@@ -30,8 +28,6 @@ This is the model card of a 🤗 transformers model that has been pushed on the
|
|
| 30 |
<!-- Provide the basic links for the model. -->
|
| 31 |
|
| 32 |
- **Repository:** [More Information Needed]
|
| 33 |
-
- **Paper [optional]:** [More Information Needed]
|
| 34 |
-
- **Demo [optional]:** [More Information Needed]
|
| 35 |
|
| 36 |
## Uses
|
| 37 |
|
|
|
|
| 18 |
This is the model card of a 🤗 transformers model that has been pushed on the Hub. This model card has been automatically generated.
|
| 19 |
|
| 20 |
- **Developed by:** [More Information Needed]
|
|
|
|
|
|
|
| 21 |
- **Model type:** [More Information Needed]
|
| 22 |
- **Language(s) (NLP):** [More Information Needed]
|
| 23 |
- **License:** [More Information Needed]
|
|
|
|
| 28 |
<!-- Provide the basic links for the model. -->
|
| 29 |
|
| 30 |
- **Repository:** [More Information Needed]
|
|
|
|
|
|
|
| 31 |
|
| 32 |
## Uses
|
| 33 |
|