amanrangapur commited on
Commit
6908a08
1 Parent(s): f857d44

Delete README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -108
README.md DELETED
@@ -1,108 +0,0 @@
1
- <h1 align="center">Fin-Fact - Financial Fact-Checking Dataset</h1>
2
-
3
- ## Table of Contents
4
-
5
- - [Overview](#overview)
6
- - [Dataset Description](#dataset-description)
7
- - [Dataset Usage](#dataset-usage)
8
- - [Leaderboard](#leaderboard)
9
- - [Dependencies](#dependencies)
10
- - [Run models for paper metrics](#run-models-for-paper-metrics)
11
- - [Citation](#citation)
12
- - [Contribution](#contribution)
13
- - [License](#license)
14
- - [Contact](#contact)
15
-
16
- ## Overview
17
-
18
- Welcome to the Fin-Fact repository! Fin-Fact is a comprehensive dataset designed specifically for financial fact-checking and explanation generation. This README provides an overview of the dataset, how to use it, and other relevant information. [Click here](https://arxiv.org/abs/2309.08793) to access the paper.
19
-
20
- ## Dataset Description
21
-
22
- - **Name**: Fin-Fact
23
- - **Purpose**: Fact-checking and explanation generation in the financial domain.
24
- - **Labels**: The dataset includes various labels, including Claim, Author, Posted Date, Sci-digest, Justification, Evidence, Evidence href, Image href, Image Caption, Visualisation Bias Label, Issues, and Claim Label.
25
- - **Size**: The dataset consists of 3121 claims spanning multiple financial sectors.
26
- - **Additional Features**: The dataset goes beyond textual claims and incorporates visual elements, including images and their captions.
27
-
28
- ## Dataset Usage
29
-
30
- Fin-Fact is a valuable resource for researchers, data scientists, and fact-checkers in the financial domain. Here's how you can use it:
31
-
32
- 1. **Download the Dataset**: You can download the Fin-Fact dataset [here](https://github.com/IIT-DM/Fin-Fact/blob/FinFact/finfact.json).
33
-
34
- 2. **Exploratory Data Analysis**: Perform exploratory data analysis to understand the dataset's structure, distribution, and any potential biases.
35
-
36
- 3. **Natural Language Processing (NLP) Tasks**: Utilize the dataset for various NLP tasks such as fact-checking, claim verification, and explanation generation.
37
-
38
- 4. **Fact Checking Experiments**: Train and evaluate machine learning models, including text and image analysis, using the dataset to enhance the accuracy of fact-checking systems.
39
-
40
- ## Leaderboard
41
-
42
- ## Dependencies
43
- We recommend you create an anaconda environment:
44
-
45
- `conda create --name finfact python=3.6 conda-build`
46
-
47
- Then, install Python requirements:
48
-
49
- `pip install -r requirements.txt`
50
-
51
-
52
- ## Run models for paper metrics
53
-
54
- We provide scripts let you easily run our dataset on existing state-of-the-art models and re-create the metrics published in paper. You should be able to reproduce our results from the paper by following these instructions. Please post an issue if you're unable to do this.
55
- To run existing ANLI models for fact checking.
56
-
57
- ### Run:
58
- 1. BART
59
- ```bash
60
- python anli.py --model_name 'ynie/bart-large-snli_mnli_fever_anli_R1_R2_R3-nli' --data_file finfact.json --threshold 0.5
61
- ```
62
- 2. RoBERTa
63
- ```bash
64
- python anli.py --model_name 'ynie/roberta-large-snli_mnli_fever_anli_R1_R2_R3-nli' --data_file finfact.json --threshold 0.5
65
- ```
66
- 3. ELECTRA
67
- ```bash
68
- python anli.py --model_name 'ynie/electra-large-discriminator-snli_mnli_fever_anli_R1_R2_R3-nli' --data_file finfact.json --threshold 0.5
69
- ```
70
- 4. AlBERT
71
- ```bash
72
- python anli.py --model_name 'ynie/albert-xxlarge-v2-snli_mnli_fever_anli_R1_R2_R3-nli' --data_file finfact.json --threshold 0.5
73
- ```
74
- 5. XLNET
75
- ```bash
76
- python anli.py --model_name 'ynie/xlnet-large-cased-snli_mnli_fever_anli_R1_R2_R3-nli' --data_file finfact.json --threshold 0.5
77
- ```
78
- 6. GPT-2
79
- ```bash
80
- python gpt2_nli.py --model_name 'fractalego/fact-checking' --data_file finfact.json
81
- ```
82
-
83
-
84
- ## Citation
85
-
86
- ```
87
- @misc{rangapur2023finfact,
88
- title={Fin-Fact: A Benchmark Dataset for Multimodal Financial Fact Checking and Explanation Generation},
89
- author={Aman Rangapur and Haoran Wang and Kai Shu},
90
- year={2023},
91
- eprint={2309.08793},
92
- archivePrefix={arXiv},
93
- primaryClass={cs.AI}
94
- }
95
- ```
96
-
97
- ## Contribution
98
-
99
- We welcome contributions from the community to help improve Fin-Fact. If you have suggestions, bug reports, or want to contribute code or data, please check our [CONTRIBUTING.md](CONTRIBUTING.md) file for guidelines.
100
-
101
- ## License
102
-
103
- Fin-Fact is released under the [MIT License](/LICENSE). Please review the license before using the dataset.
104
-
105
- ## Contact
106
- For questions, feedback, or inquiries related to Fin-Fact, please contact `arangapur@hawk.iit.edu`.
107
-
108
- We hope you find Fin-Fact valuable for your research and fact-checking endeavors. Happy fact-checking!