| | ---
|
| | license: odc-by
|
| | dataset_info:
|
| | - config_name: en
|
| | features:
|
| | - name: text
|
| | dtype: string
|
| | - name: timestamp
|
| | dtype: string
|
| | - name: url
|
| | dtype: string
|
| | splits:
|
| | - name: train
|
| | - name: validation
|
| | configs:
|
| | - config_name: en
|
| | data_files:
|
| | - split: train
|
| | path: en/c4-train.*.json.gz
|
| | - split: validation
|
| | path: en/c4-validation.*.json.gz
|
| | ---
|
| |
|
| | # C4 tiny
|
| |
|
| | this dataset is a very small subset of https://huggingface.co/datasets/allenai/c4 that can be use for testing
|
| | without having to download the full c4 dataset.
|
| |
|
| |
|
| | to use
|
| |
|
| | ```python
|
| | from dataset import load_dataset
|
| | dataset = load_dataset("PrimeIntellect/c4-tiny", "en", ignore_verifications=True)
|
| | ```
|
| |
|