skyzhou06 commited on
Commit
8489166
·
verified ·
1 Parent(s): ca756c6

Upload dataset_card.md with huggingface_hub

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