[mlpack-svn] r15422 - mlpack/conf/jenkins-conf/benchmark/methods/mlpack

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Fri Jul 5 15:53:24 EDT 2013


Author: marcus
Date: Fri Jul  5 15:53:23 2013
New Revision: 15422

Log:
Use path env to set correct path.

Modified:
   mlpack/conf/jenkins-conf/benchmark/methods/mlpack/allkfn.py
   mlpack/conf/jenkins-conf/benchmark/methods/mlpack/allknn.py
   mlpack/conf/jenkins-conf/benchmark/methods/mlpack/allkrann.py
   mlpack/conf/jenkins-conf/benchmark/methods/mlpack/det.py
   mlpack/conf/jenkins-conf/benchmark/methods/mlpack/emst.py
   mlpack/conf/jenkins-conf/benchmark/methods/mlpack/fastmks.py
   mlpack/conf/jenkins-conf/benchmark/methods/mlpack/gmm.py
   mlpack/conf/jenkins-conf/benchmark/methods/mlpack/hmm_generate.py
   mlpack/conf/jenkins-conf/benchmark/methods/mlpack/hmm_loglik.py
   mlpack/conf/jenkins-conf/benchmark/methods/mlpack/hmm_train.py
   mlpack/conf/jenkins-conf/benchmark/methods/mlpack/hmm_viterbi.py
   mlpack/conf/jenkins-conf/benchmark/methods/mlpack/kernel_pca.py
   mlpack/conf/jenkins-conf/benchmark/methods/mlpack/kmeans.py
   mlpack/conf/jenkins-conf/benchmark/methods/mlpack/lars.py
   mlpack/conf/jenkins-conf/benchmark/methods/mlpack/linear_regression.py
   mlpack/conf/jenkins-conf/benchmark/methods/mlpack/local_coordinate_coding.py
   mlpack/conf/jenkins-conf/benchmark/methods/mlpack/lsh.py
   mlpack/conf/jenkins-conf/benchmark/methods/mlpack/nbc.py
   mlpack/conf/jenkins-conf/benchmark/methods/mlpack/nca.py
   mlpack/conf/jenkins-conf/benchmark/methods/mlpack/nmf.py
   mlpack/conf/jenkins-conf/benchmark/methods/mlpack/pca.py
   mlpack/conf/jenkins-conf/benchmark/methods/mlpack/range_search.py
   mlpack/conf/jenkins-conf/benchmark/methods/mlpack/sparse_coding.py

Modified: mlpack/conf/jenkins-conf/benchmark/methods/mlpack/allkfn.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/methods/mlpack/allkfn.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/methods/mlpack/allkfn.py	Fri Jul  5 15:53:23 2013
@@ -36,7 +36,7 @@
   @param path - Path to the mlpack executable.
   @param verbose - Display informational messages.
 	'''
-	def __init__(self, dataset, path="", verbose=True): 
+	def __init__(self, dataset, path=os.environ["MLPACK_BIN"], verbose=True): 
 		self.verbose = verbose
 		self.dataset = dataset
 		self.path = path

Modified: mlpack/conf/jenkins-conf/benchmark/methods/mlpack/allknn.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/methods/mlpack/allknn.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/methods/mlpack/allknn.py	Fri Jul  5 15:53:23 2013
@@ -36,7 +36,7 @@
   @param path - Path to the mlpack executable.
   @param verbose - Display informational messages.
 	'''
-	def __init__(self, dataset, path="", verbose=True): 
+	def __init__(self, dataset, path=os.environ["MLPACK_BIN"], verbose=True): 
 		self.verbose = verbose
 		self.dataset = dataset
 		self.path = path

