Free cookie consent management tool by TermsFeed Policy Generator

Changeset 8879


Ignore:
Timestamp:
11/07/12 19:29:30 (12 years ago)
Author:
gkronber
Message:

#1967 implemented possible benchmark instances for covariance evolution

Location:
branches/HeuristicLab.Problems.GaussianProcessTuning
Files:
8 added
3 deleted
4 edited
1 moved

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.GaussianProcessTuning/HeuristicLab.Problems.GaussianProcessTuning.sln

    r8873 r8879  
    22Microsoft Visual Studio Solution File, Format Version 12.00
    33# Visual Studio 2012
    4 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Problems.GaussianProcessTuning", "HeuristicLab.Problems.GaussianProcessTuning\HeuristicLab.Problems.GaussianProcessTuning.csproj", "{9A04599C-D608-4240-8DA6-D41F51C515A3}"
     4Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GaussianProcessTuning", "HeuristicLab.Problems.GaussianProcessTuning\GaussianProcessTuning.csproj", "{9A04599C-D608-4240-8DA6-D41F51C515A3}"
    55  ProjectSection(ProjectDependencies) = postProject
    66    {94C7714E-29D4-4D6D-B213-2C18D627AB75} = {94C7714E-29D4-4D6D-B213-2C18D627AB75}
    77  EndProjectSection
    88EndProject
    9 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Problems.GaussianProcessTuning.Tests", "HeuristicLab.Problems.GaussianProcessTuning.Tests\HeuristicLab.Problems.GaussianProcessTuning.Tests.csproj", "{98C8AD2B-B035-4863-A01E-B659465FF6B2}"
     9Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GaussianProcessTuning.Tests", "HeuristicLab.Problems.GaussianProcessTuning.Tests\GaussianProcessTuning.Tests.csproj", "{98C8AD2B-B035-4863-A01E-B659465FF6B2}"
    1010  ProjectSection(ProjectDependencies) = postProject
    1111    {94C7714E-29D4-4D6D-B213-2C18D627AB75} = {94C7714E-29D4-4D6D-B213-2C18D627AB75}
     
    1919  EndProjectSection
    2020EndProject
    21 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Problems.Instances.DataAnalysis.GaussianProcessRegression-3.3", "HeuristicLab.Problems.Instances.DataAnalysis.GaussianProcessRegression\HeuristicLab.Problems.Instances.DataAnalysis.GaussianProcessRegression-3.3.csproj", "{94C7714E-29D4-4D6D-B213-2C18D627AB75}"
     21Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Instances.DataAnalysis.GaussianProcessRegression-3.3", "HeuristicLab.Problems.Instances.DataAnalysis.GaussianProcessRegression\Instances.DataAnalysis.GaussianProcessRegression-3.3.csproj", "{94C7714E-29D4-4D6D-B213-2C18D627AB75}"
    2222EndProject
    2323Global
  • branches/HeuristicLab.Problems.GaussianProcessTuning/HeuristicLab.Problems.GaussianProcessTuning/Plugin.cs

    r8753 r8879  
    44namespace HeuristicLab.Problems.GaussianProcessTuning {
    55  [Plugin("HeuristicLab.Problems.GaussianProcessTuning", "Gaussian process configuration problem for genetic programming", "1.0.0")]
    6   [PluginFile("HeuristicLab.Problems.GaussianProcessTuning-1.0.exe", PluginFileType.Assembly)]
     6  [PluginFile("HeuristicLab.Problems.GaussianProcessTuning-1.0.dll", PluginFileType.Assembly)]
     7  [PluginDependency("HeuristicLab.ALGLIB", "3.6.0")]
     8  [PluginDependency("HeuristicLab.Algorithms.DataAnalysis", "3.4")]
     9  [PluginDependency("HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm", "3.3")]
     10  [PluginDependency("HeuristicLab.Collections", "3.3")]
     11  [PluginDependency("HeuristicLab.Common", "3.3")]
     12  [PluginDependency("HeuristicLab.Common.Resources", "3.3")]
     13  [PluginDependency("HeuristicLab.Core", "3.3")]
     14  [PluginDependency("HeuristicLab.Core.Views", "3.3")]
    715  [PluginDependency("HeuristicLab.Data", "3.3")]
    8   [PluginDependency("HeuristicLab.Core", "3.3")]
    9   [PluginDependency("HeuristicLab.Common", "3.3")]
    1016  [PluginDependency("HeuristicLab.Encodings.SymbolicExpressionTreeEncoding", "3.4")]
     17  [PluginDependency("HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views", "3.4")]
     18  [PluginDependency("HeuristicLab.MainForm", "3.3")]
     19  [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")]
     20  [PluginDependency("HeuristicLab.Operators", "3.3")]
     21  [PluginDependency("HeuristicLab.Optimization", "3.3")]
     22  [PluginDependency("HeuristicLab.Optimization.Operators", "3.3")]
    1123  [PluginDependency("HeuristicLab.Parameters", "3.3")]
    1224  [PluginDependency("HeuristicLab.Persistence", "3.3")]
     25  [PluginDependency("HeuristicLab.Problems.DataAnalysis", "3.4")]
     26  [PluginDependency("HeuristicLab.Problems.DataAnalysis.Symbolic", "3.4")]
     27  [PluginDependency("HeuristicLab.Problems.DataAnalysis.Symbolic.Regression", "3.4")]
     28  [PluginDependency("HeuristicLab.Random", "3.3")]
     29  [PluginDependency("HeuristicLab.Selection", "3.3")]
     30  [PluginDependency("HeuristicLab.SequentialEngine", "3.3")]
    1331  public class HeuristicLabProblemsGaussianProcessTuningPlugin : PluginBase {
    1432  }
  • branches/HeuristicLab.Problems.GaussianProcessTuning/HeuristicLab.Problems.Instances.DataAnalysis.GaussianProcessRegression/GaussianProcessSEIso1.cs

    r8873 r8879  
    2727
    2828namespace HeuristicLab.Problems.Instances.DataAnalysis {
    29   public class GaussianProcessSEIso2dim : ArtificialRegressionDataDescriptor {
     29  public class GaussianProcessSEIso1 : ArtificialRegressionDataDescriptor {
    3030
    3131    public override string Name {
    3232      get {
    33         return "Gaussian Process 2-dimensional SEiso";
     33        return "Gaussian Process SEiso 1";
    3434      }
    3535    }
  • branches/HeuristicLab.Problems.GaussianProcessTuning/HeuristicLab.Problems.Instances.DataAnalysis.GaussianProcessRegression/Plugin.cs.frame

    r8873 r8879  
    2525  [Plugin("HeuristicLab.Problems.Instances.DataAnalysis.GaussianProcessRegression", "3.3.7.$WCREV$")]
    2626  [PluginFile("HeuristicLab.Problems.Instances.DataAnalysis.GaussianProcessRegression-3.3.dll", PluginFileType.Assembly)]
     27  [PluginDependency("HeuristicLab.ALGLIB", "3.6.0")]
     28  [PluginDependency("HeuristicLab.Algorithm.DataAnalysis", "3.4")]
     29  [PluginDependency("HeuristicLab.Collections", "3.3")]
    2730  [PluginDependency("HeuristicLab.Common", "3.3")]
    2831  [PluginDependency("HeuristicLab.Core", "3.3")]
    2932  [PluginDependency("HeuristicLab.Data", "3.3")]
     33  [PluginDependency("HeuristicLab.Persistence", "3.3")]
    3034  [PluginDependency("HeuristicLab.Problems.DataAnalysis", "3.4")]
     35  [PluginDependency("HeuristicLab.Problems.DataAnalysis.Symbolic", "3.4")]
    3136  [PluginDependency("HeuristicLab.Problems.Instances", "3.3")]
     37  [PluginDependency("HeuristicLab.Problems.Instances.DataAnalysis", "3.3")]
    3238  [PluginDependency("HeuristicLab.Random", "3.3")]
    3339  public class HeuristicLabProblemsInstancesDataAnalysisGaussianProcessRegressionPlugin : PluginBase {
  • branches/HeuristicLab.Problems.GaussianProcessTuning/HeuristicLab.Problems.Instances.DataAnalysis.GaussianProcessRegression/VariousInstanceProvider.cs

    r8873 r8879  
    4040    public override IEnumerable<IDataDescriptor> GetDataDescriptors() {
    4141      List<IDataDescriptor> descriptorList = new List<IDataDescriptor>();
     42      descriptorList.Add(new GaussianProcessSEIso());
     43      descriptorList.Add(new GaussianProcessSEIso1());
     44      descriptorList.Add(new GaussianProcessSEIso2());
     45      descriptorList.Add(new GaussianProcessSEIso3());
     46      descriptorList.Add(new GaussianProcessSEIso4());
     47      descriptorList.Add(new GaussianProcessSEIso5());
     48      descriptorList.Add(new GaussianProcessSEIso6());
    4249      descriptorList.Add(new GaussianProcessPolyTen());
    43       descriptorList.Add(new GaussianProcessSEIso());
    44       descriptorList.Add(new GaussianProcessSEIso2dim());
    4550      descriptorList.Add(new GaussianProcessSEIsoDependentNoise());
    4651      return descriptorList;
Note: See TracChangeset for help on using the changeset viewer.