abhayesian commited on
Commit
006d692
·
verified ·
1 Parent(s): ca0c7ac

Add dataset card (commit a0d63e2f)

Browse files
Files changed (1) hide show
  1. README.md +48 -36
README.md CHANGED
@@ -1,38 +1,50 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: prompt
5
- dtype: string
6
- - name: target
7
- dtype: string
8
- - name: meta
9
- struct:
10
- - name: format
11
- dtype: string
12
- - name: comment_id
13
- dtype: string
14
- - name: parent_kind
15
- dtype: string
16
- - name: parent_id
17
- dtype: string
18
- - name: post_id
19
- dtype: string
20
- - name: post_author
21
- dtype: string
22
- splits:
23
- - name: train
24
- num_bytes: 4212350
25
- num_examples: 552
26
- - name: val
27
- num_bytes: 297787
28
- num_examples: 42
29
- download_size: 2054764
30
- dataset_size: 4510137
31
- configs:
32
- - config_name: default
33
- data_files:
34
- - split: train
35
- path: data/train-*
36
- - split: val
37
- path: data/val-*
38
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-4.0
3
+ language: en
4
+ tags:
5
+ - alignment
6
+ - ai-safety
7
+ - lesswrong
8
+ - ryan-greenblatt
9
+ - sft
10
+ size_categories:
11
+ - n<10K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  ---
13
+
14
+ # Ryan Greenblatt simulator — `dialogue` format
15
+
16
+ **Dialogue.** Two sub-formats: (a) external_post_body (preferred) — prompt includes the external LessWrong/EA Forum post body that Ryan is commenting on; (b) ryan_self_thread — prompt is Ryan's earlier comment in the same thread.
17
+
18
+ Part of the Ryan-Greenblatt-simulator SFT project (Tinker / Qwen3-8B-base).
19
+ See `OVERALL_PLAN.md` and `proposal.md` in the source repo for context.
20
+
21
+ ## Splits
22
+
23
+ - `train`: 552 rows (drawn only from the train source-unit split).
24
+ - `val`: 42 rows (drawn only from the val source-unit split).
25
+
26
+ Source-level splits are at `post_id` granularity (seed=0,
27
+ sha256("seed:post_id")). Heldout posts NEVER appear in any training row,
28
+ including via paragraph or comment derivation.
29
+
30
+ ## Source corpus
31
+
32
+ - HF dataset `abhayesian/ryan-greenblatt-lesswrong` (commit `fd1651c851c0a95e36d6418a9096391749c1d183`):
33
+ 66 posts + 1,123 comments authored by Ryan.
34
+ - For dialogue: external LessWrong / EA Forum post bodies fetched via
35
+ GraphQL (373 train+val external posts, 100% fetch success).
36
+
37
+ ## Generated by
38
+
39
+ git commit `a0d63e2f79e61486de8460d7b67e5ebab065592b` of the project repo (Segment 1, Phase 0).
40
+
41
+ ## Known caveats
42
+
43
+ - Synthesized prompt fields (QA questions, take-comparison claims) pass an
44
+ identity-leak regex filter, but no guarantee of zero false negatives.
45
+ - Distillation targets are LLM-generated bullets (not raw Ryan text);
46
+ every bullet contains a verbatim Ryan quote.
47
+ - Continuation targets are paragraph-aligned chunks, capped at ~1500
48
+ cl100k tokens.
49
+ - Co-authored posts: included in continuation/distillation/dialogue;
50
+ excluded from QA and take-comparison targets.