[mlpack-svn] r16763 - in mlpack/trunk/src/mlpack: core/tree/cosine_tree tests

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Fri Jul 4 13:09:03 EDT 2014


Author: siddharth.950
Date: Fri Jul  4 13:09:03 2014
New Revision: 16763

Log:
Removed a few tabs.

Modified:
   mlpack/trunk/src/mlpack/core/tree/cosine_tree/cosine_tree.cpp
   mlpack/trunk/src/mlpack/tests/quic_svd_test.cpp

Modified: mlpack/trunk/src/mlpack/core/tree/cosine_tree/cosine_tree.cpp
==============================================================================
--- mlpack/trunk/src/mlpack/core/tree/cosine_tree/cosine_tree.cpp	(original)
+++ mlpack/trunk/src/mlpack/core/tree/cosine_tree/cosine_tree.cpp	Fri Jul  4 13:09:03 2014
@@ -284,7 +284,7 @@
   
   // Split columns into left and right children. The splitting condition for the
   // column to be in the left child is as follows:
-  // 			cos_max - cos(i) <= cos(i) - cos_min
+  //       cos_max - cos(i) <= cos(i) - cos_min
   for(size_t i = 0; i < numColumns; i++)
   {
     if(cosineMax - cosines(i) <= cosines(i) - cosineMin)

Modified: mlpack/trunk/src/mlpack/tests/quic_svd_test.cpp
==============================================================================
--- mlpack/trunk/src/mlpack/tests/quic_svd_test.cpp	(original)
+++ mlpack/trunk/src/mlpack/tests/quic_svd_test.cpp	Fri Jul  4 13:09:03 2014
@@ -24,8 +24,8 @@
   // Load the dataset.
   arma::mat dataset;
   data::Load("test_data_3_1000.csv", dataset);
-	
-	// Obtain the SVD using default parameters.
+
+  // Obtain the SVD using default parameters.
   arma::mat u, v, sigma;
   QUIC_SVD quicsvd(dataset, u, v, sigma);
   



More information about the mlpack-svn mailing list