tomaarsen HF staff commited on
Commit
61981b2
·
verified ·
1 Parent(s): 8c4d2c2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -0
README.md CHANGED
@@ -1,4 +1,16 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  config_name: pair
4
  features:
@@ -18,3 +30,29 @@ configs:
18
  - split: train
19
  path: pair/train-*
20
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ multilinguality:
5
+ - monolingual
6
+ size_categories:
7
+ - 100M<n<1B
8
+ task_categories:
9
+ - feature-extraction
10
+ - sentence-similarity
11
+ pretty_name: Reddit
12
+ tags:
13
+ - sentence-transformers
14
  dataset_info:
15
  config_name: pair
16
  features:
 
30
  - split: train
31
  path: pair/train-*
32
  ---
33
+
34
+ # Dataset Card for Reddit
35
+
36
+ This dataset contains titles and bodies of Reddit posts collected from the [Reddit-Title-Body dataset](https://huggingface.co/datasets/sentence-transformers/reddit-title-body).
37
+
38
+ The data has been filtered for:
39
+
40
+ * Remove threads with an upvote_ratio < 0.5
41
+ * Only include threads with a title more than 25 characters and bodies with len(title)+25 < len(body) < 4096
42
+ * Only keep threads with at least 3 comments or at least 3 upvotes.
43
+
44
+ ## Dataset Subsets
45
+
46
+ ### `pair` subset
47
+
48
+ * Columns: "title", "body"
49
+ * Column types: `str`, `str`
50
+ * Examples:
51
+ ```python
52
+ {
53
+ 'title': 'Has anybody else watched Kings?',
54
+ 'body': 'I know it's not SciFi per se, but I thought this kind of "big concept" show might appeal to the same group. I hadn't heard of it, but Hulu recommended it to me, and I ended up watching the entire thing over a couple of days. I thought it was absolutely fantastic, and I'm really bummed that it won't be coming back. I've been recommending it to everyone I know, but I haven't found anyone else who's watched it! Did anybody here? If so, what did people think? EDIT: P.S. It's all available on Hulu!',
55
+ }
56
+ ```
57
+ * Collection strategy: Concatenating all files from [Reddit-Title-Body dataset](https://huggingface.co/datasets/sentence-transformers/reddit-title-body).
58
+ * Deduplified: No