diff --git a/src/mlpack/methods/ann/network_traits.hpp b/src/mlpack/methods/ann/network_traits.hpp index ec7dbbcb24..ebb199abe8 100644 --- a/src/mlpack/methods/ann/network_traits.hpp +++ b/src/mlpack/methods/ann/network_traits.hpp @@ -36,6 +36,11 @@ class NetworkTraits * This is true if the network is a convolutional neural network. */ static const bool IsCNN = false; + + /** + * This is true if the network is a sparse autoencoder. + */ + static const bool IsSAE = false; }; } // namespace ann