saumya-pailwan commited on
Commit
665d1ca
·
verified ·
1 Parent(s): 0466bed

instrumental return change

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -91,7 +91,7 @@ def separate_all_stems(audio_file_path: str, model_name: str):
91
  drums, bass, other, vocals = output_signals
92
  instrumental = drums + bass + other
93
 
94
- return [drums, bass, vocals, instrumental]
95
 
96
  # Process Function
97
  def process_fn(audio_file_path, model_name):
 
91
  drums, bass, other, vocals = output_signals
92
  instrumental = drums + bass + other
93
 
94
+ return [drums, bass, vocals, other]
95
 
96
  # Process Function
97
  def process_fn(audio_file_path, model_name):