Update app.py
Browse files
app.py
CHANGED
@@ -16,6 +16,9 @@ def inference(input_file_path,model_name):
|
|
16 |
if not filename:
|
17 |
filename="test"
|
18 |
|
|
|
|
|
|
|
19 |
vocals_out = os.path.join(temp_out_dir, model_name,filename,"vocals.mp3")
|
20 |
no_vocals_out = os.path.join(temp_out_dir, model_name,filename,"no_vocals.mp3")
|
21 |
|
|
|
16 |
if not filename:
|
17 |
filename="test"
|
18 |
|
19 |
+
print("temp_out_dir",temp_out_dir)
|
20 |
+
print("model_name",model_name)
|
21 |
+
Print("filename",filename)
|
22 |
vocals_out = os.path.join(temp_out_dir, model_name,filename,"vocals.mp3")
|
23 |
no_vocals_out = os.path.join(temp_out_dir, model_name,filename,"no_vocals.mp3")
|
24 |
|