qanastek commited on
Commit
5ebc683
·
verified ·
1 Parent(s): 8c26114

Delete README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -47
README.md DELETED
@@ -1,47 +0,0 @@
1
- ---
2
- tags:
3
- - audio
4
- configs:
5
- - config_name: default
6
- data_files:
7
- - split: train
8
- path: data/train-00000-of-00001.parquet
9
- ---
10
-
11
- # Background Noise Dataset
12
-
13
- This dataset contains **3** audio recordings of **2** different background noise classes.
14
-
15
- ## Dataset Statistics
16
-
17
- - **Total Audio Files**: 3
18
- - **Total Classes**: 2
19
- - **Format**: WAV (converted to Parquet for Hugging Face Datasets)
20
-
21
- ## Classes and Descriptions
22
-
23
- The dataset covers the following background noises:
24
-
25
- | Label | Description |
26
- | :--- | :--- |
27
- | `fan_noise` | Fan noise background |
28
- | `white_noise` | White noise background |
29
-
30
- ## Structure
31
-
32
- The dataset is organized in a folder structure where each subdirectory corresponds to a class label.
33
- A `metadata.csv` file provides the file paths, labels, and descriptions.
34
-
35
- ### Columns
36
-
37
- - `audio`: Path to the audio file.
38
- - `label`: The category label of the background noise.
39
- - `description`: A text description of the background noise.
40
-
41
- ## Usage
42
-
43
- ```python
44
- from datasets import load_dataset
45
-
46
- ds = load_dataset("sdialog/background")
47
- ```