Source code for oumi.datasets.pretraining.slim_pajama
# Copyright 2025 - Oumi
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from oumi.core.datasets import BasePretrainingDataset
from oumi.core.registry import register_dataset
[docs]
@register_dataset("cerebras/SlimPajama-627B")
class SlimPajamaDataset(BasePretrainingDataset):
"""SlimPajama-627B: A cleaned and deduplicated version of RedPajama.
SlimPajama is the largest extensively deduplicated, multi-corpora, open-source
dataset for training large language models. It was created by cleaning and
deduplicating the 1.2T token RedPajama dataset, resulting in a 627B token dataset.
The dataset consists of 59166 jsonl files and is ~895GB compressed. It includes
training, validation, and test splits :footcite:`2023_slimpajama`.
Key Features:
- 627B tokens
- Open-source
- Curated data sources
- Extensive deduplication
- Primarily English language
Data Sources and Proportions:
- Commoncrawl: 52.2%
- C4: 26.7%
- GitHub: 5.2%
- Books: 4.2%
- ArXiv: 4.6%
- Wikipedia: 3.8%
- StackExchange: 3.3%
See Also:
- Blog post: https://www.cerebras.net/blog/slimpajama-a-627b-token-cleaned-and-deduplicated-version-of-redpajama
- Repository: https://github.com/Cerebras/modelzoo/tree/main/modelzoo/transformers/data_processing/slimpajama
- Hugging Face: https://huggingface.co/datasets/cerebras/SlimPajama-627B
Dataset Structure:
Each example is a JSON object with the following structure:
.. code-block:: python
{
"text": str,
"meta": {
"redpajama_set_name": str # One of the data source names
}
}
Citations:
.. footbibliography::
"""
default_dataset = "cerebras/SlimPajama-627B"