asigalov61 commited on
Commit
2c613a5
·
verified ·
1 Parent(s): 139b81a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -8
app.py CHANGED
@@ -114,10 +114,7 @@ def find_max_exact_match(src, trg):
114
 
115
  #==================================================================================
116
 
117
- def Match_Cores(input_midi,
118
- chords_chunks_len,
119
- num_mix_chunks
120
- ):
121
 
122
  #===============================================================================
123
 
@@ -133,8 +130,6 @@ def Match_Cores(input_midi,
133
  print('Requested settings:')
134
  print('=' * 70)
135
  print('Input MIDI file name:', fn)
136
- print('Chords chunks len:', chords_chunks_len)
137
- print('Num mix chunks:', num_mix_chunks)
138
 
139
  print('=' * 70)
140
 
@@ -301,8 +296,6 @@ with gr.Blocks() as demo:
301
 
302
  mix_btn.click(Match_Cores,
303
  [input_midi,
304
- chords_chunks_len,
305
- num_mix_chunks
306
  ],
307
  [output_audio,
308
  output_plot,
 
114
 
115
  #==================================================================================
116
 
117
+ def Match_Cores(input_midi):
 
 
 
118
 
119
  #===============================================================================
120
 
 
130
  print('Requested settings:')
131
  print('=' * 70)
132
  print('Input MIDI file name:', fn)
 
 
133
 
134
  print('=' * 70)
135
 
 
296
 
297
  mix_btn.click(Match_Cores,
298
  [input_midi,
 
 
299
  ],
300
  [output_audio,
301
  output_plot,