mf / README.md
cassiotbatista's picture
readme: add description from github speech-datasets repo
0e4a0ae
|
Raw
History Blame Contribute Delete
2.2 kB
metadata
license: mit
language:
  - pt
pretty_name: Male/Female dataset for forced alignment
size_categories:
  - n<1K

MF: Male/Female for Forced Phonetic Alignment

This is a two-speaker dataset manually aligned at the phoneme level (Praat's textgrid files provided). Each portion contains 200 instances from both a male and a female speaker. This repo has been used as ground truth for the following papers:

One major problem with both male and female datasets is that they were hand aligned according to an unknown phoneset, which nobody really knows where it actually came from. So it required some considerable amount of processing in order to convert the original phoneset to the FalaBrasil phoneset, since the latter is the one which all acoustic models are trained over.

Dataset original phone set:

$ find male/textgrid -name "*.TextGrid" > filelist
$ while read line ; do awk '/phones/,/syll/' $line | grep 'text =' | awk '{print $3}' ; done < filelist | sort | uniq | sed 's/"//g'
  4    6    6~   a    a~   b    d    e    e~   E    f    g    h    h/   h\   i    i~   j    j~   J
  k    l    L    m    n    o    o~   O    p    s    S    t    u    u~   v    w    w~   z    Z    _

FalaBrasil original phone set (see also our NLP Generator library, which performs the G2P conversion):

$ find male/textgrid_falabrasil -name "*.TextGrid" > filelist
$ while read line ; do awk '/"phones"/,/"syllphones"/' $line | grep 'text =' | awk '{print $3}' ; done < filelist | sort | uniq | sed 's/"//g'
  a    a~   b    d    dZ   e    e~   E    f    g    i    i~   j    j~   J    k    l    L    m    n
  o    o~   O    p    r    R    s    S    t    tS   u    u~   v    w    w~   X    z    Z    _