Datasets:

Languages:
English
ArXiv:
License:
GneissWeb / README.md
bhatta1's picture
Update README.md
427774c verified
|
raw
history blame
14 kB

What is it?

Data quantity and quality play a vital role in determining the performance of Large Language Models (LLMs). High-quality data, in particular, can significantly boost the LLM’s ability to generalize on a wide range of downstream tasks. To cater to the requirements of the Granite models, we focused on a goal to produce a 10T dataset, named, GneissWeb, that is of higher quality than all other datasets of similar size available. Gneiss, pronounced as nice, is a strong and durable rock that is used for building and construction.

The GneissWeb recipe consists of sharded exact substring deduplication and a judiciously constructed ensemble of quality filters. We present the key evaluations that guided our design choices and provide filtering thresholds that can be used to filter the dataset to match the token and quality needs of Stage-1 (early pre-training) or Stage-2 (annealing) datasets.

Our evaluations demonstrate that GneissWeb outperforms state-of-the-art large open datasets (5T+ tokens). Specifically, ablation models trained on GneissWeb outperform those trained on FineWeb.V1.1 by 2.14 percentage points in terms of average score computed on a set of 11 benchmarks (both zero-shot and few-shot) commonly used to evaluate pre-train datasets. When the evaluation set is extended to 20 benchmarks (both zero-shot and few-shot), ablation models trained on GneissWeb outperform those trained on FineWeb.V1.1 by 1.49 percentage points. In future, we plan to release a detailed technical paper with fine grained details and the IBM Data Prep Kit to create the GneissWeb dataset.

The GneissWeb Recipe in a Nutshell : Building on Top of FineWeb

Hugging Face introduced FineWeb V1.1, a large-scale dataset for LLM pre-training, consisting of 15 trillion tokens (44TB disk space). FineWeb is derived from 96 Common Crawl snapshots, focusing on English text by applying a series of processing steps, mainly including language classification, deduplication, and heuristic rule-based quality filters. Models trained on FineWeb are shown to outperform those trained on other publicly available datasets — C4, RefinedWeb, Dolma, RedPajamav2, SlimPajama, and The Pile.

We started with the goal of distilling 10T+ high quality tokens from FineWeb V1.1, so that we get sufficiently large number of quality tokens suitable for Stage-1 pre-training. Unlike the FineWeb.Edu families, which rely on a single quality annotator and perform aggressive filtering, we developed a multi-faceted ensemble of quality annotators to enable fine-grained quality filtering. This allowed us to achieve a finer trade-off between the quality and quantity of the tokens retained. While the GneissWeb recipe is focused at obtaining 10T+ high quality tokens suitable for Stage-1 pre-training, it is also possible to adapt the recipe by tuning filtering parameters to produce smaller and higher quality datasets fit for Stage-2 kind of training.

  An Overview of the GneissWeb Recipe

  The GneissWeb dataset was obtained by applying the following processing steps to Fineweb :

     - Exact substring deduplication at line level

     - Custom built Fasttext quality filter

     - Custom built Fasttext category classifier

     - Custom built Category-aware readability score quality filter

     - Custom built Category-aware extreme_tokenized quality filter

These were applied in the order shown in the Fig 1

GneissWeb3.png

Figure 1 : GneissWeb recipe

The net impact was that the dataset size of 15T tokens was filtered down to approx 10T tokens. In subsequent sections we describe the overall performance obtained using GneissWeb compared to other baselines. We then dive deeper into each of these processing steps in detail and the impact they have individually through a series of ablations.

  Evaluation Strategy

To compare GneissWeb against the baselines, we trained decoder models of sizes 1.4B, 3B and 7B parameters on a Llama architecture. These were trained on 35B (roughly Chinchilla optimal) tokens to obtain signals and select hyperparameters for each processing step. We further trained ablation models on 100B (roughly 3x Chinchilla optimal) as well as 350B tokens to validate the performance of each processing step. The data was tokenized using a starcoder tokenizer and training was done with a sequence length of 8192.

