Update app.py
Browse files
app.py
CHANGED
@@ -12,75 +12,53 @@ def get_phones(word):
|
|
12 |
phones = phones_for_word[0].split()
|
13 |
return phones
|
14 |
|
15 |
-
def
|
16 |
-
for
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
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 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
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
|
81 |
|
82 |
# Gradio interface
|
83 |
-
iface = gr.Interface(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
|
85 |
if __name__ == "__main__":
|
86 |
iface.launch()
|
|
|
12 |
phones = phones_for_word[0].split()
|
13 |
return phones
|
14 |
|
15 |
+
def _get_rhyming_tail(phones, syllable_count=2):
|
16 |
+
vowels = [phone for phone in phones if phone[0] in 'AEIOU']
|
17 |
+
if len(vowels) < syllable_count:
|
18 |
+
return None # Not enough syllables for a multisyllabic rhyme
|
19 |
+
return phones[-syllable_count * 2:]
|
20 |
+
|
21 |
+
def get_multisyllabic_rhymes(phones, syllable_count=2):
|
22 |
+
rhyming_tail = _get_rhyming_tail(phones, syllable_count)
|
23 |
+
if not rhyming_tail:
|
24 |
+
return []
|
25 |
+
rhyming_tail_str = " ".join(rhyming_tail)
|
26 |
+
return pronouncing.search(rhyming_tail_str + "$")
|
27 |
+
|
28 |
+
def find_rhymes_for_words(words, syllable_count=2):
|
29 |
+
# Split words by spaces
|
30 |
+
words = words.split()
|
31 |
+
results = {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
|
33 |
+
for word in words:
|
34 |
+
phones = get_phones(word)
|
35 |
+
if phones is None:
|
36 |
+
results[word] = 'Not recognized'
|
37 |
+
continue
|
38 |
+
|
39 |
+
multisyllabic_rhymes = get_multisyllabic_rhymes(phones, syllable_count)
|
40 |
+
results[word] = multisyllabic_rhymes if multisyllabic_rhymes else "No multisyllabic rhymes found"
|
41 |
+
|
42 |
+
# Format results as a string
|
43 |
+
result_str = ""
|
44 |
+
for word, rhymes in results.items():
|
45 |
+
if isinstance(rhymes, list):
|
46 |
+
result_str += f"{word.capitalize()} ({syllable_count} syllables): " + ", ".join(rhymes) + "\n\n"
|
47 |
+
else:
|
48 |
+
result_str += f"{word.capitalize()}: {rhymes}\n\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
|
50 |
+
return result_str
|
51 |
|
52 |
# Gradio interface
|
53 |
+
iface = gr.Interface(
|
54 |
+
fn=lambda words, syllables: find_rhymes_for_words(words, syllables),
|
55 |
+
inputs=[
|
56 |
+
gr.inputs.Textbox(label="Enter words (space-separated)"),
|
57 |
+
gr.inputs.Slider(1, 3, step=1, label="Number of Syllables")
|
58 |
+
],
|
59 |
+
outputs="text",
|
60 |
+
description="Enter multiple words separated by spaces to find multisyllabic rhymes."
|
61 |
+
)
|
62 |
|
63 |
if __name__ == "__main__":
|
64 |
iface.launch()
|