mirror of
https://github.com/w-okada/voice-changer.git
synced 2025-01-24 05:55:01 +03:00
d5561c2212
- Add Crepe Full/Tiny (onnx) - remove test connect for local Refactor: - RVC: comment out module importer
17 lines
339 B
Python
17 lines
339 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class VoiceChangerParams:
|
|
model_dir: str
|
|
content_vec_500: str
|
|
content_vec_500_onnx: str
|
|
content_vec_500_onnx_on: bool
|
|
hubert_base: str
|
|
hubert_base_jp: str
|
|
hubert_soft: str
|
|
nsf_hifigan: str
|
|
sample_mode: str
|
|
crepe_onnx_full: str
|
|
crepe_onnx_tiny: str
|