ginipick commited on
Commit
13bfd1b
Β·
verified Β·
1 Parent(s): 86bd09d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -7
app.py CHANGED
@@ -88,16 +88,19 @@ def calculate_generation_params(lyrics):
88
  }
89
 
90
  # 각 μ„Ήμ…˜λ³„ μ˜ˆμƒ μ‹œκ°„ 계산
91
- section_durations = {
92
- 'verse': section_lines['verse'] * time_per_line['verse'],
93
- 'chorus': section_lines['chorus'] * time_per_line['chorus'],
94
- 'bridge': section_lines['bridge'] * time_per_line['bridge']
95
- }
 
 
96
 
97
- total_duration = sum(section_durations.values())
 
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