qanastek commited on
Commit
85fbf7a
·
verified ·
1 Parent(s): 167f600

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - audio
4
+ task_categories:
5
+ - audio-classification
6
+ pretty_name: background
7
+ size_categories:
8
+ - n<1K
9
+ ---
10
+
11
+ ## Dataset Statistics
12
+
13
+ - **Total Audio Files**: 4
14
+ - **Total Classes**: 4
15
+ - **Format**: MP3
16
+
17
+ ## Structure
18
+
19
+ 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.
20
+
21
+ ### Columns
22
+
23
+ - `audio`: The audio recording.
24
+ - `label`: The category label of the background noise.
25
+ - `description`: A text description of the background noise.
26
+
27
+ ## Usage
28
+
29
+ ```python
30
+ from datasets import load_dataset
31
+
32
+ ds = load_dataset("sdialog/foreground")
33
+ ```