Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Tests/HeuristicLab-3.3/Samples/GaussianProcessRegressionSampleTest.cs @ 11465

Last change on this file since 11465 was 11450, checked in by bburlacu, 10 years ago

#2211: Separated samples class into separate test classes. Added scripts unit tests (grid search classification/regression).

File size: 3.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System.IO;
23using System.Linq;
24using HeuristicLab.Algorithms.DataAnalysis;
25using HeuristicLab.Persistence.Default.Xml;
26using HeuristicLab.Problems.DataAnalysis;
27using HeuristicLab.Problems.Instances.DataAnalysis;
28using Microsoft.VisualStudio.TestTools.UnitTesting;
29
30namespace HeuristicLab.Tests {
31  /// <summary>
32  /// Summary description for GaussianProcessRegressionSampleTest
33  /// </summary>
34  [TestClass]
35  public class GaussianProcessRegressionSampleTest {
36    private const string samplesDirectory = SamplesUtils.Directory;
37    [ClassInitialize]
38    public static void MyClassInitialize(TestContext testContext) {
39      if (!Directory.Exists(samplesDirectory))
40        Directory.CreateDirectory(samplesDirectory);
41    }
42
43    [TestMethod]
44    [TestCategory("Samples.Create")]
45    [TestProperty("Time", "medium")]
46    public void CreateGaussianProcessRegressionSampleTest() {
47      var gpr = CreateGaussianProcessRegressionSample();
48      XmlGenerator.Serialize(gpr, @"Samples\GPR.hl");
49    }
50    [TestMethod]
51    [TestCategory("Samples.Execute")]
52    [TestProperty("Time", "long")]
53    public void RunGaussianProcessRegressionSample() {
54      var gpr = CreateGaussianProcessRegressionSample();
55      gpr.SetSeedRandomly = false;
56      gpr.Seed = 1618551877;
57      SamplesUtils.RunAlgorithm(gpr);
58      Assert.AreEqual(-940.39914958616748, SamplesUtils.GetDoubleResult(gpr, "NegativeLogLikelihood"));
59      Assert.AreEqual(0.995614091354263, SamplesUtils.GetDoubleResult(gpr, "Training R²"));
60    }
61
62    private GaussianProcessRegression CreateGaussianProcessRegressionSample() {
63      var gpr = new GaussianProcessRegression();
64      var provider = new VariousInstanceProvider();
65      var instance = provider.GetDataDescriptors().Where(x => x.Name.Contains("Spatial co-evolution")).Single();
66      var regProblem = new RegressionProblem();
67      regProblem.Load(provider.LoadData(instance));
68      #region Algorithm Configuration
69      gpr.Name = "Gaussian Process Regression";
70      gpr.Description = "A Gaussian process regression algorithm which solves the spatial co-evolution benchmark problem";
71      gpr.Problem = regProblem;
72
73      gpr.CovarianceFunction = new CovarianceSquaredExponentialIso();
74      gpr.MeanFunction = new MeanConst();
75      gpr.MinimizationIterations = 20;
76      gpr.Seed = 0;
77      gpr.SetSeedRandomly = true;
78      #endregion
79      gpr.Engine = new ParallelEngine.ParallelEngine();
80      return gpr;
81    }
82  }
83}
Note: See TracBrowser for help on using the repository browser.