Views
No views yet
bart-large-cnn-samsumIf you want to use the model you should try a newer fine-tuned FLAN-T5 version philschmid/flan-t5-base-samsum out socring the BART version with+6onROGUE1achieving47.24.
1{
2 "dataset_name": "samsum",
3 "do_eval": true,
4 "do_predict": true,
5 "do_train": true,
6 "fp16": true,
7 "learning_rate": 5e-05,
8 "model_name_or_path": "facebook/bart-large-cnn",
9 "num_train_epochs": 3,
10 "output_dir": "/opt/ml/model",
11 "per_device_eval_batch_size": 4,
12 "per_device_train_batch_size": 4,
13 "predict_with_generate": true,
14 "seed": 7
15}1from transformers import pipeline
2summarizer = pipeline("summarization", model="philschmid/bart-large-cnn-samsum")
3
4conversation = '''Jeff: Can I train a 🤗 Transformers model on Amazon SageMaker?
5Philipp: Sure you can use the new Hugging Face Deep Learning Container.
6Jeff: ok.
7Jeff: and how can I get started?
8Jeff: where can I find documentation?
9Philipp: ok, ok you can find everything here. https://huggingface.co/blog/the-partnership-amazon-sagemaker-and-hugging-face
10'''
11summarizer(conversation)| key | value |
|---|---|
| eval_rouge1 | 42.621 |
| eval_rouge2 | 21.9825 |
| eval_rougeL | 33.034 |
| eval_rougeLsum | 39.6783 |
| test_rouge1 | 41.3174 |
| test_rouge2 | 20.8716 |
| test_rougeL | 32.1337 |
| test_rougeLsum | 38.4149 |