x65617379 commited on
Commit
ca15b00
·
verified ·
1 Parent(s): 7196fc0

Upload README

Browse files
Files changed (1) hide show
  1. README.md +187 -0
README.md ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: unknown
5
+ size_categories:
6
+ - 1K<n<10K
7
+ configs:
8
+ - config_name: structured_WIP
9
+ data_files:
10
+ - split: train
11
+ path: "tildes.parquet"
12
+ ---
13
+
14
+ <div style="
15
+ display: inline-block;
16
+ width: fit-content;
17
+ max-width: 100%;
18
+ background: #0b0f14;
19
+ border: 1px solid #223044;
20
+ border-left: 5px solid #20c997;
21
+ border-radius: 8px;
22
+ padding: 14px 18px;
23
+ margin-bottom: 20px;
24
+ color: #e6edf3;
25
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
26
+ box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
27
+ ">
28
+ <p style="
29
+ margin: 0 0 6px 0;
30
+ color: #8aa2bd;
31
+ font-size: 12px;
32
+ line-height: 1.4;
33
+ text-transform: uppercase;
34
+ ">codex dataset card</p>
35
+ <p style="
36
+ margin: 0;
37
+ color: #e6edf3;
38
+ font-size: 15px;
39
+ font-weight: 650;
40
+ line-height: 1.45;
41
+ "><span style="color:#20c997;">&gt;</span> generated by <span style="color:#ffffff;">Codex</span><span style="color:#20c997;">_</span></p>
42
+ </div>
43
+
44
+ # Dataset Card for tildes-structured_WIP
45
+
46
+ ## Dataset Summary
47
+
48
+ This is a partial, structurally validated supervised fine-tuning dataset derived
49
+ from the Tildes thread-only curation pipeline. It was generated from the first
50
+ 3,884 checkpointed source topics of the `full_v1` run and contains 2,577 usable
51
+ training records after root curation, input-author subtree scrubbing, and
52
+ post-scrub trainability checks.
53
+
54
+ The intended training shape is:
55
+
56
+ - `input`: a source-only, user-like root prompt.
57
+ - `discussion.nodes`: a multi-author tree/forest of source discussion posts.
58
+ - `metadata`: provenance, curation, and audit fields not intended as model
59
+ input.
60
+
61
+ There is no final-answer or `output` target. The intended SFT task is
62
+ `input -> discussion`.
63
+
64
+ This preflight slice is suitable for testing training templates, data loaders,
65
+ upload tooling, and downstream dataset consumers. It should not be treated as
66
+ the final `full_v1` dataset.
67
+
68
+ ## Dataset Details
69
+
70
+ - **Language:** English
71
+ - **Source website:** https://tildes.net
72
+ - **Source crawl date:** 2026-05-03
73
+ - **Derived split:** `structured_preflight_3884`
74
+ - **Primary data file:** `tildes.parquet`
75
+ - **Companion source JSONL:** `tildes.jsonl`
76
+ - **Records:** 2,577
77
+ - **Discussion nodes:** 26,789
78
+ - **Blank discussion nodes:** 5
79
+ - **Rows with `output` field:** 0
80
+ - **Rows with `u0` in `discussion.nodes`:** 0
81
+
82
+ Root policy counts:
83
+
84
+ | Root policy | Records |
85
+ |---|---:|
86
+ | `topic_root` | 903 |
87
+ | `standalone_top_level` | 1,178 |
88
+ | `topic_context_top_level` | 496 |
89
+
90
+ Split status counts:
91
+
92
+ | Split status | Records |
93
+ |---|---:|
94
+ | `original` | 903 |
95
+ | `split` | 1,674 |
96
+
97
+ Text volume:
98
+
99
+ | Metric | Value |
100
+ |---|---:|
101
+ | Input characters | 2,478,840 |
102
+ | Input nonblank characters | 2,034,051 |
103
+ | Discussion node characters | 16,136,506 |
104
+ | Discussion node nonblank characters | 13,238,627 |
105
+ | Minimum discussion nodes per record | 1 |
106
+ | Maximum discussion nodes per record | 275 |
107
+
108
+ Parquet conversion:
109
+
110
+ | Metric | Value |
111
+ |---|---:|
112
+ | Parquet file size | 8.0 MB |
113
+ | Rows | 2,577 |
114
+ | Row groups | 1 |
115
+ | Max uncompressed row group size | 18.5 MB |
116
+ | Compression | ZSTD |
117
+
118
+ ## Dataset Structure
119
+
120
+ Each row has the following top-level fields:
121
+
122
+ | Field | Type | Description |
123
+ |---|---|---|
124
+ | `input` | string | Source-only prompt intended to read like something a person might ask an assistant |
125
+ | `discussion.nodes` | list<object> | Source discussion tree/forest after input-author subtree scrubbing |
126
+ | `metadata` | object | Source, curation, filtering, and audit metadata |
127
+
128
+ Each discussion node has:
129
+
130
+ | Field | Type | Description |
131
+ |---|---|---|
132
+ | `id` | string | Per-example node ID, reindexed as `n0`, `n1`, etc. |
133
+ | `parent` | string or null | Parent node ID inside the same example |
134
+ | `author` | string | Per-example anonymised author ID starting at `u1` |
135
+ | `content` | string | Source comment body text |
136
+
137
+ Important format choices:
138
+
139
+ - The root/user prompt is stored as `input`, not as a discussion node.
140
+ - Discussion node authors start at `u1`; `u0` is reserved conceptually for the
141
+ prompt author and does not appear in `discussion.nodes`.
142
+ - New rows omit `output` entirely.
143
+ - `metadata` is for auditing and curation; it is not intended as model input.
144
+
145
+ ## Uses
146
+
147
+ This preflight slice is most appropriate for:
148
+
149
+ - smoke-testing SFT data loaders and chat templates,
150
+ - validating Parquet upload and viewer behavior,
151
+ - running small pilot training jobs,
152
+ - checking downstream consumers before the full dataset is generated.
153
+
154
+ It is not intended as:
155
+
156
+ - the final `full_v1` dataset,
157
+ - a complete assistant instruction-following dataset,
158
+ - a final-answer or QA dataset,
159
+ - a safety-filtered assistant dataset,
160
+ - a factual benchmark.
161
+
162
+ ## Bias, Risks, and Limitations
163
+
164
+ The dataset inherits the risks of the public Tildes crawl, including offensive
165
+ language, misinformation, sensitive topics, copyrighted quotations, and
166
+ personally identifying information inside post content.
167
+
168
+ The source text is anonymised only in structured `author` fields. Exact source
169
+ text, URLs, topic IDs, quotations, names, or handles may still appear in content
170
+ or metadata.
171
+
172
+ DeepSeek was used only for root and branch appraisal. It did not generate,
173
+ rewrite, summarise, or trim training text. However, its decisions influence
174
+ which records appear in this slice.
175
+
176
+ Because this is a partial preflight slice, distributions by topic, group,
177
+ prompt style, and discussion shape may differ from the final full run.
178
+
179
+ ## License and Redistribution
180
+
181
+ No license was identified for the source forum content. This derived dataset is
182
+ therefore marked as `license: unknown`.
183
+
184
+ The dataset consists of transformed public forum posts authored by third
185
+ parties. Users are responsible for determining whether their intended use is
186
+ lawful, including with respect to copyright, privacy, data protection, and
187
+ platform terms.