birgermoell
commited on
Commit
·
939d303
1
Parent(s):
216e6de
Updated readme
Browse files
README.md
CHANGED
@@ -1 +1,11 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Speechdat
|
2 |
+
Speechdat dataset
|
3 |
+
|
4 |
+
## Loading the dataset
|
5 |
+
You need to download the dataset from another folder. We assume the wav files are located inside a /wav folder inside speechdat.
|
6 |
+
|
7 |
+
```
|
8 |
+
from datasets import load_dataset
|
9 |
+
speechdat = load_dataset("./speechdat", split="train", data_dir="./speechdat/wav")
|
10 |
+
```
|
11 |
+
|