\brief Set the bias weights for the deconvolution. Bias is optional. To omit bias, set the count value of the weights structure to zero. The bias is applied per-feature-map, so the number of weights (if non-zero) must be equal to the number of output feature maps. \see getBiasWeights()
| 2651 | //! \see getBiasWeights() |
| 2652 | //! |
| 2653 | void setBiasWeights(Weights weights) noexcept |
| 2654 | { |
| 2655 | mImpl->setBiasWeights(weights); |
| 2656 | } |
| 2657 | |
| 2658 | //! |
| 2659 | //! \brief Get the bias weights for the deconvolution. |
nothing calls this directly
no test coverage detected