The baselines from which equivalent data was subsampled and used for this comparison included:

Fig2.jpg

Fig 2 shows how the subsamples were created for the Fineweb baselines as well for GneissWeb. A similar strategy as for the creation of the Fineweb baseline was used for other baselines too

ablation_strategy.png

                                                Figure 2:  Subsampling and Ablation Strategy

We trained and evaluated our models on an LSF (Load Sharing Facility) cluster with each node equipped with eight H100 GPUs. For training tasks involving 35 billion tokens, we typically trained models with 1.4 billion trainable parameters across 64 GPUs. For more compute intensive tasks, we scale up to 128 or 256 GPUs to reduce training time and for evaluation tasks we generally used 8 GPUs.

The tokens for an experimental dataset are read from IBM’s GPFS (General Parallel File System) to minimize network traffic during training. With this computational infrastructure, the training speed of an FSDP model with 1.4 billion parameters is approximately 32,000 tokens/GPU/sec. Consequently, training the model with 35 billion tokens on 64 GPUs typically takes about 4.6 hours. Model checkpoints are saved regularly and evaluated in real time, with results automatically uploaded, stored and visualized.

  Evaluation Benchmarks Selection

We evaluated our ablation models using lm-evaluation-harness on two categories of tasks: 11 High-Signal tasks (0-shot and few-shot) and 20 Extended tasks (0-shot and few-shot).

    High-Signal tasks:

Since ablations are performed by training ‘small’ models (1.4B parameter models) for a ‘few billion’ tokens (typically 35B tokens), it is important to identify benchmarks that provide good signal at this relatively small scale. Similar to FineWeb, we used the following criteria for selecting the 11 High-Signal/Early-Signal tasks: accuracy above random guessing, accuracy monotonically increasing over training epochs, and small variance across runs. These are shown in Fig 3 and cover Commonsense Reasoning, Reading Comprehension, World Knowledge and Language Understanding task categories. We used both the zero-shot as well as few-shot variations of these tasks.

HighSignal.png

Figure 3 : High Signal Tasks — provide good signal at relatively small scale (of 1.4B models trained on 35B to 100B tokens)

The High-Signal tasks were used to analyze individual ingredients and possible recipe combinations via ablations. After we narrowed a few candidate recipes using these signals, we used the extended set of benchmarks to evaluate the model’s ability to generalize.

    Extended tasks:

The extended tasks shown in Fig 4 are a superset of the High Signal tasks. Besides the task categories of Commonsense Reasoning, Reading Comprehension, World Knowledge, Language Understanding, it also has the category of Symbolic Problem Solving. For the extended set, we also focus on zero-shot as well as few-shot variations.

Extended_Tasks.png

            Figure 4 :  Extended Tasks — broader set of tasks to evaluate generalization at larger number of tokens and/or larger model sizes

The Extended Task set have some tasks which are not in High Signal. These tasks are useful but at ablation scale may have high standard deviation (like PubMedQA) or are at random guessing the entire training cycle (like MMLU) or which are above random guessing but do not show improvement with training (like GSM8k). However, these tasks are useful indicators for larger model performance and thus have been retained in the Extended Tasks set.

These differences between the High-Signal Tasks vs Extended Tasks are seen in Fig 5 where we see a comparison of the High Signal Tasks vs those which are in the Extended Tasks and excluded from the High Signal Tasks. We see that the average accuracy increases in the former and is relatively static in the latter. This was a criteria for excluding them from the High Signal Task set.

accuracy_HS_vs_excluded_tasks_350b_no_stdev_v2.png

                           Figure 5 :   High-Signal Tasks show increasing accuracy with more training

The high signal tasks also show lower coefficient of variation compared to the excluded tasks as shown in Figure 6. The coefficient of variation is calculated as the ratio between the standard deviation of the average score divided by the mean, where statistics are computed across three random training seeds. Lower coefficient of variation shows more stable results, due to lower variance across random seeds. Their lower coefficient of variation makes the high-signal tasks more reliable at the ablation scale.

