projectlosangeles commited on
Commit
a120f68
·
verified ·
1 Parent(s): f386e89

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -241,7 +241,7 @@ def Humanize_MIDI(input_midi,
241
 
242
  final_song = score[:num_prime_toks]
243
 
244
- for t in tqdm.tqdm(score[:num_prime_toks]):
245
 
246
  if t < 16767 or t > 18815:
247
  final_song.append(t)
 
241
 
242
  final_song = score[:num_prime_toks]
243
 
244
+ for t in tqdm.tqdm(score[num_prime_toks:]):
245
 
246
  if t < 16767 or t > 18815:
247
  final_song.append(t)