|
--- |
|
dataset_info: |
|
config_name: default |
|
data_files: "*.jsonl" |
|
dataset_size: 27698456429 |
|
license: mit |
|
task_categories: |
|
- text-generation |
|
language: |
|
- en |
|
--- |
|
|
|
# fineweb_2_samples_hq |
|
|
|
FINEWEB2-HQ dataset |
|
|
|
## Dataset Structure |
|
|
|
This dataset contains 5 JSONL files with a total size of 26415.31 MB. |
|
|
|
### Files: |
|
- `ukr_Cyrl_sample_001.jsonl`: 6163.40 MB |
|
- `ron_Latn_sample_001.jsonl`: 3739.69 MB |
|
- `kor_Hang_sample_001.jsonl`: 4120.89 MB |
|
- `hin_Deva_sample_001.jsonl`: 6681.96 MB |
|
- `heb_Hebr_sample_001.jsonl`: 5709.37 MB |
|
|
|
## Usage |
|
|
|
```python |
|
from datasets import load_dataset |
|
|
|
dataset = load_dataset("path/to/this/dataset") |
|
``` |
|
|
|
## Loading specific files |
|
|
|
```python |
|
from datasets import load_dataset |
|
|
|
# Load specific JSONL files |
|
dataset = load_dataset("json", data_files=["file1.jsonl", "file2.jsonl"]) |
|
``` |
|
|