File size: 754 Bytes
28fe1a6 b763abe 206d6c3 c632513 28fe1a6 5f8c4ee fcc9566 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
---
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)
```
|