mirror of
https://github.com/w-okada/voice-changer.git
synced 2025-02-13 21:45:21 +03:00
![w-okada](/assets/img/avatar_default.png)
- 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
|