root
commited on
Commit
·
9fc8278
1
Parent(s):
83866a8
ok
Browse files- README.md +89 -0
- model.safetensors +3 -0
- pytorch_model.bin +3 -0
- tokenizer +0 -2
README.md
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: en
|
| 3 |
+
tags:
|
| 4 |
+
- bart
|
| 5 |
+
- seq2seq
|
| 6 |
+
- summarization
|
| 7 |
+
license: apache-2.0
|
| 8 |
+
datasets:
|
| 9 |
+
- samsum
|
| 10 |
+
widget:
|
| 11 |
+
- text: |
|
| 12 |
+
Hannah: Hey, do you have Betty's number?
|
| 13 |
+
Amanda: Lemme check
|
| 14 |
+
Amanda: Sorry, can't find it.
|
| 15 |
+
Amanda: Ask Larry
|
| 16 |
+
Amanda: He called her last time we were at the park together
|
| 17 |
+
Hannah: I don't know him well
|
| 18 |
+
Amanda: Don't be shy, he's very nice
|
| 19 |
+
Hannah: If you say so..
|
| 20 |
+
Hannah: I'd rather you texted him
|
| 21 |
+
Amanda: Just text him 🙂
|
| 22 |
+
Hannah: Urgh.. Alright
|
| 23 |
+
Hannah: Bye
|
| 24 |
+
Amanda: Bye bye
|
| 25 |
+
model-index:
|
| 26 |
+
- name: bart-large-xsum-samsum
|
| 27 |
+
results:
|
| 28 |
+
- task:
|
| 29 |
+
name: Abstractive Text Summarization
|
| 30 |
+
type: abstractive-text-summarization
|
| 31 |
+
dataset:
|
| 32 |
+
name: "SAMSum Corpus: A Human-annotated Dialogue Dataset for Abstractive Summarization"
|
| 33 |
+
type: samsum
|
| 34 |
+
metrics:
|
| 35 |
+
- name: Validation ROUGE-1
|
| 36 |
+
type: rouge-1
|
| 37 |
+
value: 54.3921
|
| 38 |
+
- name: Validation ROUGE-2
|
| 39 |
+
type: rouge-2
|
| 40 |
+
value: 29.8078
|
| 41 |
+
- name: Validation ROUGE-L
|
| 42 |
+
type: rouge-l
|
| 43 |
+
value: 45.1543
|
| 44 |
+
- name: Test ROUGE-1
|
| 45 |
+
type: rouge-1
|
| 46 |
+
value: 53.3059
|
| 47 |
+
- name: Test ROUGE-2
|
| 48 |
+
type: rouge-2
|
| 49 |
+
value: 28.355
|
| 50 |
+
- name: Test ROUGE-L
|
| 51 |
+
type: rouge-l
|
| 52 |
+
value: 44.0953
|
| 53 |
+
---
|
| 54 |
+
## `bart-large-xsum-samsum`
|
| 55 |
+
This model was obtained by fine-tuning `facebook/bart-large-xsum` on [Samsum](https://huggingface.co/datasets/samsum) dataset.
|
| 56 |
+
## Usage
|
| 57 |
+
```python
|
| 58 |
+
from transformers import pipeline
|
| 59 |
+
|
| 60 |
+
summarizer = pipeline("summarization", model="lidiya/bart-large-xsum-samsum")
|
| 61 |
+
conversation = '''Hannah: Hey, do you have Betty's number?
|
| 62 |
+
Amanda: Lemme check
|
| 63 |
+
Amanda: Sorry, can't find it.
|
| 64 |
+
Amanda: Ask Larry
|
| 65 |
+
Amanda: He called her last time we were at the park together
|
| 66 |
+
Hannah: I don't know him well
|
| 67 |
+
Amanda: Don't be shy, he's very nice
|
| 68 |
+
Hannah: If you say so..
|
| 69 |
+
Hannah: I'd rather you texted him
|
| 70 |
+
Amanda: Just text him 🙂
|
| 71 |
+
Hannah: Urgh.. Alright
|
| 72 |
+
Hannah: Bye
|
| 73 |
+
Amanda: Bye bye
|
| 74 |
+
'''
|
| 75 |
+
summarizer(conversation)
|
| 76 |
+
```
|
| 77 |
+
## Training procedure
|
| 78 |
+
- Colab notebook: https://colab.research.google.com/drive/1dul0Sg-TTMy9xZCJzmDRajXbyzDwtYx6?usp=sharing
|
| 79 |
+
## Results
|
| 80 |
+
| key | value |
|
| 81 |
+
| --- | ----- |
|
| 82 |
+
| eval_rouge1 | 54.3921 |
|
| 83 |
+
| eval_rouge2 | 29.8078 |
|
| 84 |
+
| eval_rougeL | 45.1543 |
|
| 85 |
+
| eval_rougeLsum | 49.942 |
|
| 86 |
+
| test_rouge1 | 53.3059 |
|
| 87 |
+
| test_rouge2 | 28.355 |
|
| 88 |
+
| test_rougeL | 44.0953 |
|
| 89 |
+
| test_rougeLsum | 48.9246 |
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:29acd5ae506056667cd4bf53a9dbbf36f9016937248f6e4b7dd6f319b2f460f1
|
| 3 |
+
size 1625422896
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0c321394e634dfcc74b8344b3b898931977cfda1ace1d11f0c78027dbfd86ddb
|
| 3 |
+
size 1625565295
|
tokenizer
DELETED
|
@@ -1,2 +0,0 @@
|
|
| 1 |
-
tt
|
| 2 |
-
|
|
|
|
|
|
|
|
|