Is the letter “g” missing from all en_US checkpoints?
#20
by aaurelions - opened
Does “kristin” have a “g,” but the others don't?
https://huggingface.co/datasets/rhasspy/piper-checkpoints/blob/main/en/en_US/lessac/high/config.json
"f": [
19
],
"h": [
20
],
"i": [
21
],
Those are phonemes, not letters. And it's there, they're just not in alphabetical order.
synesthesiam changed discussion status to closed
Thank you.
| Feature | U+0067 (g) | U+0261 (ɡ) |
|---|---|---|
| Name | Latin Small Letter G | Latin Small Letter Script G |
| Main Use | Standard writing (English, etc.) | International Phonetic Alphabet (IPA) |
It uses U+0261 (ɡ) , which, as far as I understand, isn't on the default EN keyboard.
During training, this checkpoint cannot be used if the dataset contains the standard U+0067 (g) .
These are IPA phonemes, so the dataset needs to map any non-IPA characters to the corresponding phoneme. espeak-ng will output the right thing, so it's usually not a concern.
If you're doing custom phonemes, you will need to create your own id mapping anyway.
