| 406 | } |
| 407 | |
| 408 | SpeakerConditioningModule::SpeakerConditioningModule(SpeakerConditioningConfig config) : config_(config) { |
| 409 | require_positive(config_.hidden_size, "SpeakerConditioningConfig.hidden_size"); |
| 410 | require_positive(config_.speaker_dim, "SpeakerConditioningConfig.speaker_dim"); |
| 411 | } |
| 412 | |
| 413 | const SpeakerConditioningConfig & SpeakerConditioningModule::config() const noexcept { |
| 414 | return config_; |
nothing calls this directly
no test coverage detected