| 541 | } |
| 542 | |
| 543 | SqueezeExcite1dModule::SqueezeExcite1dModule(SqueezeExcite1dConfig config) : config_(config) { |
| 544 | require_positive(config_.channels, "SqueezeExcite1dConfig.channels"); |
| 545 | require_positive(config_.hidden_channels, "SqueezeExcite1dConfig.hidden_channels"); |
| 546 | } |
| 547 | |
| 548 | const SqueezeExcite1dConfig & SqueezeExcite1dModule::config() const noexcept { |
| 549 | return config_; |
nothing calls this directly
no test coverage detected