moonfolk commited on
Commit
07ff528
·
verified ·
1 Parent(s): 9ce1a5a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -25
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- license: other
3
  task_categories:
4
  - text-generation
5
  tags:
@@ -10,14 +10,14 @@ tags:
10
  - instruction-following
11
  - reasoning
12
  configs:
13
- - config_name: instruction_following-cleaned
14
  data_files:
15
  - split: train
16
- path: "instruction_following-cleaned/*.parquet"
17
  - config_name: 3efforts-pretrain
18
  data_files:
19
  - split: train
20
- path: "3efforts-pretrain/*.parquet"
21
  ---
22
 
23
  # SFT-Reasoning
@@ -26,30 +26,30 @@ configs:
26
 
27
  Instruction-following and reasoning data prepared for supervised fine-tuning. This repository is part of the [K2 Horizon collection](https://huggingface.co/collections/IFM/k2-horizon).
28
 
29
- 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.
30
 
31
  ## K2 Horizon Dataset Series
32
 
33
- | Dataset repository | Focus | Configurations |
34
- | --- | --- | ---: |
35
- | [IFM/TxT360-v2](https://huggingface.co/datasets/IFM/TxT360-v2) | Web and question-answering text | 3 |
36
- | [IFM/Code-Reasoning](https://huggingface.co/datasets/IFM/Code-Reasoning) | Code reasoning and task synthesis | 7 |
37
- | [IFM/Math-Reasoning](https://huggingface.co/datasets/IFM/Math-Reasoning) | Mathematical reasoning and dialogue | 5 |
38
- | [IFM/SFT-Reasoning](https://huggingface.co/datasets/IFM/SFT-Reasoning) | Instruction following and supervised fine-tuning | 2 |
39
- | [IFM/Pretrain-Behaviors](https://huggingface.co/datasets/IFM/Pretrain-Behaviors) | Behavior-focused continued-pretraining data | 7 |
40
 
41
- ## Dataset Configurations
42
 
43
- | Configuration | Catalog source | Data files |
44
- | --- | --- | --- |
45
- | `instruction_following-cleaned` | `instruction_following-cleaned` | `instruction_following-cleaned/*.parquet` |
46
- | `3efforts-pretrain` | `3efforts-pretrain` | `3efforts-pretrain/*.parquet` |
47
 
48
  ## Repository Structure
49
 
50
  ```text
51
  README.md
52
- instruction_following-cleaned/
53
  <source-file>-<stable-id>-00000.parquet
54
  <source-file>-<stable-id>-00001.parquet
55
  3efforts-pretrain/
@@ -61,14 +61,14 @@ The shard prefix is derived from the source JSONL filename and a stable identifi
61
 
62
  ## Data Fields
63
 
64
- 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:
65
 
66
  ```python
67
  from datasets import load_dataset
68
 
69
  dataset = load_dataset(
70
  "IFM/SFT-Reasoning",
71
- "instruction_following-cleaned",
72
  split="train",
73
  streaming=True,
74
  )
@@ -78,13 +78,11 @@ print(next(iter(dataset)))
78
 
79
  ## Data Provenance and Processing
80
 
81
- 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.
82
-
83
- 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.
84
 
85
  ## Intended Use
86
 
87
- 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.
88
 
89
  ## Limitations and Responsible Use
90
 
@@ -92,4 +90,4 @@ Large-scale training data can contain factual errors, duplicated material, sensi
92
 
93
  ## License and Terms of Use
94
 
95
- 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.
 
1
  ---
2
+ license: apache-2.0
3
  task_categories:
4
  - text-generation
5
  tags:
 
10
  - instruction-following
11
  - reasoning
12
  configs:
13
+ - config_name: instruction_following
14
  data_files:
15
  - split: train
16
+ path: instruction_following/*.parquet
17
  - config_name: 3efforts-pretrain
18
  data_files:
19
  - split: train
20
+ path: 3efforts-pretrain/*.parquet
21
  ---
22
 
23
  # SFT-Reasoning
 
26
 
27
  Instruction-following and reasoning data prepared for supervised fine-tuning. This repository is part of the [K2 Horizon collection](https://huggingface.co/collections/IFM/k2-horizon).
28
 
29
+ The release is organized as one Hugging Face dataset per subset. Every subset has a `train` split backed by Parquet shards, which supports Dataset Viewer inspection and streaming access.
30
 
31
  ## K2 Horizon Dataset Series
32
 
33
+ | Dataset repository | Focus | Subsets |
34
+ | -------------------------------------------------------------------------------- | ---------------------------------------- | ------: |
35
+ | [IFM/TxT360-v2](https://huggingface.co/datasets/IFM/TxT360-v2) | Web and question-answering text | 3 |
36
+ | [IFM/Code-Reasoning](https://huggingface.co/datasets/IFM/Code-Reasoning) | Code reasoning and task synthesis | 7 |
37
+ | [IFM/Math-Reasoning](https://huggingface.co/datasets/IFM/Math-Reasoning) | Mathematical reasoning and dialogue | 5 |
38
+ | [IFM/SFT-Reasoning](https://huggingface.co/datasets/IFM/SFT-Reasoning) | Instruction following and SFT-style data | 2 |
39
+ | [IFM/Pretrain-Behaviors](https://huggingface.co/datasets/IFM/Pretrain-Behaviors) | Behavior-focused pretraining data | 7 |
40
 
41
+ ## Dataset Subsets
42
 
43
+ | Subset | Data files |
44
+ | ----------------------- | --------------------------------- |
45
+ | `instruction-following` | `instruction-following/*.parquet` |
46
+ | `3efforts-pretrain` | `3efforts-pretrain/*.parquet` |
47
 
48
  ## Repository Structure
49
 
50
  ```text
51
  README.md
52
+ instruction-following/
53
  <source-file>-<stable-id>-00000.parquet
54
  <source-file>-<stable-id>-00001.parquet
55
  3efforts-pretrain/
 
61
 
62
  ## Data Fields
63
 
64
+ Records originate as JSON objects and are converted to Parquet for release. Field names and nested structures can differ by subset. Inspect `features` before building a processing pipeline:
65
 
66
  ```python
67
  from datasets import load_dataset
68
 
69
  dataset = load_dataset(
70
  "IFM/SFT-Reasoning",
71
+ "instruction-following",
72
  split="train",
73
  streaming=True,
74
  )
 
78
 
79
  ## Data Provenance and Processing
80
 
81
+ Individual subsets may have undergone source-specific filtering, cleaning, deduplication, quality scoring, or synthetic-data generation. Users should evaluate each subset for their target use case and inspect the available provenance metadata.
 
 
82
 
83
  ## Intended Use
84
 
85
+ This dataset is intended for language-model training and research. The subsets can be streamed independently, combined with user-defined sampling weights, or inspected through the Hugging Face Dataset Viewer.
86
 
87
  ## Limitations and Responsible Use
88
 
 
90
 
91
  ## License and Terms of Use
92
 
93
+ This dataset is licensed under the Apache License 2.0 available at https://www.apache.org/licenses/LICENSE-2.0.