statsguy commited on
Commit
1f5d8d4
·
1 Parent(s): bdbccdd

initial commit

Browse files
Files changed (1) hide show
  1. README.md +35 -0
README.md CHANGED
@@ -1,3 +1,38 @@
1
  ---
2
  license: mit
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  ---
4
+
5
+ # Dataset Card for "propqa-tp"
6
+
7
+ ### Dataset Summary
8
+
9
+ The PopQA-TP (PopQA Templated Paraphrases) is a dataset derived from PopQA (https://huggingface.co/datasets/akariasai/PopQA), created for the paper "Predicting Question-Answering Performance of Large Language Models
10
+ through Semantic Consistency". PopQA-TP takes each question in PopQA and paraphrases it using each of several manually-created templates specific to each question category. The paper investigates the connection between
11
+ the semantic consistency of generated answers to each question's paraphrases and the accuracy (correctness) of the generated answer to the original question, evaluated by string match to one of the ground
12
+ truth answers.
13
+
14
+ ### Data Instances
15
+
16
+ #### popqa-tp
17
+
18
+ - **Size of downloaded dataset file:** 29 MB
19
+
20
+ ### Data Fields
21
+ #### popqa-tp
22
+ - `paraphrase` (string): paraphrased of question from PopQ.
23
+ - `prop` (string): relationship type category of question.
24
+ - `template_id` (integer): integer ID of the paraphrase template used. Value of 0 indicates it is the original question form from PopQA.
25
+ - `possible_answers' (list of strings): a list of the gold answers.
26
+ - `id' (integer): original ID of question from PopQA
27
+
28
+ ### Citation Information
29
+ ```
30
+ @inproceedings{rabinovich2023predicting,
31
+ title={Predicting Question-Answering Performance of Large Language Models
32
+ through Semantic Consistency},
33
+ author={Ella Rabinovich, Samuel Ackerman, Orna Raz, Eitan Farchi, Ateret Anaby-Tavor},
34
+ booktitle = "Proceedings of the 3rd Version of the Generation, Evaluation & Metrics (GEM) Workshop of The 2023 Conference on Empirical Methods in Natural Language Processing",
35
+ publisher = "Association for Computational Linguistics",
36
+ year={2023},}
37
+ }
38
+ ```