From cf156afa685f8e211cd77e1360bfed215f7ed6a0 Mon Sep 17 00:00:00 2001 From: Davis King Date: Tue, 20 Oct 2009 23:02:35 +0000 Subject: [PATCH] Fixed tabbing. --HG-- extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403260 --- examples/model_selection_ex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/model_selection_ex.cpp b/examples/model_selection_ex.cpp index ce6cd6dee..8beec0ec8 100644 --- a/examples/model_selection_ex.cpp +++ b/examples/model_selection_ex.cpp @@ -164,7 +164,7 @@ int main() // with 2 rows and 16 columns where each column represents one of our points. matrix params = cartesian_product(logspace(log10(5.0), log10(1e-5), 4), // gamma parameter logspace(log10(max_nu), log10(1e-5), 4) // nu parameter - ); + ); // As an aside, if you wanted to do a grid search over points of dimensionality more than two // you would just nest calls to cartesian_product(). You can also use linspace() to generate // linearly spaced points if that is more appropriate for the parameters you are working with.