larryshaw0079 commited on
Commit
038d86b
·
verified ·
1 Parent(s): f118d99

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +51 -0
README.md ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # BECoS Processed
2
+
3
+ Preprocessed BECoS dataset hosted on the Hugging Face Hub:
4
+ [`larryshaw0079/becos_processed`](https://huggingface.co/datasets/larryshaw0079/becos_processed).
5
+
6
+ ## Contents
7
+
8
+ | File | Description |
9
+ | -------------------------------------------------- | -------------------------------------- |
10
+ | `train.zip.xx` (`train.zip.00`, `train.zip.01`, …) | Training split, byte-split for upload |
11
+ | `val.zip` | Validation split |
12
+ | `test.zip` | Test split |
13
+
14
+ ## Download
15
+
16
+ ```bash
17
+ pip install -U huggingface_hub
18
+ huggingface-cli download larryshaw0079/becos_processed \
19
+ --repo-type dataset --local-dir becos_processed
20
+ cd becos_processed
21
+ ```
22
+
23
+ Or grab individual files from the [Files tab](https://huggingface.co/datasets/larryshaw0079/becos_processed/tree/main).
24
+
25
+ ## Decompress
26
+
27
+ ```bash
28
+ # Training split — stream the chunks into unzip in one command
29
+ cat train.zip.* | unzip -
30
+
31
+ # Validation and test splits
32
+ unzip -o val.zip -d val && rm val.zip
33
+ unzip -o test.zip -d test && rm test.zip
34
+ ```
35
+
36
+ > `unzip` needs a seekable input (it reads the central directory at the end of the
37
+ > archive), so the chunks are joined on the fly and handed to `unzip` in a single
38
+ > chained command. No standalone `train.zip` is kept after extraction.
39
+
40
+ Result:
41
+
42
+ ```
43
+ becos_processed/
44
+ ├── train/
45
+ ├── val/
46
+ └── test/
47
+ ```
48
+
49
+ ## License & citation
50
+
51
+ See the [dataset card](https://huggingface.co/datasets/larryshaw0079/becos_processed) for license and citation details.