RVC-CH / lib /rvc /common.py
ozipoetra
refactor: create own RVC library from ultimate_rvc
754f043
raw
history blame
371 Bytes
"""Common constants and functions for the RVC package."""
from __future__ import annotations
from pathlib import Path
RVC_DIR = Path(__file__).resolve().parent
RVC_CONFIGS_DIR = Path(__file__).resolve().parent.parent.parent / "configs"
RVC_MODELS_DIR = Path(__file__).resolve().parent.parent.parent / "rvc_models"
RVC_TRAINING_MODELS_DIR = RVC_DIR / "train" / "models"