All Projects → TalSchuster → Feversymmetric

TalSchuster / Feversymmetric

Licence: mit
Symmetric evaluation set based on the FEVER (fact verification) dataset

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Feversymmetric

Datastream.io
An open-source framework for real-time anomaly detection using Python, ElasticSearch and Kibana
Stars: ✭ 814 (+2706.9%)
Mutual labels:  dataset
Mobius
C# and F# language binding and extensions to Apache Spark
Stars: ✭ 929 (+3103.45%)
Mutual labels:  dataset
Company Names Corpus
公司名语料库。机构名语料库。公司简称,缩写,品牌词,企业名。可用于中文分词、机构名实体识别。
Stars: ✭ 868 (+2893.1%)
Mutual labels:  dataset
Insuranceqa Corpus Zh
🚁 保险行业语料库,聊天机器人
Stars: ✭ 821 (+2731.03%)
Mutual labels:  dataset
Imagenetscraper
👁 Bulk-download all thumbnails from an ImageNet synset, with optional rescaling
Stars: ✭ 24 (-17.24%)
Mutual labels:  dataset
Learning Python Predictive Analytics
Tracking, notes and programming snippets while learning predictive analytics
Stars: ✭ 26 (-10.34%)
Mutual labels:  dataset
Safety Helmet Wearing Dataset
Safety helmet wearing detect dataset, with pretrained model
Stars: ✭ 802 (+2665.52%)
Mutual labels:  dataset
Jsut Lab
HTS-style full-context labels for JSUT v1.1
Stars: ✭ 28 (-3.45%)
Mutual labels:  dataset
Cophy
"CoPhy: Counterfactual Learning of Physical Dynamics", F. Baradel, N. Neverova, J. Mille, G. Mori, C. Wolf, ICLR'2020
Stars: ✭ 24 (-17.24%)
Mutual labels:  dataset
Khayyam
106 Omar Khayyam quatrains in YAML format.
Stars: ✭ 8 (-72.41%)
Mutual labels:  dataset
Football Data
football (soccer) datasets
Stars: ✭ 18 (-37.93%)
Mutual labels:  dataset
Rdhs
API Client and Data Munging for the Demographic and Health Survey Data
Stars: ✭ 22 (-24.14%)
Mutual labels:  dataset
Facerank
FaceRank - Rank Face by CNN Model based on TensorFlow (add keras version). FaceRank-人脸打分基于 TensorFlow (新增 Keras 版本) 的 CNN 模型(QQ群:167122861)。技术支持:http://tensorflow123.com
Stars: ✭ 841 (+2800%)
Mutual labels:  dataset
Covid Ct
COVID-CT-Dataset: A CT Scan Dataset about COVID-19
Stars: ✭ 820 (+2727.59%)
Mutual labels:  dataset
Tedsds
Apache Spark - Turbofan Engine Degradation Simulation Data Set example in Apache Spark
Stars: ✭ 14 (-51.72%)
Mutual labels:  dataset
Osint collection
Maintained collection of OSINT related resources. (All Free & Actionable)
Stars: ✭ 809 (+2689.66%)
Mutual labels:  dataset
Musical Onset Efficient
Supplementary information and code for the paper: An efficient deep learning model for musical onset detection
Stars: ✭ 26 (-10.34%)
Mutual labels:  dataset
Deep learning projects
Stars: ✭ 28 (-3.45%)
Mutual labels:  dataset
Covid 19 Api
Covid-19 Virus Data API from Johns Hopkins CSSE
Stars: ✭ 15 (-48.28%)
Mutual labels:  dataset
Synthetic Computer Vision
A list of synthetic dataset and tools for computer vision
Stars: ✭ 843 (+2806.9%)
Mutual labels:  dataset

Towards Debiasing Fact Verification Models

  • Symmetric evaluation set based on the FEVER (fact verification) dataset
  • Regularization-based method

Symmetric dataset

To download the symmetric evaluation dataset from the EMNLP 2019 paper Towards Debiasing Fact Verification Models use this link.

Version 0.2

We release a version that includes new cases. This version is split to dev (708 pairs) and test (712 pairs) to allow models to use the dev set for hyperparameter tuning.

Version 0.1

The version used in "Towards Debiasing Fact Verification Models" paper.

We've implemented the baseline and the reweighted version on the latest version of the pytorch-transformers repository (link). Since the test set is small, there are some random variations across different runs using different servers/GPUs. Therefore, to allow better comparison across methods, we've run the training five times with different random seeds and report the average and std of the runs:

Symmetric (generated) Fever DEV delta
baseline 57.46 (+/-1.6) 85.85 (+/-0.5)
re-weighted 61.62 (+/-1.2) 85.95 (+/-0.5) 4.16

Dataset format

As described in the paper, the cases are based on the FEVER dataset.

Each line in the jsonlines file contains:

  • id - matches the FEVER id. For the new pairs, a suffix of 000000{2,3,4} is added.
  • label - SUPPORTS or REFUTES.
  • claim - the claim.
  • evidence_sentence - the evidence.

Training

Our processed FEVER training data is available here. It includes only cases that can be validated with a single evidence sentence. The evidence sentences for the NOT ENOUGH INFORMATION sampled from the NSMN retrieval model.

The processed FEVER evaluation data is available here.

In order to train the baseline model, use the run bash train_baseline.sh.

To use the re-weighted training, add the weighted_loss flag.

Citation

If you find this repo useful, please cite our paper.

@InProceedings{schuster2019towards,
  author = 	"Schuster, Tal and
  			Shah, Darsh J and
  			Yeo, Yun Jie Serene and
  			Filizzola, Daniel and
  			Santus, Enrico and
  			Barzilay, Regina", 			
  title = 	"Towards Debiasing Fact Verification Models",
  booktitle = 	"Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing (EMNLP)",
  year = 	"2019",
  publisher = 	"Association for Computational Linguistics",
  url = 	"https://arxiv.org/abs/1908.05267"
}

Related papers

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].