Browse Source

minor correction for less default output

Alexander Freytag 11 years ago
parent
commit
c36326ec41
2 changed files with 1 additions and 2 deletions
  1. 0 1
      GPHIKClassifier.cpp
  2. 1 1
      matlab/plot1dExampleRegression.m

+ 0 - 1
GPHIKClassifier.cpp

@@ -414,7 +414,6 @@ void GPHIKClassifier::predictUncertainty( const NICE::SparseVector * example, do
     }
     case APPROXIMATE_FINE:
     {
-        std::cerr << "predict uncertainty fine" << std::endl;
       gphyper->computePredictiveVarianceApproximateFine( *example, uncertainty );
       break;
     }    

+ 1 - 1
matlab/plot1dExampleRegression.m

@@ -11,7 +11,7 @@ myValues = [0.3; 0.0; 1.0; 1.4];
 % init new GPHIKRegression object
 myGPHIKRegression = GPHIKRegression ( 'verbose', 'false', ...
     'optimization_method', 'none', ...
-    'varianceApproximation', 'approximate_fine',...
+    'varianceApproximation', 'exact',...
     'nrOfEigenvaluesToConsiderForVarApprox',1,...
     'uncertaintyPredictionForRegression', true, ...
     'noise', 0.000001 ...