Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
There are 50 music clips(of 3~5 seconds).
|
2 |
+
You can load them by the following code:
|
3 |
+
|
4 |
+
```python
|
5 |
+
from datasets import load_dataset
|
6 |
+
dataset = load_dataset('yongjian/music-clips-50')
|
7 |
+
|
8 |
+
clips = dataset['train'] # all 50 music clips
|
9 |
+
music_1_np_array = clips[0]['audio']['array'] # numpy array of shape=[N,]
|
10 |
+
```
|
11 |
+
|
12 |
+
Or you can directly download them from Google Drive: [music-clips-50.tar.gz](https://drive.google.com/file/d/154y_Z9p1Sfhrwzj7jc46UMbTaAmI17AT/view?usp=sharing).
|