Free cookie consent management tool by TermsFeed Policy Generator

source: branches/crossvalidation-2434/HeuristicLab.Tests/HeuristicLab.Algorithms.DataAnalysis-3.4/GaussianProcessRegressionTest.cs @ 14029

Last change on this file since 14029 was 14029, checked in by gkronber, 8 years ago

#2434: merged trunk changes r12934:14026 from trunk to branch

File size: 3.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 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;
23using System.Linq;
24using System.Threading;
25using HeuristicLab.Common;
26using HeuristicLab.Problems.DataAnalysis;
27using HeuristicLab.Problems.Instances.DataAnalysis;
28using Microsoft.VisualStudio.TestTools.UnitTesting;
29
30namespace HeuristicLab.Algorithms.DataAnalysis.Tests {
31  [TestClass]
32  public class GaussianProcessRegressionTest {
33    public GaussianProcessRegressionTest() { }
34
35    private TestContext testContextInstance;
36    public TestContext TestContext {
37      get { return testContextInstance; }
38      set { testContextInstance = value; }
39    }
40
41    private EventWaitHandle trigger = new AutoResetEvent(false);
42    private Exception ex;
43
44    [TestMethod]
45    [TestCategory("Algorithms.DataAnalysis")]
46    [TestProperty("Time", "long")]
47    public void GaussianProcessRegressionPerformanceTest() {
48      ex = null;
49
50      var alg = new GaussianProcessRegression();
51      alg.Engine = new HeuristicLab.SequentialEngine.SequentialEngine();
52      alg.SetSeedRandomly = false;
53
54      alg.Problem = new RegressionProblem();
55      var provider = new RegressionCSVInstanceProvider();
56      var problemData = (RegressionProblemData)provider.ImportData(@"Test Resources\co2.txt");
57      problemData.TargetVariableParameter.ActualValue = problemData.TargetVariableParameter.ValidValues.First(x => x.Value == "interpolated");
58      problemData.InputVariables.SetItemCheckedState(problemData.InputVariables.First(x => x.Value == "year"), false);
59      problemData.InputVariables.SetItemCheckedState(problemData.InputVariables.First(x => x.Value == "month"), false);
60      problemData.InputVariables.SetItemCheckedState(problemData.InputVariables.First(x => x.Value == "average"), false);
61      problemData.InputVariables.SetItemCheckedState(problemData.InputVariables.First(x => x.Value == "interpolated"), false);
62      problemData.InputVariables.SetItemCheckedState(problemData.InputVariables.First(x => x.Value == "trend"), false);
63      problemData.InputVariables.SetItemCheckedState(problemData.InputVariables.First(x => x.Value == "#days"), false);
64
65      alg.Problem.ProblemDataParameter.Value = problemData;
66
67      alg.ExceptionOccurred += new EventHandler<EventArgs<Exception>>(cv_ExceptionOccurred);
68      alg.Stopped += new EventHandler(cv_Stopped);
69
70      alg.Prepare();
71      alg.Start();
72      trigger.WaitOne();
73      if (ex != null) throw ex;
74
75      TestContext.WriteLine("Runtime: {0}", alg.ExecutionTime.ToString());
76    }
77
78    private void cv_ExceptionOccurred(object sender, EventArgs<Exception> e) {
79      ex = e.Value;
80    }
81
82    private void cv_Stopped(object sender, EventArgs e) {
83      trigger.Set();
84    }
85  }
86}
Note: See TracBrowser for help on using the repository browser.