tomaarsen HF Staff commited on
Commit
ef1d110
·
verified ·
1 Parent(s): 444ff99

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -0
README.md CHANGED
@@ -28,4 +28,40 @@ configs:
28
  path: data/dev-*
29
  - split: test
30
  path: data/test-*
 
 
 
 
 
31
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  path: data/dev-*
29
  - split: test
30
  path: data/test-*
31
+ language:
32
+ - en
33
+ tags:
34
+ - sentence-transformers
35
+ pretty_name: AskUbuntu
36
  ---
37
+
38
+ # Dataset Card for AskUbuntu
39
+
40
+ The AskUbuntu dataset (Lei et al., 2016) is a collection of preprocessed questions taken from AskUbuntu.com 2014 corpus dump. It also comes with 400*20 mannual annotations, marking pairs of questions as "similar" or "non-similar".
41
+ The dataset is sourced from the original [GitHub repository](https://github.com/taolei87/askubuntu).
42
+
43
+ Note that for the `train` split, the "positive" is the list of similar questions according to AskUbuntu, and "negative" is a list of randomly selected questions. For `dev` and `test`, the "positive" are human-annotated and may be empty. Unlike the original dataset, the "positive" data is *not* a subset of the "negative" data, they're mutually exclusive.
44
+
45
+ See also [sentence-transformers/askubuntu-questions](https://huggingface.co/datasets/sentence-transformers/askubuntu-questions) for all AskUbuntu questions in this dataset.
46
+
47
+ ## Dataset Details
48
+
49
+ * Columns: "query", "positive", "negative"
50
+ * Column types: `str`, `list[str]`, `list[str]`
51
+ * Examples:
52
+ ```python
53
+ {
54
+ "query": "system running in low graphic mode ( ubuntu without monitor )",
55
+ "positive": [
56
+ "getting system to boot in headless mode set-up without display problems"
57
+ ],
58
+ "negative": [
59
+ "software center not progress showing mergelist error",
60
+ "how to install google earth or draftsight for 64-bit os ?",
61
+ "how to install a huawei ec-226 usb modem ?",
62
+ ...
63
+ ]
64
+ }
65
+ ```
66
+ * Collection strategy: Downloading the `train_random.txt`, `dev.text`, and `test.txt` files from the original source, and mapping the query IDs to the query texts.
67
+ * Deduplicated: No