Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,22 +1,14 @@
|
|
| 1 |
---
|
| 2 |
-
license:
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
-
pretty_name: LifeTextSingleTurnStreamingCoT
|
| 6 |
tags:
|
| 7 |
- streaming-cot
|
| 8 |
-
-
|
| 9 |
-
- text
|
| 10 |
-
- single-turn
|
| 11 |
- sft
|
| 12 |
-
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
- text-generation
|
| 16 |
-
- question-answering
|
| 17 |
-
task_ids:
|
| 18 |
-
- language-modeling
|
| 19 |
-
size_categories: 1K<n<10K
|
| 20 |
configs:
|
| 21 |
- config_name: default
|
| 22 |
data_files:
|
|
@@ -32,109 +24,62 @@ configs:
|
|
| 32 |
path: data/high_quality_eval.parquet
|
| 33 |
---
|
| 34 |
|
| 35 |
-
# LifeTextSingleTurnStreamingCoT
|
| 36 |
-
|
| 37 |
-
**Final professional public release** — clean SFT schema, target field, canonical taxonomy.
|
| 38 |
-
|
| 39 |
-
## Overview
|
| 40 |
-
|
| 41 |
-
- **Modality**: Text
|
| 42 |
-
- **Turn Type**: Single Turn
|
| 43 |
-
- **Version**: v0.4
|
| 44 |
-
- **License**: apache-2.0
|
| 45 |
-
- **Language**: English
|
| 46 |
-
- **HF Repo**: `skyzhou06/LifeTextSingleTurnStreamingCoT`
|
| 47 |
|
| 48 |
-
|
| 49 |
|
| 50 |
-
|
| 51 |
-
|-------|------|
|
| 52 |
-
| Train | 7,457 |
|
| 53 |
-
| Eval | 1,865 |
|
| 54 |
-
| High Quality Train | 2,570 |
|
| 55 |
-
| High Quality Eval | 634 |
|
| 56 |
-
| **Total** | **9,322** |
|
| 57 |
|
| 58 |
-
## Schema
|
| 59 |
|
| 60 |
-
|
| 61 |
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
| `modality` | string | `text` |
|
| 67 |
-
| `turn_type` | string | `single_turn` |
|
| 68 |
-
| `input` | object | Input data |
|
| 69 |
-
| `streaming` | object | Checkpoints with natural-language reasoning |
|
| 70 |
-
| `target` | object | Training target: reasoning, answer, response |
|
| 71 |
-
| `taxonomy` | object | Canonical content classification |
|
| 72 |
-
| `quality` | object | Quality assessment |
|
| 73 |
-
| `source` | object | Provenance |
|
| 74 |
-
| `metadata` | object | Release metadata |
|
| 75 |
-
|
| 76 |
-
### `target`
|
| 77 |
|
|
|
|
| 78 |
```json
|
| 79 |
{
|
| 80 |
-
"reasoning": "Natural
|
| 81 |
-
"answer": "The
|
| 82 |
"response": "Reasoning: ...\n\nAnswer: ..."
|
| 83 |
}
|
| 84 |
```
|
| 85 |
|
| 86 |
-
|
| 87 |
-
- `target.response` — for reasoning-augmented SFT
|
| 88 |
|
| 89 |
-
##
|
| 90 |
|
| 91 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 92 |
|
| 93 |
-
##
|
| 94 |
|
| 95 |
-
```
|
| 96 |
-
{
|
| 97 |
-
"is_high_quality": true,
|
| 98 |
-
"sft_ready": true,
|
| 99 |
-
"natural_reasoning": true,
|
| 100 |
-
"reasoning_quality": "high",
|
| 101 |
-
"taxonomy_quality": "high"
|
| 102 |
-
}
|
| 103 |
-
```
|
| 104 |
|
| 105 |
-
##
|
| 106 |
|
| 107 |
-
-
|
| 108 |
-
-
|
| 109 |
-
-
|
| 110 |
-
-
|
| 111 |
-
- `high_quality` split into `high_quality_train` / `high_quality_eval`
|
| 112 |
-
- `metadata.release_version` = `"v0.4"`
|
| 113 |
|
| 114 |
-
##
|
| 115 |
|
| 116 |
```python
|
| 117 |
from datasets import load_dataset
|
| 118 |
|
| 119 |
-
#
|
| 120 |
ds = load_dataset("skyzhou06/LifeTextSingleTurnStreamingCoT")
|
| 121 |
-
# ds["train"]["target"]["response"] — reasoning + answer
|
| 122 |
-
# ds["train"]["target"]["answer"] — answer only
|
| 123 |
|
| 124 |
-
#
|
| 125 |
ds_hq = load_dataset("skyzhou06/LifeTextSingleTurnStreamingCoT", "high_quality")
|
| 126 |
```
|
| 127 |
-
|
| 128 |
-
## Source Licenses
|
| 129 |
-
|
| 130 |
-
Dataset-level license: **apache-2.0**. Individual rows include `source.license` and `source.dataset` fields with source-specific license information.
|
| 131 |
-
|
| 132 |
-
## Limitations
|
| 133 |
-
|
| 134 |
-
- Reasoning is rule-based (content-grounded)
|
| 135 |
-
- Some answers are brief closing phrases (check `quality.sft_ready`)
|
| 136 |
-
- Non-English examples not included
|
| 137 |
-
|
| 138 |
-
## Citation
|
| 139 |
-
|
| 140 |
-
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 |
+
# LifeTextSingleTurnStreamingCoT
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
|
| 29 |
+
**Version:** vFinal
|
| 30 |
|
| 31 |
+
A single-turn text dataset with streaming chain-of-thought reasoning for SFT. 6550 active training rows across daily-life, social, and productivity tasks.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
|
| 33 |
+
## Schema
|
| 34 |
|
| 35 |
+
Top-level fields: `id, split, modality, turn_type, input, streaming, target, taxonomy, quality, source, metadata`
|
| 36 |
|
| 37 |
+
- input (text, instruction, length_bucket)
|
| 38 |
+
- target (reasoning, answer, response)
|
| 39 |
+
- streaming (checkpoints with streaming_reasoning)
|
| 40 |
+
- taxonomy (category, subcategory, difficulty, intent_type)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
|
| 42 |
+
### Target Format
|
| 43 |
```json
|
| 44 |
{
|
| 45 |
+
"reasoning": "Natural language reasoning about the task/input...",
|
| 46 |
+
"answer": "The actual task output...",
|
| 47 |
"response": "Reasoning: ...\n\nAnswer: ..."
|
| 48 |
}
|
| 49 |
```
|
| 50 |
|
| 51 |
+
Use `target.response` for SFT training. It includes both reasoning and final answer.
|
|
|
|
| 52 |
|
| 53 |
+
## Quality
|
| 54 |
|
| 55 |
+
| Metric | Value |
|
| 56 |
+
|--------|-------|
|
| 57 |
+
| Active rows | 6,550 |
|
| 58 |
+
| Train | 5,242 |
|
| 59 |
+
| Eval | 1,308 |
|
| 60 |
+
| High quality | 6,550 |
|
| 61 |
+
| SFT-ready | 100.0% |
|
| 62 |
+
| Target grounded | 100.0% |
|
| 63 |
|
| 64 |
+
## High-Quality Configuration
|
| 65 |
|
| 66 |
+
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 67 |
|
| 68 |
+
## Limitations
|
| 69 |
|
| 70 |
+
- Text-only dataset.
|
| 71 |
+
-
|
| 72 |
+
- Natural-language reasoning is template-generated, not LLM-written.
|
| 73 |
+
- Row counts reflect quality-filtered active splits suitable for direct SFT usage.
|
|
|
|
|
|
|
| 74 |
|
| 75 |
+
## Usage
|
| 76 |
|
| 77 |
```python
|
| 78 |
from datasets import load_dataset
|
| 79 |
|
| 80 |
+
# Load default config
|
| 81 |
ds = load_dataset("skyzhou06/LifeTextSingleTurnStreamingCoT")
|
|
|
|
|
|
|
| 82 |
|
| 83 |
+
# Load high-quality subset
|
| 84 |
ds_hq = load_dataset("skyzhou06/LifeTextSingleTurnStreamingCoT", "high_quality")
|
| 85 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|