gabrielaltay qanastek commited on
Commit
7b34cb1
1 Parent(s): 6a9466b

Broken bibtex citation (#2)

Browse files

- Broken bibtex citation (d526490e3623ae575476bdeecee8f1f342600f4a)


Co-authored-by: yanis labrak <qanastek@users.noreply.huggingface.co>

Files changed (1) hide show
  1. scitail.py +11 -5
scitail.py CHANGED
@@ -36,11 +36,17 @@ _LANGUAGES = ["English"]
36
  _PUBMED = False
37
  _LOCAL = False
38
  _CITATION = """\
39
- @inproceedings{scitail,
40
- author = {Tushar Khot and Ashish Sabharwal and Peter Clark},
41
- booktitle = {AAAI}
42
- title = {SciTail: A Textual Entailment Dataset from Science Question Answering},
43
- year = {2018}
 
 
 
 
 
 
44
  }
45
  """
46
 
 
36
  _PUBMED = False
37
  _LOCAL = False
38
  _CITATION = """\
39
+ @article{
40
+ Khot_Sabharwal_Clark_2018,
41
+ title={SciTaiL: A Textual Entailment Dataset from Science Question Answering},
42
+ volume={32},
43
+ url={https://ojs.aaai.org/index.php/AAAI/article/view/12022}, DOI={10.1609/aaai.v32i1.12022},
44
+ abstractNote={ &lt;p&gt; We present a new dataset and model for textual entailment, derived from treating multiple-choice question-answering as an entailment problem. SciTail is the first entailment set that is created solely from natural sentences that already exist independently ``in the wild’’ rather than sentences authored specifically for the entailment task. Different from existing entailment datasets, we create hypotheses from science questions and the corresponding answer candidates, and premises from relevant web sentences retrieved from a large corpus. These sentences are often linguistically challenging. This, combined with the high lexical similarity of premise and hypothesis for both entailed and non-entailed pairs, makes this new entailment task particularly difficult. The resulting challenge is evidenced by state-of-the-art textual entailment systems achieving mediocre performance on SciTail, especially in comparison to a simple majority class baseline. As a step forward, we demonstrate that one can improve accuracy on SciTail by 5% using a new neural model that exploits linguistic structure. &lt;/p&gt; },
45
+ number={1},
46
+ journal={Proceedings of the AAAI Conference on Artificial Intelligence},
47
+ author={Khot, Tushar and Sabharwal, Ashish and Clark, Peter},
48
+ year={2018},
49
+ month={Apr.}
50
  }
51
  """
52