init_rules_traits.hpp
Go to the documentation of this file.
1 
13 #ifndef MLPACK_METHODS_ANN_INIT_RULES_INIT_RULES_TRAITS_HPP
14 #define MLPACK_METHODS_ANN_INIT_RULES_INIT_RULES_TRAITS_HPP
15 
16 namespace mlpack {
17 namespace ann {
18 
27 template<typename InitRuleType>
29 {
30  public:
34  static const bool UseLayer = true;
35 };
36 
37 } // namespace ann
38 } // namespace mlpack
39 
40 #endif
Linear algebra utility functions, generally performed on matrices or vectors.
static const bool UseLayer
This is true if the initialization method is used for a single layer.
This is a template class that can provide information about various initialization methods...