LLukas22 commited on
Commit
5f326be
1 Parent(s): 27f2219

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +65 -0
README.md ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - sentence-similarity
5
+ - feature-extraction
6
+ language:
7
+ - en
8
+ size_categories:
9
+ - 100K<n<1M
10
+ ---
11
+ # Dataset Card for "cqadupstack"
12
+
13
+ ## Table of Contents
14
+ - [Table of Contents](#table-of-contents)
15
+ - [Dataset Description](#dataset-description)
16
+ - [Dataset Summary](#dataset-summary)
17
+ - [Dataset Structure](#dataset-structure)
18
+ - [Data Instances](#data-instances)
19
+ - [Data Fields](#data-fields)
20
+ - [Additional Information](#additional-information)
21
+ - [Licensing Information](#licensing-information)
22
+
23
+ ## Dataset Description
24
+
25
+ - **Homepage:** [http://nlp.cis.unimelb.edu.au/resources/cqadupstack/](http://nlp.cis.unimelb.edu.au/resources/cqadupstack/)
26
+
27
+
28
+ ### Dataset Summary
29
+ This is a preprocessed version of cqadupstack, to make it easily consumable via huggingface. The original dataset can be found [here](http://nlp.cis.unimelb.edu.au/resources/cqadupstack/).
30
+
31
+
32
+ CQADupStack is a benchmark dataset for community question-answering (cQA) research. It contains threads from twelve StackExchange1 subforums, annotated with duplicate question information and comes with pre-defined training, development, and test splits, both for retrieval and classification experiments.
33
+
34
+
35
+
36
+ ## Dataset Structure
37
+
38
+ ### Data Instances
39
+
40
+ An example of 'train' looks as follows.
41
+
42
+ ```json
43
+ {
44
+ "question": "Very often, when some unknown company is calling me, in couple of seconds I see its name and logo on standard ...",
45
+ "answer": "You didn't explicitely mention it, but from the context I assume you're using a device with Android 4.4 (Kitkat). With that ...",
46
+ "title": "Why Dialer shows contact name and image, when contact is not in my address book?",
47
+ "forum_tag": "android"
48
+ }
49
+ ```
50
+
51
+ ### Data Fields
52
+
53
+ The data fields are the same among all splits.
54
+
55
+ - `question`: a `string` feature.
56
+ - `answer`: a `string` feature.
57
+ - `title`: a `string` feature.
58
+ - `forum_tag`: a categorical `string` feature.
59
+
60
+
61
+ ## Additional Information
62
+
63
+ ### Licensing Information
64
+
65
+ This dataset is distributed under the Apache 2.0 licence.