File size: 371 Bytes
8be9381
 
 
 
 
 
754f043
 
8be9381
1
2
3
4
5
6
7
8
9
10
"""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"