Spaces:
Sleeping
Sleeping
File size: 312 Bytes
4c19a5a da8d589 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import os
cwd = os.getcwd()
utils_path = os.path.dirname(os.path.realpath(__file__))
modules_path = os.path.dirname(utils_path)
ROOT_DIR = os.path.dirname(modules_path)
DATA_DIR = os.path.join(ROOT_DIR, "data")
MODELS_DIR = os.path.join(ROOT_DIR, "models")
SPEAKERS_DIR = os.path.join(DATA_DIR, "speakers")
|