├── .gitignore ├── LICENSE ├── README.md ├── environment.yml ├── finfact.json ├── requirements.txt └── scripts ├── data_crawler_politifact.py ├── data_crawler_snopes.py ├── data_generator_politifact.py ├── data_generator_snopes.py ├── data_scrapper.py └── models ├── anli.py ├── bart_eval.py ├── bart_explaination_gen.py ├── bert_gen.py ├── experiments.py ├── get_api.py ├── gpt2_nli.py ├── llm_gemini.py ├── lvlm_gemini.py ├── lvlm_gpt_vision.py ├── pegasus_gen.py ├── prompts.py └── xl_sum_gen.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/environment.yml -------------------------------------------------------------------------------- /finfact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/finfact.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/data_crawler_politifact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/scripts/data_crawler_politifact.py -------------------------------------------------------------------------------- /scripts/data_crawler_snopes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/scripts/data_crawler_snopes.py -------------------------------------------------------------------------------- /scripts/data_generator_politifact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/scripts/data_generator_politifact.py -------------------------------------------------------------------------------- /scripts/data_generator_snopes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/scripts/data_generator_snopes.py -------------------------------------------------------------------------------- /scripts/data_scrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/scripts/data_scrapper.py -------------------------------------------------------------------------------- /scripts/models/anli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/scripts/models/anli.py -------------------------------------------------------------------------------- /scripts/models/bart_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/scripts/models/bart_eval.py -------------------------------------------------------------------------------- /scripts/models/bart_explaination_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/scripts/models/bart_explaination_gen.py -------------------------------------------------------------------------------- /scripts/models/bert_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/scripts/models/bert_gen.py -------------------------------------------------------------------------------- /scripts/models/experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/scripts/models/experiments.py -------------------------------------------------------------------------------- /scripts/models/get_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/scripts/models/get_api.py -------------------------------------------------------------------------------- /scripts/models/gpt2_nli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/scripts/models/gpt2_nli.py -------------------------------------------------------------------------------- /scripts/models/llm_gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/scripts/models/llm_gemini.py -------------------------------------------------------------------------------- /scripts/models/lvlm_gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/scripts/models/lvlm_gemini.py -------------------------------------------------------------------------------- /scripts/models/lvlm_gpt_vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/scripts/models/lvlm_gpt_vision.py -------------------------------------------------------------------------------- /scripts/models/pegasus_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/scripts/models/pegasus_gen.py -------------------------------------------------------------------------------- /scripts/models/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/scripts/models/prompts.py -------------------------------------------------------------------------------- /scripts/models/xl_sum_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIT-DM/Fin-Fact/HEAD/scripts/models/xl_sum_gen.py --------------------------------------------------------------------------------