56c7459
diff -up ./tools/easy.py.toolsDir ./tools/easy.py
0f3e08b
--- ./tools/easy.py.toolsDir	2013-03-31 17:06:49.000000000 +1000
0f3e08b
+++ ./tools/easy.py	2013-04-13 23:17:53.399526910 +1000
56c7459
@@ -12,10 +12,10 @@ if len(sys.argv) <= 1:
e6b06f5
56c7459
 is_win32 = (sys.platform == 'win32')
56c7459
 if not is_win32:
56c7459
-	svmscale_exe = "../svm-scale"
56c7459
-	svmtrain_exe = "../svm-train"
56c7459
-	svmpredict_exe = "../svm-predict"
56c7459
-	grid_py = "./grid.py"
56c7459
+	svmscale_exe = "/usr/bin/svm-scale"
56c7459
+	svmtrain_exe = "/usr/bin/svm-train"
56c7459
+	svmpredict_exe = "/usr/bin/svm-predict"
921d062
+	grid_py = "/usr/bin/svm-grid.py"
56c7459
 	gnuplot_exe = "/usr/bin/gnuplot"
56c7459
 else:
56c7459
         # example for windows
56c7459
diff -up ./tools/grid.py.toolsDir ./tools/grid.py
0f3e08b
--- ./tools/grid.py.toolsDir	2013-03-31 17:06:50.000000000 +1000
0f3e08b
+++ ./tools/grid.py	2013-04-13 23:18:53.964522769 +1000
0f3e08b
@@ -18,7 +18,7 @@ class GridOption:
0f3e08b
 	def __init__(self, dataset_pathname, options):
0f3e08b
 		dirname = os.path.dirname(__file__)
0f3e08b
 		if sys.platform != 'win32':
0f3e08b
-			self.svmtrain_pathname = os.path.join(dirname, '../svm-train')
0f3e08b
+			self.svmtrain_pathname = '/usr/bin/svm-train'
0f3e08b
 			self.gnuplot_pathname = '/usr/bin/gnuplot'
0f3e08b
 		else:
0f3e08b
 			# example for windows