Datasets:
imvladikon
commited on
Commit
•
f28a58b
1
Parent(s):
82de1ff
Update README.md
Browse files
README.md
CHANGED
@@ -55,11 +55,20 @@ Subtitles that are not on Hebrew were removed (WIP: need to remove non-Hebrew au
|
|
55 |
Samples with duration less than 3 second were removed.
|
56 |
Total duration of the dataset is 152 hours.
|
57 |
Outliers in terms of the duration/char ratio were not removed, so it's possible to find suspiciously long or short sentences compared to the duration.
|
58 |
-
WIP: dataset suspiciously is huge. fix it
|
|
|
59 |
## Data Format
|
60 |
|
61 |
Audio files are in WAV format, 16kHz sampling rate, 16bit, mono. Ignore `path` field, use `audio.array` field value.
|
62 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
## Data Sample
|
64 |
```
|
65 |
{'uid': '10c3eda27cf173ab25bde755d0023abed301fcfd',
|
|
|
55 |
Samples with duration less than 3 second were removed.
|
56 |
Total duration of the dataset is 152 hours.
|
57 |
Outliers in terms of the duration/char ratio were not removed, so it's possible to find suspiciously long or short sentences compared to the duration.
|
58 |
+
WIP: dataset suspiciously is huge. fix it (probably original files with 22050Hz are in)
|
59 |
+
|
60 |
## Data Format
|
61 |
|
62 |
Audio files are in WAV format, 16kHz sampling rate, 16bit, mono. Ignore `path` field, use `audio.array` field value.
|
63 |
|
64 |
+
## Data Usage
|
65 |
+
```python
|
66 |
+
from datasets import load_dataset
|
67 |
+
|
68 |
+
ds = load_dataset("imvladikon/hebrew_speech_campus", split="train", streaming=True)
|
69 |
+
print(next(iter(ds)))
|
70 |
+
```
|
71 |
+
|
72 |
## Data Sample
|
73 |
```
|
74 |
{'uid': '10c3eda27cf173ab25bde755d0023abed301fcfd',
|