Phillnet-2 / Audio /module_paths.py
ayjays132's picture
Upload 478 files
101858b verified
from __future__ import annotations
from pathlib import Path
def audio_root() -> Path:
return Path(__file__).resolve().parent
def audio_model_dir() -> Path:
return audio_root()
def audio_tokenizer_dir() -> Path:
return audio_root() / "audio_tokenizer"
def voices_dir() -> Path:
return audio_root() / "Voices"