SCATSVAD's picture
Update README.md
14c4e39 verified
---
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.