Spaces:
Runtime error
Runtime error
| from dataclasses import dataclass | |
| from pathlib import Path | |
| from ..hparams import HParams as HParamsBase | |
| class HParams(HParamsBase): | |
| cfm_solver_method: str = "midpoint" | |
| cfm_solver_nfe: int = 64 | |
| cfm_time_mapping_divisor: int = 4 | |
| univnet_nc: int = 96 | |
| lcfm_latent_dim: int = 64 | |
| lcfm_training_mode: str = "ae" | |
| lcfm_z_scale: float = 5 | |
| vocoder_extra_dim: int = 32 | |
| gan_training_start_step: int | None = 5_000 | |
| enhancer_stage1_run_dir: Path | None = None | |
| denoiser_run_dir: Path | None = None | |