skyzhou06 commited on
Commit
92964b1
·
verified ·
1 Parent(s): c7075fb

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +38 -93
README.md CHANGED
@@ -1,23 +1,14 @@
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:
@@ -33,109 +24,63 @@ configs:
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.
 
1
  ---
2
+ license: cc-by-4.0
3
  language:
4
  - en
 
5
  tags:
6
  - streaming-cot
7
+ - chain-of-thought
 
 
 
8
  - sft
9
+ - text
10
+ size_categories:
11
+ - 1K<n<10K
 
 
 
 
 
12
  configs:
13
  - config_name: default
14
  data_files:
 
24
  path: data/high_quality_eval.parquet
25
  ---
26
 
27
+ # LifeTextMultiTurnStreamingCoT
 
 
 
 
 
 
 
 
 
 
 
28
 
29
+ **Version:** vFinal
30
 
31
+ A multi-turn text dataset with streaming chain-of-thought reasoning for SFT. 9725 active training rows across daily-life, social, and productivity tasks.
 
 
 
 
 
 
32
 
33
+ ## Schema
34
 
35
+ Top-level fields: `id, split, modality, turn_type, dialogue, input, streaming, target, taxonomy, quality, source, metadata`
36
 
37
+ - dialogue (list of turns with role/text)
38
+ - input (instruction, length_bucket)
39
+ - target (reasoning, answer, response)
40
+ - streaming (checkpoints with streaming_reasoning)
41
+ - taxonomy (category, subcategory, difficulty, intent_type)
 
 
 
 
 
 
 
 
 
 
42
 
43
+ ### Target Format
44
  ```json
45
  {
46
+ "reasoning": "Natural language reasoning about the task/input...",
47
+ "answer": "The actual task output...",
48
  "response": "Reasoning: ...\n\nAnswer: ..."
49
  }
50
  ```
51
 
52
+ Use `target.response` for SFT training. It includes both reasoning and final answer.
 
53
 
54
+ ## Quality
55
 
56
+ | Metric | Value |
57
+ |--------|-------|
58
+ | Active rows | 9,725 |
59
+ | Train | 7,740 |
60
+ | Eval | 1,985 |
61
+ | High quality | 9,619 |
62
+ | SFT-ready | 100.0% |
63
+ | Target grounded | 99.3% |
64
 
65
+ ## High-Quality Configuration
66
 
67
+ The `high_quality` config contains a filtered subset of default rows where `quality.sft_ready = true` and `quality.is_high_quality = true`. It is not additional unique data.
 
 
 
 
 
 
 
 
68
 
69
+ ## Limitations
70
 
71
+ - Text-only dataset.
72
+ -
73
+ - Natural-language reasoning is template-generated, not LLM-written.
74
+ - Row counts reflect quality-filtered active splits suitable for direct SFT usage.
 
 
75
 
76
+ ## Usage
77
 
78
  ```python
79
  from datasets import load_dataset
80
 
81
+ # Load default config
82
  ds = load_dataset("skyzhou06/LifeTextMultiTurnStreamingCoT")
 
 
83
 
84
+ # Load high-quality subset
85
  ds_hq = load_dataset("skyzhou06/LifeTextMultiTurnStreamingCoT", "high_quality")
86
  ```