Update README.md
Browse files
README.md
CHANGED
@@ -3,4 +3,14 @@ license: apache-2.0
|
|
3 |
language:
|
4 |
- en
|
5 |
---
|
6 |
-
All of the data together is around 41GB. It's the last hidden states of 131,072 samples from refinedweb padded/truncated to 512 tokens on the left, fed through [google/flan-t5-small](https://hf.co/google/flan-t5-small).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
language:
|
4 |
- en
|
5 |
---
|
6 |
+
All of the data together is around 41GB. It's the last hidden states of 131,072 samples from refinedweb padded/truncated to 512 tokens on the left, fed through [google/flan-t5-small](https://hf.co/google/flan-t5-small).
|
7 |
+
|
8 |
+
Structure:
|
9 |
+
|
10 |
+
```
|
11 |
+
{
|
12 |
+
"encoding": List, shaped (512, 512) aka (tokens, d_model),
|
13 |
+
"text": String, the original text that was encoded,
|
14 |
+
"attention_mask": List, binary mask to pass to your model with encoding to not attend to pad tokens
|
15 |
+
}
|
16 |
+
```
|