Update app.py
Browse files
app.py
CHANGED
@@ -1,114 +1,58 @@
|
|
1 |
import pronouncing
|
2 |
import string
|
3 |
import copy
|
4 |
-
import
|
5 |
-
|
6 |
-
|
7 |
-
CONSONANTS = set(string.ascii_uppercase)-set('AEIOU')
|
8 |
|
|
|
9 |
|
10 |
def get_phones(word):
|
11 |
-
"""
|
12 |
-
Given a user-inputted word, return phones, its corresponding list of phonemes.
|
13 |
-
|
14 |
-
For example, the input guitar yields the list ['G', 'IH0', 'T', 'AA1', 'R']
|
15 |
-
"""
|
16 |
phones_for_word = pronouncing.phones_for_word(word)
|
17 |
-
|
18 |
if not phones_for_word:
|
19 |
return None
|
20 |
-
|
21 |
phones = phones_for_word[0].split()
|
22 |
return phones
|
23 |
|
24 |
-
|
25 |
def _get_vowel_index(phones):
|
26 |
-
"""
|
27 |
-
In preparation to search for slant rhymes, return the position of the first vowel in phones.
|
28 |
-
"""
|
29 |
for index, phone in enumerate(phones):
|
30 |
if phone[0] in 'AEIOU':
|
31 |
return index
|
32 |
|
33 |
-
|
34 |
def _get_consonant_indices(phones):
|
35 |
-
"""
|
36 |
-
In preparation to search for slant rhymes, return the positions of all intermediate consonants after the first vowel in phones.
|
37 |
-
"""
|
38 |
indices = []
|
39 |
-
|
40 |
for index, phone in enumerate(phones):
|
41 |
if phone[0] in CONSONANTS and index < len(phones) - 1:
|
42 |
indices.append(index)
|
43 |
-
|
44 |
return indices
|
45 |
|
46 |
-
|
47 |
def _get_rhyming_tail(phones):
|
48 |
-
"""
|
49 |
-
In preparation to search for multisyllabic rhymes, remove characters before the first vowel in phones.
|
50 |
-
|
51 |
-
For example, phones changes from ['G', 'IH0', 'T', 'AA1', 'R'] to ['IH0', 'T', 'AA1', 'R']
|
52 |
-
"""
|
53 |
index = _get_vowel_index(phones)
|
54 |
return phones[index:]
|
55 |
|
56 |
-
|
57 |
def _slant_rhyme_consonants(phones):
|
58 |
-
"""
|
59 |
-
Replaces intermediate consonants with a period, the wildcard character. The final consonant is preserved.
|
60 |
-
|
61 |
-
For example, replace the intermediate 'T' in ['IH0', 'T', 'AA1', 'R'], leaving ['IH0', '.', 'AA1', 'R']
|
62 |
-
"""
|
63 |
consonant_indices = _get_consonant_indices(phones)
|
64 |
new_phones = copy.copy(phones)
|
65 |
-
|
66 |
for index in consonant_indices:
|
67 |
new_phones[index] = '.'
|
68 |
-
|
69 |
return new_phones
|
70 |
|
71 |
-
|
72 |
def get_perfect_rhymes(phones):
|
73 |
-
"""
|
74 |
-
Given phones, search for perfect, multisyllabic rhymes with no syllables afterwards.
|
75 |
-
"""
|
76 |
rhyming_tail = " ".join(_get_rhyming_tail(phones))
|
77 |
return pronouncing.search(rhyming_tail + "$")
|
78 |
|
79 |
-
|
80 |
def get_internal_rhymes(phones):
|
81 |
-
"""
|
82 |
-
Given phones, search for internal, multisyllabic rhymes.
|
83 |
-
"""
|
84 |
rhyming_tail = " ".join(_get_rhyming_tail(phones))
|
85 |
return pronouncing.search(rhyming_tail)
|
86 |
|
87 |
-
|
88 |
def get_slant_rhymes(phones):
|
89 |
-
"""
|
90 |
-
Given phones, return all slant and internal rhymes.
|
91 |
-
|
92 |
-
Slant rhymes do not require matching consonants before the final position. For example, guitar and cigar.
|
93 |
-
Internal rhymes do not require the matching syllables to be final. For example, guitar and departure.
|
94 |
-
"""
|
95 |
tail = _get_rhyming_tail(phones)
|
96 |
search = ' '.join(_slant_rhyme_consonants(tail))
|
97 |
return pronouncing.search(search)
|
98 |
|
99 |
-
|
100 |
-
def main(word):
|
101 |
-
"""
|
102 |
-
Search for slant rhymes given word, an argument from the command line.
|
103 |
-
|
104 |
-
For an inputted word not recognized in the CMU dictionary, prompt user to try another word.
|
105 |
-
"""
|
106 |
phones = get_phones(word)
|
107 |
-
|
108 |
if phones is None:
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
perfect_rhymes = get_perfect_rhymes(phones)
|
113 |
internal_rhymes = get_internal_rhymes(phones)
|
114 |
slant_rhymes = get_slant_rhymes(phones)
|
@@ -117,25 +61,26 @@ def main(word):
|
|
117 |
internals_without_perfects = set(internal_rhymes) - set(perfect_rhymes) - {word}
|
118 |
imperfect_slants = set(slant_rhymes) - set(internal_rhymes) - {word}
|
119 |
|
|
|
120 |
if perfects_without_word:
|
121 |
-
|
122 |
else:
|
123 |
-
|
124 |
|
125 |
if internals_without_perfects:
|
126 |
-
|
127 |
else:
|
128 |
-
|
129 |
|
130 |
if imperfect_slants:
|
131 |
-
|
132 |
else:
|
133 |
-
|
134 |
|
|
|
135 |
|
136 |
-
|
137 |
-
|
138 |
-
print('Usage: multisyllabic_rhymer.py word, where word is the rhyme target.')
|
139 |
-
exit(1)
|
140 |
|
141 |
-
|
|
|
|
1 |
import pronouncing
|
2 |
import string
|
3 |
import copy
|
4 |
+
import gradio as gr
|
|
|
|
|
|
|
5 |
|
6 |
+
CONSONANTS = set(string.ascii_uppercase) - set('AEIOU')
|
7 |
|
8 |
def get_phones(word):
|
|
|
|
|
|
|
|
|
|
|
9 |
phones_for_word = pronouncing.phones_for_word(word)
|
|
|
10 |
if not phones_for_word:
|
11 |
return None
|
|
|
12 |
phones = phones_for_word[0].split()
|
13 |
return phones
|
14 |
|
|
|
15 |
def _get_vowel_index(phones):
|
|
|
|
|
|
|
16 |
for index, phone in enumerate(phones):
|
17 |
if phone[0] in 'AEIOU':
|
18 |
return index
|
19 |
|
|
|
20 |
def _get_consonant_indices(phones):
|
|
|
|
|
|
|
21 |
indices = []
|
|
|
22 |
for index, phone in enumerate(phones):
|
23 |
if phone[0] in CONSONANTS and index < len(phones) - 1:
|
24 |
indices.append(index)
|
|
|
25 |
return indices
|
26 |
|
|
|
27 |
def _get_rhyming_tail(phones):
|
|
|
|
|
|
|
|
|
|
|
28 |
index = _get_vowel_index(phones)
|
29 |
return phones[index:]
|
30 |
|
|
|
31 |
def _slant_rhyme_consonants(phones):
|
|
|
|
|
|
|
|
|
|
|
32 |
consonant_indices = _get_consonant_indices(phones)
|
33 |
new_phones = copy.copy(phones)
|
|
|
34 |
for index in consonant_indices:
|
35 |
new_phones[index] = '.'
|
|
|
36 |
return new_phones
|
37 |
|
|
|
38 |
def get_perfect_rhymes(phones):
|
|
|
|
|
|
|
39 |
rhyming_tail = " ".join(_get_rhyming_tail(phones))
|
40 |
return pronouncing.search(rhyming_tail + "$")
|
41 |
|
|
|
42 |
def get_internal_rhymes(phones):
|
|
|
|
|
|
|
43 |
rhyming_tail = " ".join(_get_rhyming_tail(phones))
|
44 |
return pronouncing.search(rhyming_tail)
|
45 |
|
|
|
46 |
def get_slant_rhymes(phones):
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
tail = _get_rhyming_tail(phones)
|
48 |
search = ' '.join(_slant_rhyme_consonants(tail))
|
49 |
return pronouncing.search(search)
|
50 |
|
51 |
+
def find_rhymes(word):
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
phones = get_phones(word)
|
|
|
53 |
if phones is None:
|
54 |
+
return 'That word is not recognized. Please check the spelling and avoid proper nouns.'
|
55 |
+
|
|
|
56 |
perfect_rhymes = get_perfect_rhymes(phones)
|
57 |
internal_rhymes = get_internal_rhymes(phones)
|
58 |
slant_rhymes = get_slant_rhymes(phones)
|
|
|
61 |
internals_without_perfects = set(internal_rhymes) - set(perfect_rhymes) - {word}
|
62 |
imperfect_slants = set(slant_rhymes) - set(internal_rhymes) - {word}
|
63 |
|
64 |
+
result = ""
|
65 |
if perfects_without_word:
|
66 |
+
result += 'Perfect rhymes: ' + ", ".join(sorted(perfects_without_word)) + '\n\n'
|
67 |
else:
|
68 |
+
result += 'No perfect rhymes.\n\n'
|
69 |
|
70 |
if internals_without_perfects:
|
71 |
+
result += 'Internal rhymes: ' + ", ".join(sorted(internals_without_perfects)) + '\n\n'
|
72 |
else:
|
73 |
+
result += 'No internal rhymes.\n\n'
|
74 |
|
75 |
if imperfect_slants:
|
76 |
+
result += 'Slant rhymes: ' + ", ".join(sorted(imperfect_slants))
|
77 |
else:
|
78 |
+
result += 'No slant rhymes.'
|
79 |
|
80 |
+
return result
|
81 |
|
82 |
+
# Gradio interface
|
83 |
+
iface = gr.Interface(fn=find_rhymes, inputs="text", outputs="text", description="Enter a word to find rhymes.")
|
|
|
|
|
84 |
|
85 |
+
if __name__ == "__main__":
|
86 |
+
iface.launch()
|