eduagarcia commited on
Commit
f45396a
1 Parent(s): cd72f62

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +63 -0
README.md CHANGED
@@ -1,4 +1,13 @@
1
  ---
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  - config_name: corpus
4
  features:
@@ -68,3 +77,57 @@ configs:
68
  - split: queries
69
  path: queries/queries-*
70
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - pt
4
+ task_categories:
5
+ - question-answering
6
+ - text-retrieval
7
+ task_ids:
8
+ - document-retrieval
9
+ - closed-domain-qa
10
+ - explanation-generation
11
  dataset_info:
12
  - config_name: corpus
13
  features:
 
77
  - split: queries
78
  path: queries/queries-*
79
  ---
80
+ # The MilkQA Dataset
81
+
82
+ *I am not the author of this dataset, this is a reproduction of the MilkQA dataset on HuggingFace that can be downloaded from the link: http://nilc.icmc.usp.br/nilc/index.php/milkqa*
83
+
84
+ MilkQA is a dataset of dense questions for the task of answer selection. It contains questions and answers of the dairy farming domain that were collected by the customer service of Embrapa Dairy Cattle between the years of 2003 and 2012.
85
+
86
+ The dataset currently contains 2,657 anonymized pairs of questions and answers and is organized in three partitions: training, development and tests, that contains 2,307, 50 and 300 questions, respectively. Each question is associated to a pool of 50 candidate answers where only one answer is correct.
87
+
88
+ MilkQA is composed of challenging questions that are different from those typically approached in Question Answering. In our work, we call them consumer questions. These questions usually occur in situations where people seek solutions for some problem and present very particular characteristics, such as the larger size and the lack of objectivity.
89
+
90
+ Details about MilkQA are provided in the paper referenced below. Please, if you use the dataset, consider citing this paper (available at https://arxiv.org/abs/1801.03460).
91
+
92
+ ## Dataset Details
93
+
94
+ ### Dataset Sources
95
+
96
+ - **Repository:** http://nilc.icmc.usp.br/nilc/index.php/milkqa
97
+ - **Paper:** https://arxiv.org/abs/1801.03460
98
+
99
+ ## Citation
100
+
101
+ **BibTeX:**
102
+ ```bibtext
103
+ @inproceedings{criscuolo2017milkqa,
104
+ author = {Marcelo Criscuolo and Erick Rocha Fonseca and Sandra Maria Aluísio and Ana Carolina Sperança-Criscuolo},
105
+ title = {{MilkQA}: a Dataset of Consumer Questions for the Task of Answer Selection},
106
+ booktitle = {Proceedings of the 6th Brazilian Conference on Intelligent Systems (BRACIS)},
107
+ year = {2017},
108
+ month = {October},
109
+ date = {2-5},
110
+ address = {Uberlândia, Brazil},
111
+ publisher = {IEEE},
112
+ isbn = {978-1-5386-2407-4},
113
+ pages = {354--359},
114
+ volume = {1},
115
+ doi = {10.1109/BRACIS.2017.12},
116
+ }
117
+ ```
118
+
119
+ ## License
120
+
121
+ MilkQA is published by the Interinstitutional Center for Computational Lisguistics (NILC)[http://nilc.icmc.usp.br/] at University of Sao Paulo (USP) under the license Creative Commons, with the clauses Attribution, NonCommercial and NoDerivatives (CC BY-NC-ND)[https://creativecommons.org/licenses/by-nc-nd/4.0/].
122
+
123
+ # Dataset Contents
124
+
125
+ 1. Data Directory
126
+
127
+ The queries and corpus subsets contains all the pairs of questions and answers linked by the same **id**.
128
+
129
+ 2. Qrels
130
+
131
+ The splits {train,dev,test} correspond to the training, development and test subsets.
132
+
133
+ The column **query-id**, which represents a question in *queries* subset, is associated with its ground truth answer (**positive-doc-id**) and a pool of candidate answers (**candidates-ids**). The pool of candidates contains the ground truth answer.