zhou94539 commited on
Commit
2bb3062
·
verified ·
1 Parent(s): d232670

Update dataset card and referenced assets

Browse files
Files changed (1) hide show
  1. README.md +101 -2
README.md CHANGED
@@ -1,3 +1,102 @@
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
+ - web
10
+ - question-answering
11
+ configs:
12
+ - config_name: web-high-augmented
13
+ data_files:
14
+ - split: train
15
+ path: "web-high-augmented/*.parquet"
16
+ - config_name: web-high-medium
17
+ data_files:
18
+ - split: train
19
+ path: "web-high-medium/*.parquet"
20
+ - config_name: txt360-qa
21
+ data_files:
22
+ - split: train
23
+ path: "txt360-qa/*.parquet"
24
+ ---
25
 
26
+ # TxT360-v2
27
+
28
+ ## Dataset Description
29
+
30
+ Web and question-answering text selected for the K2 Horizon training-data release. This repository is part of the [K2 Horizon collection](https://huggingface.co/collections/IFM/k2-horizon).
31
+
32
+ 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.
33
+
34
+ ## K2 Horizon Dataset Series
35
+
36
+ | Dataset repository | Focus | Configurations |
37
+ | --- | --- | ---: |
38
+ | [IFM/TxT360-v2](https://huggingface.co/datasets/IFM/TxT360-v2) | Web and question-answering text | 3 |
39
+ | [IFM/Code-Reasoning](https://huggingface.co/datasets/IFM/Code-Reasoning) | Code reasoning and task synthesis | 7 |
40
+ | [IFM/Math-Reasoning](https://huggingface.co/datasets/IFM/Math-Reasoning) | Mathematical reasoning and dialogue | 5 |
41
+ | [IFM/SFT-Reasoning](https://huggingface.co/datasets/IFM/SFT-Reasoning) | Instruction following and supervised fine-tuning | 2 |
42
+ | [IFM/Pretrain-Behaviors](https://huggingface.co/datasets/IFM/Pretrain-Behaviors) | Behavior-focused continued-pretraining data | 7 |
43
+
44
+ ## Dataset Configurations
45
+
46
+ | Configuration | Catalog source | Data files |
47
+ | --- | --- | --- |
48
+ | `web-high-augmented` | `nltk-web-high-randomized` | `web-high-augmented/*.parquet` |
49
+ | `web-high-medium` | `web-high-medium` | `web-high-medium/*.parquet` |
50
+ | `txt360-qa` | `txt360-qa` | `txt360-qa/*.parquet` |
51
+
52
+ ## Repository Structure
53
+
54
+ ```text
55
+ README.md
56
+ web-high-augmented/
57
+ <source-file>-<stable-id>-00000.parquet
58
+ <source-file>-<stable-id>-00001.parquet
59
+ web-high-medium/
60
+ <source-file>-<stable-id>-00000.parquet
61
+ <source-file>-<stable-id>-00001.parquet
62
+ txt360-qa/
63
+ <source-file>-<stable-id>-00000.parquet
64
+ <source-file>-<stable-id>-00001.parquet
65
+ ```
66
+
67
+ 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.
68
+
69
+ ## Data Fields
70
+
71
+ 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:
72
+
73
+ ```python
74
+ from datasets import load_dataset
75
+
76
+ dataset = load_dataset(
77
+ "IFM/TxT360-v2",
78
+ "web-high-augmented",
79
+ split="train",
80
+ streaming=True,
81
+ )
82
+ print(dataset.features)
83
+ print(next(iter(dataset)))
84
+ ```
85
+
86
+ ## Data Provenance and Processing
87
+
88
+ 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.
89
+
90
+ 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.
91
+
92
+ ## Intended Use
93
+
94
+ 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.
95
+
96
+ ## Limitations and Responsible Use
97
+
98
+ 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.
99
+
100
+ ## License and Terms of Use
101
+
102
+ 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.