ginipick commited on
Commit
86bd09d
ยท
verified ยท
1 Parent(s): d9c83e6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +25 -21
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
- continue
46
  elif '[chorus]' in lower_line:
 
 
47
  current_section = 'chorus'
48
  sections['chorus'] += 1
49
- continue
50
  elif '[bridge]' in lower_line:
 
 
51
  current_section = 'bridge'
52
  sections['bridge'] += 1
53
- continue
54
 
55
- # ํ˜„์žฌ ์„น์…˜์— ๋ผ์ธ ์ถ”๊ฐ€
56
- if current_section:
57
- section_lines[current_section].append(line)
58
 
59
- # ๋งŒ์•ฝ ์ฝ”๋Ÿฌ์Šค๊ฐ€ 1ํšŒ๋งŒ ์žˆ๊ณ , repeat_chorus > 1์ด๋ฉด ๋ฐ˜๋ณตํ•ด์„œ ๋ถ™์ด๊ธฐ
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
- actual_max_tokens = min(8000, int(config['max_tokens'] * 1.2)) # 20% ์ฆ๊ฐ€, ์ตœ๋Œ€ 8000
309
- actual_num_segments = 3
310
  else:
311
- actual_max_tokens = config['max_tokens']
312
- actual_num_segments = 2
 
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