skyzhou06 commited on
Commit
42b1dda
·
verified ·
1 Parent(s): 677840f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +141 -0
README.md ADDED
@@ -0,0 +1,141 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ pretty_name: LifeTextMultiTurnStreamingCoT
6
+ tags:
7
+ - streaming-cot
8
+ - life-scenarios
9
+ - text
10
+ - multi-turn
11
+ - dialogue
12
+ - sft
13
+ - reasoning
14
+ - instruction-tuning
15
+ task_categories:
16
+ - text-generation
17
+ - question-answering
18
+ task_ids:
19
+ - language-modeling
20
+ size_categories: 1K<n<10K
21
+ configs:
22
+ - config_name: default
23
+ data_files:
24
+ - split: train
25
+ path: data/train.parquet
26
+ - split: eval
27
+ path: data/eval.parquet
28
+ - config_name: high_quality
29
+ data_files:
30
+ - split: train
31
+ path: data/high_quality_train.parquet
32
+ - split: eval
33
+ path: data/high_quality_eval.parquet
34
+ ---
35
+
36
+ # LifeTextMultiTurnStreamingCoT v0.4
37
+
38
+ **Final professional public release** — clean SFT schema, target field, canonical taxonomy.
39
+
40
+ ## Overview
41
+
42
+ - **Modality**: Text
43
+ - **Turn Type**: Multi Turn
44
+ - **Version**: v0.4
45
+ - **License**: apache-2.0
46
+ - **Language**: English
47
+ - **HF Repo**: `skyzhou06/LifeTextMultiTurnStreamingCoT`
48
+
49
+ ## Row Counts
50
+
51
+ | Split | Rows |
52
+ |-------|------|
53
+ | Train | 7,955 |
54
+ | Eval | 2,045 |
55
+ | High Quality Train | 4,690 |
56
+ | High Quality Eval | 1,233 |
57
+ | **Total** | **10,000** |
58
+
59
+ ## Schema (v0.4)
60
+
61
+ ### Top-Level Fields
62
+
63
+ | Field | Type | Description |
64
+ |-------|------|-------------|
65
+ | `id` | string | Stable example ID |
66
+ | `split` | string | `train` or `eval` |
67
+ | `modality` | string | `text` |
68
+ | `turn_type` | string | `multi_turn` |
69
+ | `input` | object | Input data |
70
+ | `streaming` | object | Checkpoints with natural-language reasoning |
71
+ | `target` | object | Training target: reasoning, answer, response |
72
+ | `taxonomy` | object | Canonical content classification |
73
+ | `quality` | object | Quality assessment |
74
+ | `source` | object | Provenance |
75
+ | `metadata` | object | Release metadata |
76
+
77
+ ### `target`
78
+
79
+ ```json
80
+ {
81
+ "reasoning": "Natural-language reasoning summary.",
82
+ "answer": "The final answer.",
83
+ "response": "Reasoning: ...\n\nAnswer: ..."
84
+ }
85
+ ```
86
+
87
+ - `target.answer` — for answer-only SFT
88
+ - `target.response` — for reasoning-augmented SFT
89
+
90
+ ### `taxonomy`
91
+
92
+ Uses canonical enum categories: `daily_life`, `travel`, `education`, `work_productivity`, `finance_consumer`, `health_wellness_safe`, `tech_support`, `information_extraction`, `creative_planning`, `social_communication`.
93
+
94
+ ### `quality`
95
+
96
+ ```json
97
+ {
98
+ "is_high_quality": true,
99
+ "sft_ready": true,
100
+ "natural_reasoning": true,
101
+ "reasoning_quality": "high",
102
+ "taxonomy_quality": "high"
103
+ }
104
+ ```
105
+
106
+ ## Changes from v0.3
107
+
108
+ - `output` renamed to `target` with `reasoning`, `answer`, `response`
109
+ - `streaming.trace` removed from active rows
110
+ - `metadata.legacy` blobs removed
111
+ - Taxonomy mapped to canonical enum with fixed category/subcategory pairs
112
+ - `high_quality` split into `high_quality_train` / `high_quality_eval`
113
+ - `metadata.release_version` = `"v0.4"`
114
+
115
+ ## SFT Usage
116
+
117
+ ```python
118
+ from datasets import load_dataset
119
+
120
+ # Default config
121
+ ds = load_dataset("skyzhou06/LifeTextMultiTurnStreamingCoT")
122
+ # ds["train"]["target"]["response"] — reasoning + answer
123
+ # ds["train"]["target"]["answer"] — answer only
124
+
125
+ # High quality config
126
+ ds_hq = load_dataset("skyzhou06/LifeTextMultiTurnStreamingCoT", "high_quality")
127
+ ```
128
+
129
+ ## Source Licenses
130
+
131
+ Dataset-level license: **apache-2.0**. Individual rows include `source.license` and `source.dataset` fields with source-specific license information.
132
+
133
+ ## Limitations
134
+
135
+ - Reasoning is rule-based (content-grounded)
136
+ - Some answers are brief closing phrases (check `quality.sft_ready`)
137
+ - Non-English examples not included
138
+
139
+ ## Citation
140
+
141
+ If you use this dataset, please cite the original source datasets and this release.