Changeset 17428
- Timestamp:
- 02/07/20 09:28:53 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Tests/HeuristicLab-3.3/Samples/GaussianProcessRegressionSampleTest.cs
r17180 r17428 68 68 gpr.Problem = regProblem; 69 69 70 gpr.CovarianceFunction = new CovarianceSquaredExponentialIso();71 gpr.MeanFunction = new MeanConst();70 gpr.CovarianceFunction = gpr.CovarianceFunctionParameter.ValidValues.OfType<CovarianceSquaredExponentialIso>().First(); 71 gpr.MeanFunction = gpr.MeanFunctionParameter.ValidValues.OfType<MeanConst>().First(); 72 72 gpr.MinimizationIterations = 20; 73 73 gpr.Seed = 0;
Note: See TracChangeset
for help on using the changeset viewer.