Modified: mlpack/conf/jenkins-conf/benchmark/methods/mlpack/allkrann.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/methods/mlpack/allkrann.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/methods/mlpack/allkrann.py	Fri Jul  5 15:53:23 2013
@@ -36,7 +36,7 @@
   @param path - Path to the mlpack executable.
   @param verbose - Display informational messages.
 	'''
-	def __init__(self, dataset, path="", verbose=True): 
+	def __init__(self, dataset, path=os.environ["MLPACK_BIN"], verbose=True): 
 		self.verbose = verbose
 		self.dataset = dataset
 		self.path = path

Modified: mlpack/conf/jenkins-conf/benchmark/methods/mlpack/det.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/methods/mlpack/det.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/methods/mlpack/det.py	Fri Jul  5 15:53:23 2013
@@ -38,7 +38,7 @@
   @param path - Path to the mlpack executable.
   @param verbose - Display informational messages.
 	'''
-	def __init__(self, dataset, path="", verbose=True): 
+	def __init__(self, dataset, path=os.environ["MLPACK_BIN"], verbose=True): 
 		self.verbose = verbose
 		self.dataset = dataset
 		self.path = path

Modified: mlpack/conf/jenkins-conf/benchmark/methods/mlpack/emst.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/methods/mlpack/emst.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/methods/mlpack/emst.py	Fri Jul  5 15:53:23 2013
@@ -36,7 +36,7 @@
   @param path - Path to the mlpack executable.
   @param verbose - Display informational messages.
 	'''
-	def __init__(self, dataset, path="", verbose=True): 
+	def __init__(self, dataset, path=os.environ["MLPACK_BIN"], verbose=True): 
 		self.verbose = verbose
 		self.dataset = dataset
 		self.path = path

Modified: mlpack/conf/jenkins-conf/benchmark/methods/mlpack/fastmks.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/methods/mlpack/fastmks.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/methods/mlpack/fastmks.py	Fri Jul  5 15:53:23 2013
@@ -36,7 +36,7 @@
   @param path - Path to the mlpack executable.
   @param verbose - Display informational messages.
 	'''
-	def __init__(self, dataset, path="", verbose=True): 
+	def __init__(self, dataset, path=os.environ["MLPACK_BIN"], verbose=True): 
 		self.verbose = verbose
 		self.dataset = dataset
 		self.path = path

Modified: mlpack/conf/jenkins-conf/benchmark/methods/mlpack/gmm.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/methods/mlpack/gmm.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/methods/mlpack/gmm.py	Fri Jul  5 15:53:23 2013
@@ -36,7 +36,7 @@
   @param path - Path to the mlpack executable.
   @param verbose - Display informational messages.
 	'''
-	def __init__(self, dataset, path="", verbose=True): 
+	def __init__(self, dataset, path=os.environ["MLPACK_BIN"], verbose=True): 
 		self.verbose = verbose
 		self.dataset = dataset
 		self.path = path

Modified: mlpack/conf/jenkins-conf/benchmark/methods/mlpack/hmm_generate.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/methods/mlpack/hmm_generate.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/methods/mlpack/hmm_generate.py	Fri Jul  5 15:53:23 2013
@@ -36,7 +36,7 @@
   @param path - Path to the mlpack executable.
   @param verbose - Display informational messages.
 	'''
-	def __init__(self, dataset, path="", verbose=True): 
+	def __init__(self, dataset, path=os.environ["MLPACK_BIN"], verbose=True): 
 		self.verbose = verbose
 		self.dataset = dataset
 		self.path = path

Modified: mlpack/conf/jenkins-conf/benchmark/methods/mlpack/hmm_loglik.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/methods/mlpack/hmm_loglik.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/methods/mlpack/hmm_loglik.py	Fri Jul  5 15:53:23 2013
@@ -31,7 +31,7 @@
 
 	# Create the Hidden Markov Model Training instance, show some informations and
 	# return the instance.
-	def __init__(self, dataset, path="", verbose=True): 
+	def __init__(self, dataset, path=os.environ["MLPACK_BIN"], verbose=True): 
 		self.verbose = verbose
 		self.dataset = dataset
 		self.path = path

