Sihao Chen commited on
Commit ·
e25ec19
1
Parent(s): 51c75bb
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
thumbnail: https://cogcomp.seas.upenn.edu/images/logo.png
|
| 5 |
+
tags:
|
| 6 |
+
- text-classification
|
| 7 |
+
- bart
|
| 8 |
+
- xsum
|
| 9 |
+
license: cc-by-sa-4.0
|
| 10 |
+
datasets:
|
| 11 |
+
- xsum
|
| 12 |
+
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# bart-faithful-summary-detector
|
| 16 |
+
|
| 17 |
+
## Model description
|
| 18 |
+
|
| 19 |
+
A BART (base) model trained to classify whether a summary is *faithful* to the original article. See our [paper in NAACL'21](https://www.seas.upenn.edu/~sihaoc/static/pdf/CZSR21.pdf) for details.
|
| 20 |
+
|
| 21 |
+
## Usage
|
| 22 |
+
Concatenate a summary and a source document as input (note that the summary needs to be the **first** sentence).
|
| 23 |
+
|
| 24 |
+
```python
|
| 25 |
+
model =
|
| 26 |
+
```
|
| 27 |
+
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
|
| 31 |
+
### BibTeX entry and citation info
|
| 32 |
+
|
| 33 |
+
```bibtex
|
| 34 |
+
@inproceedings{CZSR21,
|
| 35 |
+
author = {Sihao Chen and Fan Zhang and Kazoo Sone and Dan Roth},
|
| 36 |
+
title = {{Improving Faithfulness in Abstractive Summarization with Contrast Candidate Generation and Selection}},
|
| 37 |
+
booktitle = {NAACL},
|
| 38 |
+
year = {2021}
|
| 39 |
+
}
|
| 40 |
+
```
|