crumb commited on
Commit
3b63b33
1 Parent(s): 30ce407

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -1
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). Included are the columns "text", "encoding" and "attention_mask" which are all pretty self explanatory.
 
 
 
 
 
 
 
 
 
 
 
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
+ ```