13 #ifndef MLPACK_METHODS_ANN_LAYER_MEAN_POOLING_HPP
14 #define MLPACK_METHODS_ANN_LAYER_MEAN_POOLING_HPP
30 typename InputDataType = arma::mat,
31 typename OutputDataType = arma::mat
49 const size_t kernelHeight,
50 const size_t strideWidth = 1,
51 const size_t strideHeight = 1,
52 const bool floor =
true);
62 void Forward(
const arma::Mat<eT>& input, arma::Mat<eT>& output);
75 const arma::Mat<eT>& gy,
84 OutputDataType
const&
Delta()
const {
return delta; }
86 OutputDataType&
Delta() {
return delta; }
135 bool const&
Floor()
const {
return floor; }
147 template<
typename Archive>
157 template<
typename eT>
158 void Pooling(
const arma::Mat<eT>& input, arma::Mat<eT>& output)
160 for (
size_t j = 0, colidx = 0; j < output.n_cols;
161 ++j, colidx += strideHeight)
163 for (
size_t i = 0, rowidx = 0; i < output.n_rows;
164 ++i, rowidx += strideWidth)
166 arma::mat subInput = input(
167 arma::span(rowidx, rowidx + kernelWidth - 1 - offset),
168 arma::span(colidx, colidx + kernelHeight - 1 - offset));
170 output(i, j) = arma::mean(arma::mean(subInput));
181 template<
typename eT>
182 void Unpooling(
const arma::Mat<eT>& input,
183 const arma::Mat<eT>& error,
184 arma::Mat<eT>& output)
186 const size_t rStep = input.n_rows / error.n_rows - offset;
187 const size_t cStep = input.n_cols / error.n_cols - offset;
189 arma::Mat<eT> unpooledError;
190 for (
size_t j = 0; j < input.n_cols - cStep; j += cStep)
192 for (
size_t i = 0; i < input.n_rows - rStep; i += rStep)
194 const arma::Mat<eT>& inputArea = input(arma::span(i, i + rStep - 1),
195 arma::span(j, j + cStep - 1));
197 unpooledError = arma::Mat<eT>(inputArea.n_rows, inputArea.n_cols);
198 unpooledError.fill(error(i / rStep, j / cStep) / inputArea.n_elem);
200 output(arma::span(i, i + rStep - 1 - offset),
201 arma::span(j, j + cStep - 1 - offset)) += unpooledError;
252 arma::cube outputTemp;
255 arma::cube inputTemp;
261 OutputDataType delta;
264 OutputDataType gradient;
267 OutputDataType outputParameter;
275 #include "mean_pooling_impl.hpp"