coeff_variation_HS_vs_excluded_v2.png

Figure 6: Coefficient of Variation (standard deviation divided by mean) for High-Signal Set and Excluded Set.

  Evaluation Results

Combining GneissWeb Components into a Winning Recipe

There are various ways to combine the key ingredients and build a recipe, including deciding which components to include and their order as well as designing ensemble filtering rules using multiple quality annotators. We performed rigorous ablations by combining the key ingredients in multiple variations and sequences with the aim of maximizing downstream task performance under the constraint of retaining at least 10T tokens from FineWeb.V1.1.0.

Ingredients.png

Figure 19 : Key ingredients selected for building the GneissWeb recipe

The GneissWeb recipe illustrated in Figure 1 produces the highest performance gain. The GneissWeb recipe consists of first applying the exact substring deduplication, computing category and quality annotations, and then applying the ensemble quality filter as shown in Figure 1. We obtain the GneissWeb dataset of 10T tokens by applying the GneissWeb recipe to the 15T tokens in the 96 snapshots of FineWeb-V1.1.0. We prepared GneissWeb using a version of IBM Data Prep Kit which will be released in open source in future.

Equipped with fastText classifiers, category-aware readability score filter, and category-aware extreme-tokenized documents filter, we perform ablations over various ensemble filtering rules. We first select the thresholds for category-aware readability score filter and category-aware extreme-tokenized filter as discussed in the above sections. Then, we tune the thresholds for fastText classifiers for a given ensemble filtering rule such that at least 10T tokens are retained from the 15T tokens of FineWeb-V1.1.0. Specifically, we consider the following two ensemble aggregation rules:

Using the notation

  A: Custom built fastText quality filter

  B: Custom built Category-aware readability score quality filter by leveraging Custom built fastText category classifier

  C: Custom built Category-aware extreme_tokenized quality filter by leveraging Custom built fastText category classifier

  GneissWeb Recipe:

Exact substring deduplication → ((A AND B) OR (A AND C))

GneissWeb ensemble filtering rule: A document is retained if either the fastText combination and category-aware readability score filter agree, or the fastText combination and category-aware extreme-toeknized filter agree,. Here the fastText combination is logical OR of the fastText classifiers, i.e., either of the fastText classifiers agrees. See the detailed rule in Figure 1.

  Recipe2:

Exact substring deduplication → (A AND B AND C)

Ensemble filtering rule 2: A document is retained if either of the fastText classifiers agrees and category-aware readability score filter agrees and category-aware extreme tokenized filter agrees. Note that this rule is equivalent to sequentially applying the filters (in arbitrary order).

Figure 20 shows the average eval score on high-signal tasks as well as extended tasks for the filtering rules along with the baseline of FineWeb-V1.1.0. We observe that the GneissWeb filtering ensemble rule outperforms the other rule on both high-signal and extended tasks.

Figure 20 : Comparison of ablations at 7 Billion model size for 100 Billion tokens

Conclusion and Future Work

IBM Research has produced a dataset called GneissWeb using an internal version of IBM DataPrep Kit. GneissWeb consists of 96 common-crawl snapshots outperforming some state-of-the-art datasets of comparative size. We continue to perform further data ablation experiments and plan to opensource the recipe via IBM DataPrep Kit. We are currently processing the latest 7 snapshots that we aim to include in GneissWeb after conducting further evaluations and verifications.

Dataset Summary

Recently, IBM has introduced GneissWeb; a large dataset yielding around 10 trillion tokens that caters to the data quality and quantity requirements of training LLMs. The models trained using GneissWeb dataset outperform those trained on FineWeb 1.1.0 by 2.14 percentage points in terms of average score computed on a set of 11 commonly used benchmarks

     Developers: IBM Research

     Release Date: Feb 10th, 2025

     License: Apache 2.0.

Usage