qanastek commited on
Commit
914a99f
·
verified ·
1 Parent(s): b6611ae

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +40 -1
README.md CHANGED
@@ -1,7 +1,46 @@
1
  ---
 
 
2
  task_categories:
3
  - audio-classification
4
  pretty_name: background
5
  size_categories:
6
  - n<1K
7
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ tags:
3
+ - audio
4
  task_categories:
5
  - audio-classification
6
  pretty_name: background
7
  size_categories:
8
  - n<1K
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 (AudioFolder with metadata.jsonl)
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 audio files are in subdirectories by label, and a `metadata.jsonl` file provides the file paths, labels, and descriptions.
33
+
34
+ ### Columns
35
+
36
+ - `audio`: The audio recording.
37
+ - `label`: The category label of the background noise.
38
+ - `description`: A text description of the background noise.
39
+
40
+ ## Usage
41
+
42
+ ```python
43
+ from datasets import load_dataset
44
+
45
+ ds = load_dataset("sdialog/background")
46
+ ```