Datasets:
File size: 1,013 Bytes
2bb4ab9 914a99f 2bb4ab9 914a99f | 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 | ---
tags:
- audio
task_categories:
- audio-classification
pretty_name: background
size_categories:
- n<1K
---
# Background Noise Dataset
This dataset contains **3** audio recordings of **2** different background noise classes.
## Dataset Statistics
- **Total Audio Files**: 3
- **Total Classes**: 2
- **Format**: WAV (AudioFolder with metadata.jsonl)
## Classes and Descriptions
The dataset covers the following background noises:
| Label | Description |
| :--- | :--- |
| `fan_noise` | Fan noise background |
| `white_noise` | White noise background |
## Structure
The dataset is organized in a folder structure where audio files are in subdirectories by label, and a `metadata.jsonl` file provides the file paths, labels, and descriptions.
### Columns
- `audio`: The audio recording.
- `label`: The category label of the background noise.
- `description`: A text description of the background noise.
## Usage
```python
from datasets import load_dataset
ds = load_dataset("sdialog/background")
```
|