Update README.md
Browse files
README.md
CHANGED
@@ -32,7 +32,7 @@ Phoneme annotations are provided in LJSpeech format `file_id|phonemes` inside `m
|
|
32 |
|
33 |
Example: `1|ma hamatsav` where `1` will point to `./wav/1.wav`. each wav length is 2 to 25 seconds.
|
34 |
|
35 |
-
and the phonemization was done using https://github.com/thewh1teagle/
|
36 |
|
37 |
## License
|
38 |
|
@@ -58,10 +58,10 @@ The dataset comes with phonemes already so you don't need this for train,
|
|
58 |
|
59 |
However you do need it after you train the model.
|
60 |
|
61 |
-
you can phonemize the text using [
|
62 |
|
63 |
```python
|
64 |
-
from
|
65 |
|
66 |
phonemes = phonemize("שָׁלוֹם עוֹלָם", schema='modern')
|
67 |
print(phonemes)
|
|
|
32 |
|
33 |
Example: `1|ma hamatsav` where `1` will point to `./wav/1.wav`. each wav length is 2 to 25 seconds.
|
34 |
|
35 |
+
and the phonemization was done using https://github.com/thewh1teagle/kolani, with manual corrections for accuracy.
|
36 |
|
37 |
## License
|
38 |
|
|
|
58 |
|
59 |
However you do need it after you train the model.
|
60 |
|
61 |
+
you can phonemize the text using [Kolani](https://github.com/thewh1teagle/kolani):
|
62 |
|
63 |
```python
|
64 |
+
from kolani import phonemize
|
65 |
|
66 |
phonemes = phonemize("שָׁלוֹם עוֹלָם", schema='modern')
|
67 |
print(phonemes)
|