Modified: mlpack/conf/jenkins-conf/benchmark/methods/mlpack/hmm_train.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/methods/mlpack/hmm_train.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/methods/mlpack/hmm_train.py	Fri Jul  5 15:53:23 2013
@@ -36,7 +36,7 @@
   @param path - Path to the mlpack executable.
   @param verbose - Display informational messages.
 	'''
-	def __init__(self, dataset, path="", verbose=True): 
+	def __init__(self, dataset, path=os.environ["MLPACK_BIN"], verbose=True): 
 		self.verbose = verbose
 		self.dataset = dataset
 		self.path = path

Modified: mlpack/conf/jenkins-conf/benchmark/methods/mlpack/hmm_viterbi.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/methods/mlpack/hmm_viterbi.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/methods/mlpack/hmm_viterbi.py	Fri Jul  5 15:53:23 2013
@@ -32,7 +32,7 @@
 
 	# Create the HHidden Markov Model Viterbi State Prediction instance, show some
 	# informations and return the instance.
-	def __init__(self, dataset, path="", verbose=True): 
+	def __init__(self, dataset, path=os.environ["MLPACK_BIN"], verbose=True): 
 		self.verbose = verbose
 		self.dataset = dataset
 		self.path = path

Modified: mlpack/conf/jenkins-conf/benchmark/methods/mlpack/kernel_pca.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/methods/mlpack/kernel_pca.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/methods/mlpack/kernel_pca.py	Fri Jul  5 15:53:23 2013
@@ -36,7 +36,7 @@
   @param path - Path to the mlpack executable.
   @param verbose - Display informational messages.
 	'''
-	def __init__(self, dataset, path="", verbose=True): 
+	def __init__(self, dataset, path=os.environ["MLPACK_BIN"], verbose=True): 
 		self.verbose = verbose
 		self.dataset = dataset
 		self.path = path

Modified: mlpack/conf/jenkins-conf/benchmark/methods/mlpack/kmeans.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/methods/mlpack/kmeans.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/methods/mlpack/kmeans.py	Fri Jul  5 15:53:23 2013
@@ -36,7 +36,7 @@
   @param path - Path to the mlpack executable.
   @param verbose - Display informational messages.
 	'''
-	def __init__(self, dataset, path="", verbose=True): 
+	def __init__(self, dataset, path=os.environ["MLPACK_BIN"], verbose=True): 
 		self.verbose = verbose
 		self.dataset = dataset
 		self.path = path

Modified: mlpack/conf/jenkins-conf/benchmark/methods/mlpack/lars.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/methods/mlpack/lars.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/methods/mlpack/lars.py	Fri Jul  5 15:53:23 2013
@@ -36,7 +36,7 @@
   @param path - Path to the mlpack executable.
   @param verbose - Display informational messages.
 	'''
-	def __init__(self, dataset, path="", verbose=True): 
+	def __init__(self, dataset, path=os.environ["MLPACK_BIN"], verbose=True): 
 		self.verbose = verbose
 		self.dataset = dataset
 		self.path = path

Modified: mlpack/conf/jenkins-conf/benchmark/methods/mlpack/linear_regression.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/methods/mlpack/linear_regression.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/methods/mlpack/linear_regression.py	Fri Jul  5 15:53:23 2013
@@ -36,7 +36,7 @@
   @param path - Path to the mlpack executable.
   @param verbose - Display informational messages.
 	'''
-	def __init__(self, dataset, path="", verbose=True): 
+	def __init__(self, dataset, path=os.environ["MLPACK_BIN"], verbose=True): 
 		self.verbose = verbose
 		self.dataset = dataset
 		self.path = path

Modified: mlpack/conf/jenkins-conf/benchmark/methods/mlpack/local_coordinate_coding.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/methods/mlpack/local_coordinate_coding.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/methods/mlpack/local_coordinate_coding.py	Fri Jul  5 15:53:23 2013
@@ -36,7 +36,7 @@
   @param path - Path to the mlpack executable.
   @param verbose - Display informational messages.
 	'''
-	def __init__(self, dataset, path="", verbose=True): 
+	def __init__(self, dataset, path=os.environ["MLPACK_BIN"], verbose=True): 
 		self.verbose = verbose
 		self.dataset = dataset
 		self.path = path

