Spaces:
Building
on
L40S
Building
on
L40S
Update app.py
Browse files
app.py
CHANGED
@@ -88,16 +88,19 @@ def calculate_generation_params(lyrics):
|
|
88 |
}
|
89 |
|
90 |
# κ° μΉμ
λ³ μμ μκ° κ³μ°
|
91 |
-
section_durations = {
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
|
|
|
|
96 |
|
97 |
-
|
|
|
98 |
total_duration = max(60, total_duration) # μ΅μ 60μ΄
|
99 |
|
100 |
-
# ν ν° κ³μ°
|
101 |
base_tokens = 3000 # κΈ°λ³Έ ν ν° μ
|
102 |
tokens_per_line = 200 # μ€λΉ ν ν° μ
|
103 |
|
|
|
88 |
}
|
89 |
|
90 |
# κ° μΉμ
λ³ μμ μκ° κ³μ°
|
91 |
+
section_durations = {}
|
92 |
+
for section_type in ['verse', 'chorus', 'bridge']:
|
93 |
+
# κ° μΉμ
μ λΌμΈ μμ ν΄λΉ μΉμ
μ μκ°μ κ³±ν¨
|
94 |
+
if isinstance(section_lines[section_type], list):
|
95 |
+
section_durations[section_type] = len(section_lines[section_type]) * time_per_line[section_type]
|
96 |
+
else:
|
97 |
+
section_durations[section_type] = section_lines[section_type] * time_per_line[section_type]
|
98 |
|
99 |
+
# μ 체 μκ° κ³μ°
|
100 |
+
total_duration = sum(duration for duration in section_durations.values())
|
101 |
total_duration = max(60, total_duration) # μ΅μ 60μ΄
|
102 |
|
103 |
+
# ν ν° κ³μ°
|
104 |
base_tokens = 3000 # κΈ°λ³Έ ν ν° μ
|
105 |
tokens_per_line = 200 # μ€λΉ ν ν° μ
|
106 |
|