Spaces:
Running
Running
File size: 320 Bytes
88b57c0 |
1 2 3 4 5 6 7 8 9 10 |
# Third-party
import torch
# Global Variables
COMPUTATION_DEVICE = "cuda" if torch.cuda.is_available() else "cpu"
EXECUTION_PROVIDER_LIST = ["CUDAExecutionProvider", "CPUExecutionProvider"]
ONNX_MODEL_PATH = "./models/MDX_Net_Models/Kim_Vocal.onnx"
INPUT_FOLDER = "./datasets/input"
OUTPUT_FOLDER = "./datasets/output"
|