Modified: mlpack/conf/jenkins-conf/benchmark/methods/mlpack/lsh.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/methods/mlpack/lsh.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/methods/mlpack/lsh.py	Fri Jul  5 15:53:23 2013
@@ -37,7 +37,7 @@
   @param path - Path to the mlpack executable.
   @param verbose - Display informational messages.
 	'''
-	def __init__(self, dataset, path="", verbose=True): 
+	def __init__(self, dataset, path=os.environ["MLPACK_BIN"], verbose=True): 
 		self.verbose = verbose
 		self.dataset = dataset
 		self.path = path

Modified: mlpack/conf/jenkins-conf/benchmark/methods/mlpack/nbc.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/methods/mlpack/nbc.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/methods/mlpack/nbc.py	Fri Jul  5 15:53:23 2013
@@ -36,7 +36,7 @@
   @param path - Path to the mlpack executable.
   @param verbose - Display informational messages.
 	'''
-	def __init__(self, dataset, path="", verbose=True): 
+	def __init__(self, dataset, path=os.environ["MLPACK_BIN"], verbose=True): 
 		self.verbose = verbose
 		self.dataset = dataset
 		self.path = path

Modified: mlpack/conf/jenkins-conf/benchmark/methods/mlpack/nca.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/methods/mlpack/nca.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/methods/mlpack/nca.py	Fri Jul  5 15:53:23 2013
@@ -36,7 +36,7 @@
   @param path - Path to the mlpack executable.
   @param verbose - Display informational messages.
 	'''
-	def __init__(self, dataset, path="", verbose=True): 
+	def __init__(self, dataset, path=os.environ["MLPACK_BIN"], verbose=True): 
 		self.verbose = verbose
 		self.dataset = dataset
 		self.path = path

Modified: mlpack/conf/jenkins-conf/benchmark/methods/mlpack/nmf.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/methods/mlpack/nmf.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/methods/mlpack/nmf.py	Fri Jul  5 15:53:23 2013
@@ -36,7 +36,7 @@
   @param path - Path to the mlpack executable.
   @param verbose - Display informational messages.
 	'''
-	def __init__(self, dataset, path="", verbose=True): 
+	def __init__(self, dataset, path=os.environ["MLPACK_BIN"], verbose=True): 
 		self.verbose = verbose
 		self.dataset = dataset
 		self.path = path

Modified: mlpack/conf/jenkins-conf/benchmark/methods/mlpack/pca.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/methods/mlpack/pca.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/methods/mlpack/pca.py	Fri Jul  5 15:53:23 2013
@@ -37,7 +37,7 @@
   @param path - Path to the mlpack executable.
   @param verbose - Display informational messages.
 	'''
-	def __init__(self, dataset, path="", verbose=True): 
+	def __init__(self, dataset, path=os.environ["MLPACK_BIN"], verbose=True): 
 		self.verbose = verbose
 		self.dataset = dataset
 		self.path = path

Modified: mlpack/conf/jenkins-conf/benchmark/methods/mlpack/range_search.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/methods/mlpack/range_search.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/methods/mlpack/range_search.py	Fri Jul  5 15:53:23 2013
@@ -36,7 +36,7 @@
   @param path - Path to the mlpack executable.
   @param verbose - Display informational messages.
 	'''
-	def __init__(self, dataset, path="", verbose=True): 
+	def __init__(self, dataset, path=os.environ["MLPACK_BIN"], verbose=True): 
 		self.verbose = verbose
 		self.dataset = dataset
 		self.path = path

Modified: mlpack/conf/jenkins-conf/benchmark/methods/mlpack/sparse_coding.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/methods/mlpack/sparse_coding.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/methods/mlpack/sparse_coding.py	Fri Jul  5 15:53:23 2013
@@ -36,7 +36,7 @@
   @param path - Path to the mlpack executable.
   @param verbose - Display informational messages.
 	'''
-	def __init__(self, dataset, path="", verbose=True): 
+	def __init__(self, dataset, path=os.environ["MLPACK_BIN"], verbose=True): 
 		self.verbose = verbose
 		self.dataset = dataset
 		self.path = path



More information about the mlpack-svn mailing list