Vocal-Isolator / src /constants.py
Jarod Castillo
removed pip from requirements, fixed pretrained model pathing
d24a3d9
raw
history blame
331 Bytes
# Third-party
import torch
# Global Variables
COMPUTATION_DEVICE = "cuda" if torch.cuda.is_available() else "cpu"
EXECUTION_PROVIDER_LIST = ["CUDAExecutionProvider", "CPUExecutionProvider"]
ONNX_MODEL_PATH = "./pretrained_models/MDX_Net_Models/Kim_Vocal.onnx"
INPUT_FOLDER = "./datasets/input"
OUTPUT_FOLDER = "./datasets/output"