Home
Get Started
Documentation
Community
Google Summer of Code
FAQ
GitHub
Home
Get Started
Documentation
Community
Google Summer of Code
FAQ
GitHub
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
16
namespace
mlpack
{
17
namespace
ann {
18
19
/*
20
* The FullConvolution class represents the full two-dimensional convolution.
21
*/
22
class
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
*/
28
class
ValidConvolution
{
/* Nothing to do here */
};
29
30
}
// namespace ann
31
}
// namespace mlpack
32
33
#endif
mlpack
Linear algebra utility functions, generally performed on matrices or vectors.
Definition:
add_to_cli11.hpp:21
mlpack::ann::ValidConvolution
Definition:
border_modes.hpp:28
mlpack::ann::FullConvolution
Definition:
border_modes.hpp:22