kimvu commited on
Commit
d8ff8a1
·
1 Parent(s): 199dabc

Update agieval.py

Browse files
Files changed (1) hide show
  1. agieval.py +11 -0
agieval.py CHANGED
@@ -3,6 +3,17 @@ import json
3
  import ast
4
  import pandas as pd
5
  import csv
 
 
 
 
 
 
 
 
 
 
 
6
  _DESCRIPTION = """\
7
  The dataset is an amendment and re-annotation of LogiQA in 2020, a large-scale logical reasoning reading comprehension dataset adapted from the Chinese Civil Service Examination. We increase the data size, refine the texts with manual translation by professionals, and improve the quality by removing items with distinctive cultural features like Chinese idioms. Furthermore, we conduct a fine-grained annotation on the dataset and turn it into a two-way natural language inference (NLI) task, resulting in 35k premise-hypothesis pairs with gold labels, making it the first large-scale NLI dataset for complex logical reasoning
8
  """
 
3
  import ast
4
  import pandas as pd
5
  import csv
6
+ _CITATION = """\
7
+ @ARTICLE{10174688,
8
+ author={Liu, Hanmeng and Liu, Jian and Cui, Leyang and Teng, Zhiyang and Duan, Nan and Zhou, Ming and Zhang, Yue},
9
+ journal={IEEE/ACM Transactions on Audio, Speech, and Language Processing},
10
+ title={LogiQA 2.0 — An Improved Dataset for Logical Reasoning in Natural Language Understanding},
11
+ year={2023},
12
+ volume={},
13
+ number={},
14
+ pages={1-16},
15
+ doi={10.1109/TASLP.2023.3293046}}
16
+ """
17
  _DESCRIPTION = """\
18
  The dataset is an amendment and re-annotation of LogiQA in 2020, a large-scale logical reasoning reading comprehension dataset adapted from the Chinese Civil Service Examination. We increase the data size, refine the texts with manual translation by professionals, and improve the quality by removing items with distinctive cultural features like Chinese idioms. Furthermore, we conduct a fine-grained annotation on the dataset and turn it into a two-way natural language inference (NLI) task, resulting in 35k premise-hypothesis pairs with gold labels, making it the first large-scale NLI dataset for complex logical reasoning
19
  """