Summarization
Transformers
TensorBoard
Safetensors
English
bart
text2text-generation
Generated from Trainer
Instructions to use EE21/BART-ToSSimplify with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use EE21/BART-ToSSimplify 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="EE21/BART-ToSSimplify")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("EE21/BART-ToSSimplify") model = AutoModelForSeq2SeqLM.from_pretrained("EE21/BART-ToSSimplify") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -18,7 +18,7 @@ pipeline_tag: summarization
|
|
| 18 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
| 19 |
should probably proofread and complete it, then remove this comment. -->
|
| 20 |
|
| 21 |
-
#
|
| 22 |
|
| 23 |
This model is a fine-tuned version of [facebook/bart-large-cnn](https://huggingface.co/facebook/bart-large-cnn) on an unknown dataset.
|
| 24 |
It achieves the following results on the evaluation set:
|
|
|
|
| 18 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
| 19 |
should probably proofread and complete it, then remove this comment. -->
|
| 20 |
|
| 21 |
+
# BART-ToSSimplify
|
| 22 |
|
| 23 |
This model is a fine-tuned version of [facebook/bart-large-cnn](https://huggingface.co/facebook/bart-large-cnn) on an unknown dataset.
|
| 24 |
It achieves the following results on the evaluation set:
|