Datasets:
imvladikon
commited on
Commit
โข
2051a47
1
Parent(s):
5acdaf7
Update README.md
Browse files
README.md
CHANGED
@@ -42,4 +42,56 @@ language:
|
|
42 |
- he
|
43 |
size_categories:
|
44 |
- 10K<n<100K
|
45 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
- he
|
43 |
size_categories:
|
44 |
- 10K<n<100K
|
45 |
+
---
|
46 |
+
|
47 |
+
|
48 |
+
## Data Description
|
49 |
+
|
50 |
+
Hebrew Speech Recognition dataset from (Campus IL)[https://campus.gov.il/].
|
51 |
+
|
52 |
+
Data was scraped from the Campus website, which contains video lectures from various courses in Hebrew.
|
53 |
+
Then subtitles were extracted from the videos and aligned with the audio.
|
54 |
+
Subtitles that are not on Hebrew were removed (WIP: need to remove non-Hebrew audio as well, e.g. using simple classifier).
|
55 |
+
Samples with duration less than 3 second were removed.
|
56 |
+
Total duration of the dataset is <> 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 |
+
## Data Format
|
59 |
+
|
60 |
+
Audio files are in WAV format, 16kHz sampling rate, 16bit, mono. Ignore `path` field, use `audio.array` field value.
|
61 |
+
|
62 |
+
## Data Sample
|
63 |
+
```
|
64 |
+
{'uid': '10c3eda27cf173ab25bde755d0023abed301fcfd',
|
65 |
+
'file_id': '10c3eda27cf173ab25bde755d0023abed301fcfd_13',
|
66 |
+
'audio': {'path': '/content/hebrew_speech_campus/data/from_another_angle-_mathematics_teaching_practices/10c3eda27cf173ab25bde755d0023abed301fcfd_13.wav',
|
67 |
+
'array': array([ 5.54326562e-07, 3.60812592e-05, -2.35188054e-04, ...,
|
68 |
+
2.34067178e-04, 1.55649337e-04, 6.32447700e-05]),
|
69 |
+
'sampling_rate': 16000},
|
70 |
+
'sentence': 'ืืืืืจืื ืฆืจืืืื ืืงืืช ืขืืื ืืืจืืืช, ืืืืืืช ืืืืืืื ืื ืืืืืจ, ืืฉืื ืฆืจืื ืืืืืช ืืืืื',
|
71 |
+
'n_segment': 13,
|
72 |
+
'duration_ms': 6607.98193359375,
|
73 |
+
'language': 'he',
|
74 |
+
'sample_rate': 16000,
|
75 |
+
'course': 'from_another_angle-_mathematics_teaching_practices',
|
76 |
+
'sentence_length': 79,
|
77 |
+
'n_tokens': 13}
|
78 |
+
```
|
79 |
+
|
80 |
+
## Data Splits and Stats
|
81 |
+
Split: train
|
82 |
+
Number of samples: 75924
|
83 |
+
|
84 |
+
## Citation
|
85 |
+
|
86 |
+
Please cite the following if you use this dataset in your work:
|
87 |
+
|
88 |
+
```
|
89 |
+
@misc{imvladikon2023hebrew_speech_campus,
|
90 |
+
author = {Gurevich, Vladimir},
|
91 |
+
title = {Hebrew Speech Recognition Dataset: Campus},
|
92 |
+
year = {2023},
|
93 |
+
howpublished = \url{https://huggingface.co/datasets/imvladikon/hebrew_speech_campus},
|
94 |
+
}
|
95 |
+
```
|
96 |
+
|
97 |
+
|