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