something-else commited on
Commit
db5ba3f
1 Parent(s): 495f3df

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -0
README.md ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: Slim pajama 627B binidx
3
+ ---
4
+ This dataset comprises nine chunks (out of ten) from the Cerebras/SlimPajama-627B dataset, processed into a binary index (bin idx) format.
5
+ The first chunk is located at : ```rwkv-x-dev/slimpajama-binidx```.
6
+
7
+ Due to their large size, each chunk is split into multiple parts for easier handling. To reassemble and decompress these parts, follow these steps:
8
+
9
+ 1. Combine all parts of the desired chunk into a single file:
10
+ ```cat chunk2_text_document_part_* > chunk2_text_document.tar.xz```
11
+
12
+ 2. Decompress the combined file:
13
+ ```xz -d chunk2_text_document.tar.xz```
14
+
15
+ 3. Extract the decompressed file:
16
+ ```tar -xvf chunk2_text_document.tar```
17
+
18
+ This process successfully reassembles and decompresses the chosen chunk.
19
+ ```
20
+ cat chunk2_text_document_part_* > chunk2_text_document.tar.xz
21
+ xz -d chunk2_text_document.tar.xz
22
+ tar -xvf chunk2_text_document.tar
23
+ ```