JaeSwift commited on
Commit
c14d215
·
verified ·
1 Parent(s): accacd6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +43 -65
app.py CHANGED
@@ -12,75 +12,53 @@ def get_phones(word):
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)
59
-
60
- perfects_without_word = set(perfect_rhymes) - {word}
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()
 
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()