skyzhou06 commited on
Commit
278dbef
·
verified ·
1 Parent(s): 84eac61

Upload README.md with huggingface_hub

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