MLPACK
1.0.4
|
00001 00024 #ifndef __MLPACK_METHODS_SPARSE_CODING_NOTHING_INITIALIZER_HPP 00025 #define __MLPACK_METHODS_SPARSE_CODING_NOTHING_INITIALIZER_HPP 00026 00027 #include <mlpack/core.hpp> 00028 00029 namespace mlpack { 00030 namespace sparse_coding { 00031 00037 class NothingInitializer 00038 { 00039 public: 00045 static void Initialize(const arma::mat& /* data */, 00046 const size_t /* atoms */, 00047 arma::mat& /* dictionary */) 00048 { 00049 // Do nothing! 00050 } 00051 }; 00052 00053 }; // namespace sparse_coding 00054 }; // namespace mlpack 00055 00056 #endif