Update app.py
Browse files
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[:
|
| 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)
|