quantranger commited on
Commit
b4df2d3
·
verified ·
1 Parent(s): 6509d6b

Update README for v2 corpus (15 subs, Arctic Shift source)

Browse files
Files changed (1) hide show
  1. README.md +71 -53
README.md CHANGED
@@ -1,55 +1,73 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: id
5
- dtype: string
6
- - name: subreddit
7
- dtype: string
8
- - name: title
9
- dtype: string
10
- - name: selftext
11
- dtype: string
12
- - name: url
13
- dtype: string
14
- - name: permalink
15
- dtype: string
16
- - name: author
17
- dtype: string
18
- - name: score
19
- dtype: int64
20
- - name: num_comments
21
- dtype: int64
22
- - name: created_utc
23
- dtype: json
24
- - name: flair
25
- dtype: string
26
- - name: is_self
27
- dtype: bool
28
- - name: domain
29
- dtype: string
30
- - name: comments
31
- list:
32
- - name: id
33
- dtype: string
34
- - name: author
35
- dtype: string
36
- - name: body
37
- dtype: string
38
- - name: score
39
- dtype: int64
40
- - name: created_utc
41
- dtype: json
42
- - name: scraped_at
43
- dtype: string
44
- splits:
45
- - name: train
46
- num_bytes: 2918537
47
- num_examples: 809
48
- download_size: 2103257
49
- dataset_size: 2918537
50
- configs:
51
- - config_name: default
52
- data_files:
53
- - split: train
54
- path: data/train-*
55
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: other
3
+ license_name: reddit-data-api-terms
4
+ license_link: https://redditinc.com/policies/data-api-terms
5
+ task_categories:
6
+ - text-classification
7
+ - question-answering
8
+ - text-generation
9
+ tags:
10
+ - reddit
11
+ - sre
12
+ - devops
13
+ - kubernetes
14
+ - incident-response
15
+ - startups
16
+ size_categories:
17
+ - 1K<n<10K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  ---
19
+
20
+ # Reddit SRE + Founder corpus (v2)
21
+
22
+ 1475 unique posts scraped from 15 subreddits between 2013-06-14 and 2026-06-19. Built for product discovery on the Kubernetes Incident Autopilot hypothesis — agents that reason at inference time through incident diagnosis, with humans in an override loop.
23
+
24
+ ## Subreddits (15)
25
+
26
+ SRE tier: r/sre, r/devops, r/kubernetes, r/sysadmin, r/aws, r/azure, r/gcp, r/programming, r/ExperiencedDevs, r/chaosengineering
27
+
28
+ Founder tier: r/Entrepreneur, r/startups, r/SaaS, r/IndieHackers, r/ycombinator
29
+
30
+ ## Sources
31
+
32
+ Two scrape backends, both Pushshift-compatible JSON:
33
+ - **PullPush** (api.pullpush.io) — original 792 posts
34
+ - **Arctic Shift** (arctic-shift.photon-reddit.com) — recovered 683 previously-missing posts (the open successor to Pushshift, no auth required)
35
+
36
+ ## Field schema
37
+
38
+ | field | type | notes |
39
+ |-------|------|-------|
40
+ | id | str | Reddit post ID |
41
+ | subreddit | str | lowercase canonical name |
42
+ | title | str | post title |
43
+ | selftext | str | body text (empty for link posts) |
44
+ | author | str | may be '[deleted]' |
45
+ | score | int | upvote count at scrape time |
46
+ | num_comments | int | comment count at scrape time |
47
+ | created_utc | int | unix timestamp |
48
+ | permalink | str | relative URL |
49
+ | url | str | external URL or self |
50
+ | domain | str | |
51
+ | is_self | bool | text post? |
52
+ | upvote_ratio | float | 0-1 |
53
+ | over_18 | bool | NSFW? |
54
+ | link_flair_text | str | sub-specific tag |
55
+ | _source | str | pullpush or arctic-shift |
56
+ | _fetched_at | int | unix timestamp of scrape |
57
+
58
+ ## Use
59
+
60
+ ```python
61
+ from datasets import load_dataset
62
+ ds = load_dataset("quantranger/reddit-sre-corpus", split="train")
63
+ ```
64
+
65
+ ## Companion files in this repo
66
+
67
+ - `synthesis_v2.md` — Claude Sonnet 4.5 product synthesis on the 80 highest-signal posts
68
+ - `eda_summary.md` — pain keywords, tool mentions, top posts
69
+ - `digest_top80.txt` — the prompt input fed to the LLM
70
+
71
+ ## Compliance
72
+
73
+ PullPush and Arctic Shift are third-party archives of public Reddit data. Commercial use may require a separate agreement with Reddit (see https://redditinc.com/policies/data-api-terms).