zhou94539 commited on
Commit
e4a0376
·
verified ·
1 Parent(s): 0268b9b

Update dataset card and referenced assets

Browse files
Files changed (1) hide show
  1. README.md +117 -2
README.md CHANGED
@@ -1,3 +1,118 @@
1
- # This is a placeholder README.md
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
- Private staging repo.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ task_categories:
4
+ - text-generation
5
+ tags:
6
+ - k2-horizon
7
+ - training-data
8
+ - parquet
9
+ - math
10
+ - reasoning
11
+ configs:
12
+ - config_name: math-thinking-qwen
13
+ data_files:
14
+ - split: train
15
+ path: "math-thinking-qwen/*.parquet"
16
+ - config_name: math-thinking-oss
17
+ data_files:
18
+ - split: train
19
+ path: "math-thinking-oss/*.parquet"
20
+ - config_name: math-rewrite
21
+ data_files:
22
+ - split: train
23
+ path: "math-rewrite/*.parquet"
24
+ - config_name: math-dialogue
25
+ data_files:
26
+ - split: train
27
+ path: "math-dialogue/*.parquet"
28
+ - config_name: agentic-math-dialogue
29
+ data_files:
30
+ - split: train
31
+ path: "agentic-math-dialogue/*.parquet"
32
+ ---
33
 
34
+ # Math-Reasoning
35
+
36
+ ## Dataset Description
37
+
38
+ Mathematical problem-solving, rewriting, and dialogue data for reasoning-oriented language-model training. This repository is part of the [K2 Horizon collection](https://huggingface.co/collections/IFM/k2-horizon).
39
+
40
+ The release is organized as one Hugging Face configuration per subset. Every configuration has a `train` split backed by Parquet shards, which supports Dataset Viewer inspection and streaming access.
41
+
42
+ ## K2 Horizon Dataset Series
43
+
44
+ | Dataset repository | Focus | Configurations |
45
+ | --- | --- | ---: |
46
+ | [IFM/TxT360-v2](https://huggingface.co/datasets/IFM/TxT360-v2) | Web and question-answering text | 3 |
47
+ | [IFM/Code-Reasoning](https://huggingface.co/datasets/IFM/Code-Reasoning) | Code reasoning and task synthesis | 7 |
48
+ | [IFM/Math-Reasoning](https://huggingface.co/datasets/IFM/Math-Reasoning) | Mathematical reasoning and dialogue | 5 |
49
+ | [IFM/SFT-Reasoning](https://huggingface.co/datasets/IFM/SFT-Reasoning) | Instruction following and supervised fine-tuning | 2 |
50
+ | [IFM/Pretrain-Behaviors](https://huggingface.co/datasets/IFM/Pretrain-Behaviors) | Behavior-focused continued-pretraining data | 7 |
51
+
52
+ ## Dataset Configurations
53
+
54
+ | Configuration | Catalog source | Data files |
55
+ | --- | --- | --- |
56
+ | `math-thinking-qwen` | `math-qwen-no-think` | `math-thinking-qwen/*.parquet` |
57
+ | `math-thinking-oss` | `math-oss-cleaned` | `math-thinking-oss/*.parquet` |
58
+ | `math-rewrite` | `math-rewrite` | `math-rewrite/*.parquet` |
59
+ | `math-dialogue` | `math-dialogue` | `math-dialogue/*.parquet` |
60
+ | `agentic-math-dialogue` | `agentic-math-dialogue-cleaned` | `agentic-math-dialogue/*.parquet` |
61
+
62
+ ## Repository Structure
63
+
64
+ ```text
65
+ README.md
66
+ math-thinking-qwen/
67
+ <source-file>-<stable-id>-00000.parquet
68
+ <source-file>-<stable-id>-00001.parquet
69
+ math-thinking-oss/
70
+ <source-file>-<stable-id>-00000.parquet
71
+ <source-file>-<stable-id>-00001.parquet
72
+ math-rewrite/
73
+ <source-file>-<stable-id>-00000.parquet
74
+ <source-file>-<stable-id>-00001.parquet
75
+ math-dialogue/
76
+ <source-file>-<stable-id>-00000.parquet
77
+ <source-file>-<stable-id>-00001.parquet
78
+ agentic-math-dialogue/
79
+ <source-file>-<stable-id>-00000.parquet
80
+ <source-file>-<stable-id>-00001.parquet
81
+ ```
82
+
83
+ The shard prefix is derived from the source JSONL filename and a stable identifier. Updating one source JSONL file replaces only that file's Parquet shards.
84
+
85
+ ## Data Fields
86
+
87
+ Records originate as JSON objects and are converted to Parquet for release. Field names and nested structures can differ by configuration. Inspect `features` before building a processing pipeline:
88
+
89
+ ```python
90
+ from datasets import load_dataset
91
+
92
+ dataset = load_dataset(
93
+ "IFM/Math-Reasoning",
94
+ "math-thinking-qwen",
95
+ split="train",
96
+ streaming=True,
97
+ )
98
+ print(dataset.features)
99
+ print(next(iter(dataset)))
100
+ ```
101
+
102
+ ## Data Provenance and Processing
103
+
104
+ The configurations in this repository are selected from the data inventory used to prepare the K2 Horizon training mixture. Only release-approved configurations are included. JSONL records are converted to Parquet without intentionally renaming application-level fields.
105
+
106
+ Individual configurations may have undergone source-specific filtering, cleaning, deduplication, quality scoring, or synthetic-data generation. Users should evaluate each configuration for their target use case and inspect the available provenance metadata.
107
+
108
+ ## Intended Use
109
+
110
+ This dataset is intended for language-model training and research. The configurations can be streamed independently, combined with user-defined sampling weights, or inspected through the Hugging Face Dataset Viewer.
111
+
112
+ ## Limitations and Responsible Use
113
+
114
+ Large-scale training data can contain factual errors, duplicated material, sensitive topics, stereotypes, unsafe content, and other artifacts. Dataset users are responsible for performing evaluations, risk assessment, and filtering appropriate to their application.
115
+
116
+ ## License and Terms of Use
117
+
118
+ This repository contains multiple configurations that may have different source terms. Users are responsible for reviewing the applicable provenance and license information for the configurations they use and for determining suitability for their intended purpose.