\brief Add a multi-dimension deconvolution layer to the network. \param input The input tensor to the layer. \param nbOutputMaps The number of output feature maps. \param kernelSize The multi-dimensions of the deconvolution kernel. \param kernelWeights The kernel weights for the deconvolution. \param biasWeights The bias weights for the deconvolution. Weights{} represents no bias. \see IDeconvol
| 7818 | //! \return The new deconvolution layer, or nullptr if it could not be created. |
| 7819 | //! |
| 7820 | IDeconvolutionLayer* addDeconvolutionNd( |
| 7821 | ITensor& input, int32_t nbOutputMaps, Dims kernelSize, Weights kernelWeights, Weights biasWeights) noexcept |
| 7822 | { |
| 7823 | return mImpl->addDeconvolutionNd(input, nbOutputMaps, kernelSize, kernelWeights, biasWeights); |
| 7824 | } |
| 7825 | |
| 7826 | //! |
| 7827 | //! \brief Add a multi-dimension scale layer to the network. |