varadhbhatnagar commited on
Commit
faed0cf
1 Parent(s): 177f6cc

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +122 -0
README.md ADDED
@@ -0,0 +1,122 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ # For reference on model card metadata, see: https://github.com/huggingface/hub-docs/blob/main/modelcard.md?plain=1
3
+ {{card_data}}
4
+ ---
5
+
6
+ # Model Card for Pegasus for Claim Summarization
7
+
8
+ <!-- Provide a quick summary of what the model is/does. -->
9
+
10
+ This model can be used to summarize noisy claims on social media into clean and concise claims which can be used for downstream tasks in a fact-checking pipeline.
11
+
12
+ # Model Details
13
+
14
+ This is the fine-tuned D PEGASUS model with No Preprocessing (NP) detailed in Table 2 in the paper.
15
+ This was the best performing model at the time of experimentation.
16
+
17
+ ## Model Description
18
+
19
+ <!-- Provide a longer summary of what this model is. -->
20
+
21
+ - **Developed by:** Varad Bhatnagar, Diptesh Kanojia and Kameswari Chebrolu
22
+ - **Model type:** Summarization
23
+ - **Language(s) (NLP):** English
24
+ - **Finetuned from model:** https://huggingface.co/sshleifer/distill-pegasus-cnn-16-4
25
+
26
+ ## Model Sources
27
+
28
+ <!-- Provide the basic links for the model. -->
29
+
30
+ - **Repository:** https://github.com/varadhbhatnagar/FC-Claim-Det
31
+ - **Paper:** https://aclanthology.org/2022.coling-1.259/
32
+
33
+ # Uses
34
+
35
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
36
+
37
+ ## Direct Use
38
+
39
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
40
+
41
+ English to English summarization on noisy fact-checking worthy claims found on social media.
42
+
43
+ ## Downstream Use
44
+
45
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
46
+
47
+ Can be used for other tasks in a fact-checking pipeline such as claim matching and evidence retrieval.
48
+
49
+ # Bias, Risks, and Limitations
50
+
51
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
52
+
53
+ As the [Google Fact Check Explorer](https://toolbox.google.com/factcheck/explorer) is an ever growing and evolving system, the current Retrieval@k results may not exactly match
54
+ those in the corresponding paper as those experiments were conducted in the month of April and May 2022.
55
+
56
+ # Training Details
57
+
58
+ ## Training Data
59
+
60
+ <!-- This should link to a Data Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
61
+
62
+ [Data](https://github.com/varadhbhatnagar/FC-Claim-Det/blob/main/public_data/released_data.csv)
63
+ ## Training Procedure
64
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
65
+ Finetuning the pretrained Distilled PEGASUS model on the 567 pairs released in our paper.
66
+
67
+ ### Preprocessing
68
+
69
+ No preprocessing of input is done while fine-tuning this model.
70
+
71
+ # Evaluation
72
+ <!-- This section describes the evaluation protocols and provides the results. -->
73
+ Retrieval@5 and Mean Reciprocal Recall scores are reported.
74
+
75
+ ## Results
76
+
77
+ Retrieval@5 = 34.91
78
+ MRR = 0.3
79
+
80
+ Further details can be found in the paper.
81
+
82
+
83
+ # Citation
84
+
85
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
86
+
87
+ **BibTeX:**
88
+ ```
89
+ @inproceedings{bhatnagar-etal-2022-harnessing,
90
+ title = "Harnessing Abstractive Summarization for Fact-Checked Claim Detection",
91
+ author = "Bhatnagar, Varad and
92
+ Kanojia, Diptesh and
93
+ Chebrolu, Kameswari",
94
+ booktitle = "Proceedings of the 29th International Conference on Computational Linguistics",
95
+ month = oct,
96
+ year = "2022",
97
+ address = "Gyeongju, Republic of Korea",
98
+ publisher = "International Committee on Computational Linguistics",
99
+ url = "https://aclanthology.org/2022.coling-1.259",
100
+ pages = "2934--2945",
101
+ abstract = "Social media platforms have become new battlegrounds for anti-social elements, with misinformation being the weapon of choice. Fact-checking organizations try to debunk as many claims as possible while staying true to their journalistic processes but cannot cope with its rapid dissemination. We believe that the solution lies in partial automation of the fact-checking life cycle, saving human time for tasks which require high cognition. We propose a new workflow for efficiently detecting previously fact-checked claims that uses abstractive summarization to generate crisp queries. These queries can then be executed on a general-purpose retrieval system associated with a collection of previously fact-checked claims. We curate an abstractive text summarization dataset comprising noisy claims from Twitter and their gold summaries. It is shown that retrieval performance improves 2x by using popular out-of-the-box summarization models and 3x by fine-tuning them on the accompanying dataset compared to verbatim querying. Our approach achieves Recall@5 and MRR of 35{\%} and 0.3, compared to baseline values of 10{\%} and 0.1, respectively. Our dataset, code, and models are available publicly: https://github.com/varadhbhatnagar/FC-Claim-Det/.",
102
+ }
103
+ ```
104
+
105
+ # Model Card Authors
106
+
107
+ Varad Bhatnagar
108
+
109
+ # Model Card Contact
110
+
111
+ Email: varadhbhatnagar@gmail.com
112
+
113
+ # How to Get Started with the Model
114
+
115
+ Use the code below to get started with the model.
116
+
117
+ <details>
118
+ <summary> Click to expand </summary>
119
+
120
+ {{ get_started_code | default("[More Information Needed]", true)}}
121
+
122
+ </details>