From 4c5c7739d4b4b888b4bc005dff23f12bf6c48ea9 Mon Sep 17 00:00:00 2001 From: marcus Date: Sun, 31 Jan 2016 23:22:54 +0100 Subject: [PATCH] Add the sparse autoencoder to the network traits. --- src/mlpack/methods/ann/network_traits.hpp | 5 +++++ 1 file changed, 5 insertions(+) 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