Free cookie consent management tool by TermsFeed Policy Generator

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

#1967 implemented possible benchmark instances for covariance evolution

Location:
branches/HeuristicLab.Problems.GaussianProcessTuning/HeuristicLab.Problems.Instances.DataAnalysis.GaussianProcessRegression
Files:
6 added
1 deleted
2 edited
1 moved

Legend:

Unmodified
Added
Removed
  • 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.