aminh commited on
Commit
a4d324b
1 Parent(s): e7a9d64

add dataset

Browse files
.gitattributes CHANGED
@@ -36,3 +36,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
36
  *.mp3 filter=lfs diff=lfs merge=lfs -text
37
  *.ogg filter=lfs diff=lfs merge=lfs -text
38
  *.wav filter=lfs diff=lfs merge=lfs -text
 
 
36
  *.mp3 filter=lfs diff=lfs merge=lfs -text
37
  *.ogg filter=lfs diff=lfs merge=lfs -text
38
  *.wav filter=lfs diff=lfs merge=lfs -text
39
+ *.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Malay-TTS-Osman
2
+
3
+ All notebooks and code related at https://github.com/huseinzol05/malaya-speech/tree/master/data/azure-tts
4
+
5
+ ## Attributes
6
+
7
+ ### Wiki and News
8
+
9
+ - 24000 sample rate, super clean.
10
+ - narrator `ms-MY-OsmanNeural`.
11
+ - approximate 94.5 hours
12
+ - Texts from Malay Wikipedia and News.
13
+ - Sentences between 2 words and 20 words.
14
+
15
+ ### Parliament
16
+
17
+ - 24000 sample rate, super clean.
18
+ - narrator `ms-MY-OsmanNeural`.
19
+ - approximate 133.2 hours.
20
+ - Texts from Malaysia Malay Parliament.
21
+ - Sentences between 2 words and 25 words.
22
+
23
+ ## how-to
24
+
25
+ ### Wiki and News
26
+
27
+ 1. Download [populated-text.json](populated-text.json) and [tts-malay-osman.tar.gz](tts-malay-osman.tar.gz).
28
+
29
+ 2. To get wav and transcript,
30
+
31
+ ```python
32
+ import json
33
+ import soundfile as sf
34
+
35
+ with open('populated-text.json') as fopen:
36
+ texts = json.load(fopen)
37
+
38
+ index = 0
39
+ text = texts[index]
40
+ y, sr = sf.read(f'male/{index}.wav')
41
+ ```
42
+
43
+ ### Parliament
44
+
45
+ 1. Download [populated-parliament.json](populated-parliament.json) and [tts-malay-osman-parliament.tar.gz](tts-malay-osman-parliament.tar.gz).
46
+
47
+ 2. To get wav and transcript,
48
+
49
+ ```python
50
+ import json
51
+ import soundfile as sf
52
+
53
+ with open('populated-parliament.json') as fopen:
54
+ texts = json.load(fopen)
55
+
56
+ index = 0
57
+ text = texts[index]
58
+ y, sr = sf.read(f'male-parliament/{index}.wav')
59
+ ```
populated-parliament.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df5d1d7cf66770751a453e3976900b4321728c695bfd481f09e988b33bca3074
3
+ size 14778316
populated-text.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee330c662b242e007fe429e11b074a5b412c1cebaf0b2c974bf003c9d50361da
3
+ size 10485072
tts-malay-osman-parliament.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6ed15f0fe08f4170da36c9c3ce43ce7cea5e0314a4a77dbc8e405c6119f523a
3
+ size 23079874560
tts-malay-osman.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8210ed6f049b236fed0fa118647757612498f410feefc4c736be4ff65664b48
3
+ size 16378890240