Datasets:
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: odc-by
|
3 |
+
task_categories:
|
4 |
+
- text-generation
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
tags:
|
8 |
+
- language-modeling
|
9 |
+
- casual-lm
|
10 |
+
- llm
|
11 |
+
pretty_name: Dolma
|
12 |
+
size_categories:
|
13 |
+
- 100B<n<1T
|
14 |
+
---
|
15 |
+
|
16 |
+
Tokenized (Llama 3) verison of [NousResearch/dolma-v1_7-3B](https://huggingface.co/datasets/NousResearch/dolma-v1_7-30) as a [Nanotron](https://github.com/huggingface/nanotron) dataset.
|
17 |
+
|
18 |
+
|
19 |
+
Can also be used directly with numpy, for example
|
20 |
+
```python
|
21 |
+
import numpy as np
|
22 |
+
|
23 |
+
dataset_buffer_mmap = np.memmap("dolma-v1_7-3B-nanoset-l3_input_ids.npy", mode="r", order="C", dtype=np.int32)
|
24 |
+
dataset_buffer = memoryview(dataset_buffer_mmap)
|
25 |
+
dataset_number_of_tokens = int(len(dataset_buffer))
|
26 |
+
```
|