Renamed nonGUI file

This commit is contained in:
Dilan Boskan 2021-01-22 15:47:45 +01:00
parent 35987ac1ca
commit 4c620790fa
2 changed files with 16 additions and 17 deletions

16
nonGUI_VocalRemover.py Normal file
View File

@ -0,0 +1,16 @@
"""
Test the non GUI version of UVR
To see more info on configurable options for the VocalRemover, go to inference_v4.py and see variable 'default_data'
"""
from inference_v4 import (VocalRemover, default_data)
seperation_data = default_data.copy()
seperation_data['input_paths'] = [r'']
seperation_data['export_path'] = r''
seperation_data['instrumentalModel'] = r''
seperation_data['stackPasses'] = 0
seperation_data['stackModel'] = r''
vocal_remover = VocalRemover(data=seperation_data)
vocal_remover.seperate_files()

View File

@ -1,17 +0,0 @@
"""
Test the non GUI version of UVR
To see configurable options for the VocalRemover, go to inference_v4.py and see variable 'default_data'
"""
from inference_v4 import (VocalRemover, default_data)
seperation_data = default_data.copy()
seperation_data['input_paths'] = [r'B:\boska\Desktop\Test inference\test.mp3']
seperation_data['export_path'] = r'B:\boska\Desktop\Test inference'
seperation_data['instrumentalModel'] = r'B:\boska\Documents\Dilan\Dropbox\Github\ultimatevocalremovergui\models\v4\Main Models\MGM_HIGHEND_v4_sr44100_hl1024_nf2048.pth'
seperation_data['modelFolder'] = True
seperation_data['tta'] = False
vocal_remover = VocalRemover(data=seperation_data)
vocal_remover.seperate_files()