-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathphonemeDictionaries.py
71 lines (68 loc) · 1.29 KB
/
phonemeDictionaries.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
phonemeCategory = {
'a': 'open',
'e': 'close',
u'\u025b': 'open',
u'\u0259': 'neutral',
'i': 'close',
'I': 'close',
'o': 'close',
u'\u0254': 'open',
u'\u00f8': 'close',
u'\u0153': 'open',
u'\u0276': 'open', #other oe thing
'y': 'close',
'u': 'close',
u'\u028a': 'close',
'Y': 'close',
}
phonemeCategoryFive = {
'a': 'open',
'e': 'closeMid',
u'\u025b': 'openMid',
u'\u0259': 'neutral',
'i': 'close',
'I': 'close',
'o': 'closeMid',
u'\u0254': 'openMid',
u'\u00f8': 'closeMid',
u'\u0153': 'openMid',
u'\u0276': 'openMid', #other oe thing
'y': 'close',
'u': 'close',
u'\u028a': 'close',
'Y': 'close',
}
phonemeCategoryNumbers = {
'a': '0',
'e': '2',
u'\u025b': '0',
u'\u0259': '1',
'i': '2',
'I': '2',
'o': '2',
u'\u0254': '0',
u'\u00f8': '2',
u'\u0153': '0',
u'\u0276': '0', #other oe thing
'y': '2',
'u': '2',
u'\u028a': '2',
'Y': '2',
}
phonemeCategoryFiveNumbers = {
'a': '0',
'e': '3',
u'\u025b': '1',
u'\u0259': '2',
'i': '4',
'I': '4',
'o': '3',
u'\u0254': '1',
u'\u00f8': '3',
u'\u0153': '1',
u'\u0276': '0', #other oe thing
'y': '4',
'u': '4',
u'\u028a': '4',
'Y': '4',
}