File size: 1,295 Bytes
b7b402a f998326 03491bd |
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 53 54 55 56 57 58 59 60 |
---
tags:
- speaker-diarization
- SCATSVAD
---
# SCATSVAD Dataset
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**.
## Dataset Structure
### Training Set (`train`)
The training set consists of five compressed files:
- `train_dataset.tar.gz00`
- `train_dataset.tar.gz01`
- `train_dataset.tar.gz02`
- `train_dataset.tar.gz03`
- `train_dataset.tar.gz04` - 27GB
### Evaluation Set (`eval`)
The evaluation set contains two files:
- `eval_dataset.tar.gz00`
- `eval_dataset.tar.gz01` - 27GB
### Test Set (`test`)
The test set contains two files:
- `test_dataset.tar.gz00`
- `test_dataset.tar.gz01`
- `test_dataset.tar.gz02` - 25GB
## Usage
To extract the dataset, use the following command:
```bash
cat train_dataset.tar.gz* | tar -xzvf -
```
This will concatenate and extract all parts of the training dataset.
Similarly, for evaluation and test datasets:
```bash
cat eval_dataset_*.tar.gz | tar -xzvf -
cat test_dataset_*.tar.gz | tar -xzvf -
```
## Notes
- Ensure you have sufficient storage space before extraction.
- If downloading from a remote server, consider using `rsync` or `wget` with resume support.
---
For any issues, please contact us.
|