2023-04-27 23:38:25 +09:00
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
|
|
|
|
|
|
@dataclass
|
2023-05-02 12:11:00 +09:00
|
|
|
class VoiceChangerParams:
|
2023-05-15 04:24:58 +09:00
|
|
|
model_dir: str
|
2023-04-27 23:38:25 +09:00
|
|
|
content_vec_500: str
|
|
|
|
content_vec_500_onnx: str
|
|
|
|
content_vec_500_onnx_on: bool
|
|
|
|
hubert_base: str
|
2023-05-02 12:11:00 +09:00
|
|
|
hubert_base_jp: str
|
2023-04-27 23:38:25 +09:00
|
|
|
hubert_soft: str
|
|
|
|
nsf_hifigan: str
|
2023-06-16 16:49:55 +09:00
|
|
|
sample_mode: str
|
2023-07-07 02:17:29 +09:00
|
|
|
crepe_onnx_full: str
|
|
|
|
crepe_onnx_tiny: str
|
2023-07-15 09:17:19 +09:00
|
|
|
rmvpe: str
|
2023-08-26 13:48:03 +09:00
|
|
|
rmvpe_onnx: str
|
2024-02-28 23:08:49 +09:00
|
|
|
whisper_tiny: str
|