Spaces:
Building
on
L40S
Building
on
L40S
Update app.py
Browse files
app.py
CHANGED
@@ -36,41 +36,45 @@ def analyze_lyrics(lyrics, repeat_chorus=2):
|
|
36 |
'chorus': [],
|
37 |
'bridge': []
|
38 |
}
|
|
|
|
|
|
|
39 |
|
40 |
-
for line in lines:
|
41 |
lower_line = line.lower()
|
42 |
if '[verse]' in lower_line:
|
|
|
|
|
43 |
current_section = 'verse'
|
44 |
sections['verse'] += 1
|
45 |
-
|
46 |
elif '[chorus]' in lower_line:
|
|
|
|
|
47 |
current_section = 'chorus'
|
48 |
sections['chorus'] += 1
|
49 |
-
|
50 |
elif '[bridge]' in lower_line:
|
|
|
|
|
51 |
current_section = 'bridge'
|
52 |
sections['bridge'] += 1
|
53 |
-
|
54 |
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
|
59 |
-
#
|
60 |
-
# chorus ์น์
์ ์ฒด ๋ธ๋ก์ ๋ณต์
|
61 |
if sections['chorus'] == 1 and repeat_chorus > 1:
|
62 |
chorus_block = section_lines['chorus'][:]
|
63 |
for _ in range(repeat_chorus - 1):
|
64 |
section_lines['chorus'].extend(chorus_block)
|
65 |
|
66 |
-
# ๋ผ์ธ ์ ์ฌ๊ณ์ฐ
|
67 |
new_total_lines = sum(len(section_lines[sec]) for sec in section_lines)
|
68 |
|
69 |
-
return sections, (sections['verse'] + sections['chorus'] + sections['bridge']), new_total_lines,
|
70 |
-
'verse': len(section_lines['verse']),
|
71 |
-
'chorus': len(section_lines['chorus']),
|
72 |
-
'bridge': len(section_lines['bridge'])
|
73 |
-
}
|
74 |
|
75 |
|
76 |
def calculate_generation_params(lyrics):
|
@@ -302,14 +306,14 @@ def infer(genre_txt_content, lyrics_txt_content, num_segments, max_new_tokens):
|
|
302 |
has_chorus = params['sections']['chorus'] > 0
|
303 |
estimated_duration = params.get('estimated_duration', 90)
|
304 |
|
305 |
-
|
306 |
-
# ํ ํฐ ์์ ์ธ๊ทธ๋จผํธ ์ ์กฐ์
|
307 |
if has_chorus:
|
308 |
-
|
309 |
-
|
310 |
else:
|
311 |
-
|
312 |
-
|
|
|
313 |
|
314 |
|
315 |
|
|
|
36 |
'chorus': [],
|
37 |
'bridge': []
|
38 |
}
|
39 |
+
|
40 |
+
# ๋ง์ง๋ง ์น์
์ ์ถ์ ํ๊ธฐ ์ํ ๋ณ์
|
41 |
+
last_section_start = 0
|
42 |
|
43 |
+
for i, line in enumerate(lines):
|
44 |
lower_line = line.lower()
|
45 |
if '[verse]' in lower_line:
|
46 |
+
if current_section: # ์ด์ ์น์
์ ๋ผ์ธ๋ค ์ ์ฅ
|
47 |
+
section_lines[current_section].extend(lines[last_section_start:i])
|
48 |
current_section = 'verse'
|
49 |
sections['verse'] += 1
|
50 |
+
last_section_start = i + 1
|
51 |
elif '[chorus]' in lower_line:
|
52 |
+
if current_section:
|
53 |
+
section_lines[current_section].extend(lines[last_section_start:i])
|
54 |
current_section = 'chorus'
|
55 |
sections['chorus'] += 1
|
56 |
+
last_section_start = i + 1
|
57 |
elif '[bridge]' in lower_line:
|
58 |
+
if current_section:
|
59 |
+
section_lines[current_section].extend(lines[last_section_start:i])
|
60 |
current_section = 'bridge'
|
61 |
sections['bridge'] += 1
|
62 |
+
last_section_start = i + 1
|
63 |
|
64 |
+
# ๋ง์ง๋ง ์น์
์ ๋ผ์ธ๋ค ์ถ๊ฐ
|
65 |
+
if current_section:
|
66 |
+
section_lines[current_section].extend(lines[last_section_start:])
|
67 |
|
68 |
+
# ์ฝ๋ฌ์ค ๋ฐ๋ณต ์ฒ๋ฆฌ
|
|
|
69 |
if sections['chorus'] == 1 and repeat_chorus > 1:
|
70 |
chorus_block = section_lines['chorus'][:]
|
71 |
for _ in range(repeat_chorus - 1):
|
72 |
section_lines['chorus'].extend(chorus_block)
|
73 |
|
74 |
+
# ์ ์ฒด ๋ผ์ธ ์ ์ฌ๊ณ์ฐ
|
75 |
new_total_lines = sum(len(section_lines[sec]) for sec in section_lines)
|
76 |
|
77 |
+
return sections, (sections['verse'] + sections['chorus'] + sections['bridge']), new_total_lines, section_lines
|
|
|
|
|
|
|
|
|
78 |
|
79 |
|
80 |
def calculate_generation_params(lyrics):
|
|
|
306 |
has_chorus = params['sections']['chorus'] > 0
|
307 |
estimated_duration = params.get('estimated_duration', 90)
|
308 |
|
309 |
+
# ์ธ๊ทธ๋จผํธ ์ ์กฐ์
|
|
|
310 |
if has_chorus:
|
311 |
+
actual_num_segments = min(4, actual_num_segments + 1) # ์ธ๊ทธ๋จผํธ ํ๋ ์ถ๊ฐ
|
312 |
+
actual_max_tokens = min(8000, int(config['max_tokens'] * 1.3)) # 30% ์ฆ๊ฐ
|
313 |
else:
|
314 |
+
actual_num_segments = min(3, actual_num_segments + 1)
|
315 |
+
actual_max_tokens = min(8000, int(config['max_tokens'] * 1.2))
|
316 |
+
|
317 |
|
318 |
|
319 |
|