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 |
|
---|
22 | using System;
|
---|
23 | using System.Linq;
|
---|
24 | using System.Threading;
|
---|
25 | using HeuristicLab.Common;
|
---|
26 | using HeuristicLab.Problems.DataAnalysis;
|
---|
27 | using HeuristicLab.Problems.Instances.DataAnalysis;
|
---|
28 | using Microsoft.VisualStudio.TestTools.UnitTesting;
|
---|
29 |
|
---|
30 | namespace 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 |
|
---|
53 | alg.Problem = new RegressionProblem();
|
---|
54 | var provider = new RegressionCSVInstanceProvider();
|
---|
55 | var problemData = (RegressionProblemData)provider.ImportData(@"Test Resources\co2.txt");
|
---|
56 | problemData.TargetVariableParameter.ActualValue = problemData.TargetVariableParameter.ValidValues.First(x => x.Value == "interpolated");
|
---|
57 | problemData.InputVariables.SetItemCheckedState(problemData.InputVariables.First(x => x.Value == "year"), false);
|
---|
58 | problemData.InputVariables.SetItemCheckedState(problemData.InputVariables.First(x => x.Value == "month"), false);
|
---|
59 | problemData.InputVariables.SetItemCheckedState(problemData.InputVariables.First(x => x.Value == "average"), false);
|
---|
60 | problemData.InputVariables.SetItemCheckedState(problemData.InputVariables.First(x => x.Value == "interpolated"), false);
|
---|
61 | problemData.InputVariables.SetItemCheckedState(problemData.InputVariables.First(x => x.Value == "trend"), false);
|
---|
62 | problemData.InputVariables.SetItemCheckedState(problemData.InputVariables.First(x => x.Value == "#days"), false);
|
---|
63 |
|
---|
64 | alg.Problem.ProblemDataParameter.Value = problemData;
|
---|
65 |
|
---|
66 | alg.ExceptionOccurred += new EventHandler<EventArgs<Exception>>(cv_ExceptionOccurred);
|
---|
67 | alg.Stopped += new EventHandler(cv_Stopped);
|
---|
68 |
|
---|
69 | alg.Prepare();
|
---|
70 | alg.Start();
|
---|
71 | trigger.WaitOne();
|
---|
72 | if (ex != null) throw ex;
|
---|
73 |
|
---|
74 | TestContext.WriteLine("Runtime: {0}", alg.ExecutionTime.ToString());
|
---|
75 | }
|
---|
76 |
|
---|
77 | private void cv_ExceptionOccurred(object sender, EventArgs<Exception> e) {
|
---|
78 | ex = e.Value;
|
---|
79 | }
|
---|
80 |
|
---|
81 | private void cv_Stopped(object sender, EventArgs e) {
|
---|
82 | trigger.Set();
|
---|
83 | }
|
---|
84 | }
|
---|
85 | }
|
---|