Update README.md
Browse files
README.md
CHANGED
|
@@ -4,4 +4,57 @@ tags:
|
|
| 4 |
- SCATSVAD
|
| 5 |
---
|
| 6 |
|
| 7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
- SCATSVAD
|
| 5 |
---
|
| 6 |
|
| 7 |
+
# SCATSVAD Dataset
|
| 8 |
+
|
| 9 |
+
This repository contains the SCATSVAD dataset, including training, evaluation, and test sets. The dataset is split into multiple files, most of them with a size of **40GB**.
|
| 10 |
+
|
| 11 |
+
## Dataset Structure
|
| 12 |
+
|
| 13 |
+
### Training Set (`train`)
|
| 14 |
+
The training set consists of five compressed files:
|
| 15 |
+
|
| 16 |
+
- `train_dataset.tar.gz00`
|
| 17 |
+
- `train_dataset.tar.gz01`
|
| 18 |
+
- `train_dataset.tar.gz02`
|
| 19 |
+
- `train_dataset.tar.gz03`
|
| 20 |
+
- `train_dataset.tar.gz04` - 27GB
|
| 21 |
+
|
| 22 |
+
Each file is **100GB** in size.
|
| 23 |
+
|
| 24 |
+
### Evaluation Set (`eval`)
|
| 25 |
+
The evaluation set contains two files:
|
| 26 |
+
|
| 27 |
+
- `eval_dataset.tar.gz00`
|
| 28 |
+
- `eval_dataset.tar.gz01` - 27GB
|
| 29 |
+
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
### Test Set (`test`)
|
| 33 |
+
The test set contains two files:
|
| 34 |
+
|
| 35 |
+
- `test_dataset.tar.gz00`
|
| 36 |
+
- `test_dataset.tar.gz01`
|
| 37 |
+
- `test_dataset.tar.gz02` - 25GB
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
|
| 41 |
+
## Usage
|
| 42 |
+
To extract the dataset, use the following command:
|
| 43 |
+
```bash
|
| 44 |
+
cat train_dataset.tar.gz* | tar -xzvf -
|
| 45 |
+
```
|
| 46 |
+
This will concatenate and extract all parts of the training dataset.
|
| 47 |
+
|
| 48 |
+
Similarly, for evaluation and test datasets:
|
| 49 |
+
```bash
|
| 50 |
+
cat eval_dataset_*.tar.gz | tar -xzvf -
|
| 51 |
+
cat test_dataset_*.tar.gz | tar -xzvf -
|
| 52 |
+
```
|
| 53 |
+
|
| 54 |
+
## Notes
|
| 55 |
+
- Ensure you have sufficient storage space before extraction.
|
| 56 |
+
- If downloading from a remote server, consider using `rsync` or `wget` with resume support.
|
| 57 |
+
|
| 58 |
+
---
|
| 59 |
+
For any issues, please contact us.
|
| 60 |
+
|