mlpack 3.4.2
border_modes.hpp
Go to the documentation of this file.
1
13#ifndef MLPACK_METHODS_ANN_CONVOLUTION_RULES_BORDER_MODES_HPP
14#define MLPACK_METHODS_ANN_CONVOLUTION_RULES_BORDER_MODES_HPP
15
16namespace mlpack {
17namespace ann {
18
19/*
20 * The FullConvolution class represents the full two-dimensional convolution.
21 */
22class FullConvolution { /* Nothing to do here */ };
23
24/*
25 * The ValidConvolution represents only those parts of the convolution that are
26 * computed without the zero-padded edges.
27 */
28class ValidConvolution { /* Nothing to do here */ };
29
30} // namespace ann
31} // namespace mlpack
32
33#endif
Linear algebra utility functions, generally performed on matrices or vectors.
Definition: cv.hpp:1