File size: 1,672 Bytes
038d86b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# BECoS Processed

Preprocessed BECoS dataset hosted on the Hugging Face Hub:
[`larryshaw0079/becos_processed`](https://huggingface.co/datasets/larryshaw0079/becos_processed).

## Contents

| File                                               | Description                            |
| -------------------------------------------------- | -------------------------------------- |
| `train.zip.xx` (`train.zip.00`, `train.zip.01`, …) | Training split, byte-split for upload  |
| `val.zip`                                          | Validation split                       |
| `test.zip`                                         | Test split                             |

## Download

```bash
pip install -U huggingface_hub
huggingface-cli download larryshaw0079/becos_processed \
    --repo-type dataset --local-dir becos_processed
cd becos_processed
```

Or grab individual files from the [Files tab](https://huggingface.co/datasets/larryshaw0079/becos_processed/tree/main).

## Decompress

```bash
# Training split — stream the chunks into unzip in one command
cat train.zip.* | unzip -

# Validation and test splits
unzip -o val.zip  -d val  && rm val.zip
unzip -o test.zip -d test && rm test.zip
```

> `unzip` needs a seekable input (it reads the central directory at the end of the
> archive), so the chunks are joined on the fly and handed to `unzip` in a single
> chained command. No standalone `train.zip` is kept after extraction.

Result:

```
becos_processed/
├── train/
├── val/
└── test/
```

## License & citation

See the [dataset card](https://huggingface.co/datasets/larryshaw0079/becos_processed) for license and citation details.