[9112] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2012 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.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using HeuristicLab.Algorithms.DataAnalysis;
|
---|
| 26 | using HeuristicLab.Random;
|
---|
| 27 |
|
---|
| 28 | namespace HeuristicLab.Problems.Instances.DataAnalysis {
|
---|
| 29 | public class GaussianProcessRegressionInstance : ArtificialRegressionDataDescriptor {
|
---|
| 30 |
|
---|
| 31 | public override string Name {
|
---|
[9124] | 32 | get { return "Gaussian Process " + name; }
|
---|
[9112] | 33 | }
|
---|
| 34 | public override string Description {
|
---|
| 35 | get { return ""; }
|
---|
| 36 | }
|
---|
| 37 | protected override string TargetVariable { get { return "Y"; } }
|
---|
[9124] | 38 | protected override string[] VariableNames { get { return new string[] { "X1", "Y" }; } }
|
---|
| 39 | protected override string[] AllowedInputVariables { get { return new string[] { "X1" }; } }
|
---|
[9112] | 40 | protected override int TrainingPartitionStart { get { return 0; } }
|
---|
[9124] | 41 | protected override int TrainingPartitionEnd { get { return 200; } }
|
---|
| 42 | protected override int TestPartitionStart { get { return 200; } }
|
---|
| 43 | protected override int TestPartitionEnd { get { return 400; } }
|
---|
[9112] | 44 |
|
---|
[9124] | 45 | private ParameterizedCovarianceFunction cov;
|
---|
| 46 | private string name;
|
---|
[9112] | 47 |
|
---|
[9124] | 48 | public GaussianProcessRegressionInstance(string name, ICovarianceFunction covarianceFunction, double[] hyp) {
|
---|
| 49 | this.name = name;
|
---|
[9622] | 50 | cov = covarianceFunction.GetParameterizedCovarianceFunction(hyp, Enumerable.Range(0, 1));
|
---|
[9112] | 51 | }
|
---|
| 52 |
|
---|
| 53 | protected override List<List<double>> GenerateValues() {
|
---|
| 54 |
|
---|
| 55 | List<List<double>> data = new List<List<double>>();
|
---|
| 56 | for (int i = 0; i < AllowedInputVariables.Count(); i++) {
|
---|
[9124] | 57 | data.Add(ValueGenerator.GenerateSteps(0, 0.99, 1.0 / TrainingPartitionEnd).ToList());
|
---|
| 58 | data[i].AddRange(ValueGenerator.GenerateSteps(-0.5, 1.5, 2.0 / (TestPartitionEnd - TestPartitionStart)).ToList());
|
---|
[9112] | 59 | }
|
---|
| 60 | var mt = new MersenneTwister();
|
---|
| 61 |
|
---|
| 62 |
|
---|
| 63 | var target = Util.SampleGaussianProcess(mt, cov, data);
|
---|
| 64 | data.Add(target);
|
---|
| 65 |
|
---|
| 66 | return data;
|
---|
| 67 | }
|
---|
| 68 | }
|
---|
| 69 | }
|
---|