Add files via upload

This commit is contained in:
Anjok07 2021-05-31 02:49:52 -05:00 committed by GitHub
parent 9312be372f
commit e6207a203c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

34
Ensemble-Outputs.bat Normal file
View File

@ -0,0 +1,34 @@
@echo off
:start
set choice=
set /p choice=Are you processing instrumental outputs? [Y/N]:
if not '%choice%'=='' set choice=%choice:~0,1%
if '%choice%'=='Y' goto inst
if '%choice%'=='y' goto inst
if '%choice%'=='N' goto vocals
if '%choice%'=='n' goto vocals
if '%choice%'=='' goto inst
:inst
ECHO Ensembling Instruments...
set modelparam=1band_sr44100_hl512
cd /d %~dp0
python lib/spec_utils.py -a min_mag -m modelparams\%modelparam%.json %* -o "%~n3_Ensembled_Instruments"
ECHO Complete!
goto end
:end
pause
exit
:vocals
ECHO Ensembling Vocals...
set modelparam=1band_sr44100_hl512
cd /d %~dp0
python lib/spec_utils.py -a max_mag -m modelparams\%modelparam%.json %* -o "%~n3_Ensembled_Vocals"
ECHO Complete!
goto end
:end
pause
exit