Uploaded the mapping dictionary of phoneset and IPA symbols
Browse files- phoneset_IPA_mapping +59 -0
- phoneset_IPA_mapping.md +59 -0
phoneset_IPA_mapping
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
IPAdic = {
|
2 |
+
'U0': 'ˈu', # close back/front rounded vowel with stress?
|
3 |
+
'U': 'u', # without stress
|
4 |
+
'O0': 'ˈo', # close-mid back rounded vowel
|
5 |
+
'O': 'o',
|
6 |
+
'A0': 'ˈa', # open front unrounded vowel with stress
|
7 |
+
'A': 'a', # without stress
|
8 |
+
'E0': 'ˈe', # close-mid/open-mid front unrounded vowel
|
9 |
+
'E': 'e',
|
10 |
+
'Y0': 'ˈɨ', # close central unrounded vowel with stress
|
11 |
+
'Y': 'ɨ', # without stress
|
12 |
+
'I0': 'ˈi', # close front unrounded vowel - with stress?
|
13 |
+
'I': 'i', # without stress?
|
14 |
+
'K0': 'kʲ',
|
15 |
+
'KH0': 'xʲ',
|
16 |
+
'KH': 'x', # voiceless velar fricative
|
17 |
+
'K': 'k', # voiceless velar stop
|
18 |
+
'GH0': 'ɣʲ',
|
19 |
+
'GH': 'ɣ', # voiced velar fricative
|
20 |
+
'G0': 'gʲ',
|
21 |
+
'G': 'g', # voiced velar stop
|
22 |
+
'J0': 'j', # palatal approximant
|
23 |
+
'TSH0': 'tɕ',
|
24 |
+
'TSH': 'tʂ', # voiceless alveolo-palatal affricate
|
25 |
+
'SH0': 'ɕː',
|
26 |
+
'SH': 'ʂ', # voiceless retroflex fricative
|
27 |
+
'ZH0': 'ʑː',
|
28 |
+
'ZH': 'ʐ', # voiced retroflex fricative
|
29 |
+
'DZ0': 'dzʲ',
|
30 |
+
'DZ': 'dz', # voiced alveolar affricate
|
31 |
+
'DZH0': 'dʑhʲ',
|
32 |
+
'DZH': 'dʑh', # voiced alveolo-palatal affricate
|
33 |
+
'R0': 'rʲ',
|
34 |
+
'R': 'r', # alveolar and postalveolar trills
|
35 |
+
'T0': 'tʲ',
|
36 |
+
'T': 't', # voiceless dental stop
|
37 |
+
'TS0': 'tsʲ',
|
38 |
+
'TS': 'ts', # voiceless alveolar affricate
|
39 |
+
'S0': 'sʲ',
|
40 |
+
'S': 's', # voiceless alveolar sibilant
|
41 |
+
'D0': 'dʲ',
|
42 |
+
'D': 'd', # voiced dental stop
|
43 |
+
'Z0': 'zʲ',
|
44 |
+
'Z': 'z', # voiced alveolar fricative
|
45 |
+
'N0': 'nʲ',
|
46 |
+
'N': 'n', # alveolar nasal
|
47 |
+
'L0': 'lʲ',
|
48 |
+
'L': 'ɬ', # velarized alveolar lateral approximant
|
49 |
+
'P0': 'pʲ',
|
50 |
+
'P': 'p', # voiceless bilabial stop
|
51 |
+
'F0': 'fʲ',
|
52 |
+
'F': 'f', # voiceless labiodental fricative
|
53 |
+
'B0': 'bʲ', # voiced bilabial stop
|
54 |
+
'B': 'b',
|
55 |
+
'V0': 'vʲ',
|
56 |
+
'V': 'v', # voiced labiodental fricative
|
57 |
+
'M0': 'mʲ',
|
58 |
+
'M': 'm' # bilabial nasal
|
59 |
+
}
|
phoneset_IPA_mapping.md
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
IPAdic = {
|
2 |
+
'U0': 'ˈu', # close back/front rounded vowel with stress?
|
3 |
+
'U': 'u', # without stress
|
4 |
+
'O0': 'ˈo', # close-mid back rounded vowel
|
5 |
+
'O': 'o',
|
6 |
+
'A0': 'ˈa', # open front unrounded vowel with stress
|
7 |
+
'A': 'a', # without stress
|
8 |
+
'E0': 'ˈe', # close-mid/open-mid front unrounded vowel
|
9 |
+
'E': 'e',
|
10 |
+
'Y0': 'ˈɨ', # close central unrounded vowel with stress
|
11 |
+
'Y': 'ɨ', # without stress
|
12 |
+
'I0': 'ˈi', # close front unrounded vowel - with stress?
|
13 |
+
'I': 'i', # without stress?
|
14 |
+
'K0': 'kʲ',
|
15 |
+
'KH0': 'xʲ',
|
16 |
+
'KH': 'x', # voiceless velar fricative
|
17 |
+
'K': 'k', # voiceless velar stop
|
18 |
+
'GH0': 'ɣʲ',
|
19 |
+
'GH': 'ɣ', # voiced velar fricative
|
20 |
+
'G0': 'gʲ',
|
21 |
+
'G': 'g', # voiced velar stop
|
22 |
+
'J0': 'j', # palatal approximant
|
23 |
+
'TSH0': 'tɕ',
|
24 |
+
'TSH': 'tʂ', # voiceless alveolo-palatal affricate
|
25 |
+
'SH0': 'ɕː',
|
26 |
+
'SH': 'ʂ', # voiceless retroflex fricative
|
27 |
+
'ZH0': 'ʑː',
|
28 |
+
'ZH': 'ʐ', # voiced retroflex fricative
|
29 |
+
'DZ0': 'dzʲ',
|
30 |
+
'DZ': 'dz', # voiced alveolar affricate
|
31 |
+
'DZH0': 'dʑhʲ',
|
32 |
+
'DZH': 'dʑh', # voiced alveolo-palatal affricate
|
33 |
+
'R0': 'rʲ',
|
34 |
+
'R': 'r', # alveolar and postalveolar trills
|
35 |
+
'T0': 'tʲ',
|
36 |
+
'T': 't', # voiceless dental stop
|
37 |
+
'TS0': 'tsʲ',
|
38 |
+
'TS': 'ts', # voiceless alveolar affricate
|
39 |
+
'S0': 'sʲ',
|
40 |
+
'S': 's', # voiceless alveolar sibilant
|
41 |
+
'D0': 'dʲ',
|
42 |
+
'D': 'd', # voiced dental stop
|
43 |
+
'Z0': 'zʲ',
|
44 |
+
'Z': 'z', # voiced alveolar fricative
|
45 |
+
'N0': 'nʲ',
|
46 |
+
'N': 'n', # alveolar nasal
|
47 |
+
'L0': 'lʲ',
|
48 |
+
'L': 'ɬ', # velarized alveolar lateral approximant
|
49 |
+
'P0': 'pʲ',
|
50 |
+
'P': 'p', # voiceless bilabial stop
|
51 |
+
'F0': 'fʲ',
|
52 |
+
'F': 'f', # voiceless labiodental fricative
|
53 |
+
'B0': 'bʲ', # voiced bilabial stop
|
54 |
+
'B': 'b',
|
55 |
+
'V0': 'vʲ',
|
56 |
+
'V': 'v', # voiced labiodental fricative
|
57 |
+
'M0': 'mʲ',
|
58 |
+
'M': 'm' # bilabial nasal
|
59 |
+
}
|