Datasets:
Tasks:
Audio Classification
Modalities:
Audio
Languages:
English
Tags:
audio
music-classification
meter-classification
multi-class-classification
multi-label-classification
License:
Commit
·
22a4635
1
Parent(s):
a70ce33
update agan
Browse files
README.md
CHANGED
@@ -84,6 +84,20 @@ DatasetDict({
|
|
84 |
})
|
85 |
```
|
86 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
Each entry in the dataset contains:
|
88 |
|
89 |
- **filename**: Path to the audio file.
|
|
|
84 |
})
|
85 |
```
|
86 |
|
87 |
+
```python
|
88 |
+
meter2800["train"][0]
|
89 |
+
|
90 |
+
{'filename': 'MAG/00553.wav',
|
91 |
+
'audio': {'path': '/root/.cache/huggingface/datasets/downloads/extracted/73a5809e655e59c99bd79d00033b98b254ca3689f2b9e2c2eba55fe3894b7622/MAG/00553.wav',
|
92 |
+
'array': array([ 2.87892180e-06, -1.07296364e-05, -3.22661945e-05, ...,
|
93 |
+
-2.06501483e-13, -5.44009282e-15, 1.38777878e-14]),
|
94 |
+
'sampling_rate': 16000},
|
95 |
+
'label': 0,
|
96 |
+
'meter': '3',
|
97 |
+
'alt_meter': '6'}
|
98 |
+
|
99 |
+
```
|
100 |
+
|
101 |
Each entry in the dataset contains:
|
102 |
|
103 |
- **filename**: Path to the audio file.
|