Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/04/13 22:34:57 (12 years ago)
Author:
gkronber
Message:

#1967: worked on tuned GP model and benchmark instances

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.GaussianProcessTuning/HeuristicLab.Problems.Instances.DataAnalysis.GaussianProcessRegression/GaussianProcessPolyTen.cs

    r9099 r9112  
    4242    protected override string[] AllowedInputVariables { get { return new string[] { "X1", "X2", "X3", "X4", "X5", "X6", "X7", "X8", "X9", "X10" }; } }
    4343    protected override int TrainingPartitionStart { get { return 0; } }
    44     protected override int TrainingPartitionEnd { get { return 250; } }
    45     protected override int TestPartitionStart { get { return 250; } }
    46     protected override int TestPartitionEnd { get { return 500; } }
     44    protected override int TrainingPartitionEnd { get { return 500; } }
     45    protected override int TestPartitionStart { get { return 500; } }
     46    protected override int TestPartitionEnd { get { return 1000; } }
    4747
    4848    protected override List<List<double>> GenerateValues() {
     
    129129      covarianceFunction.Terms.Add(t5);
    130130
    131       var cov = covarianceFunction.GetParameterizedCovarianceFunction(hyp, Enumerable.Range(0, AllowedInputVariables.Count()));
     131      var cov = covarianceFunction.GetParameterizedCovarianceFunction(hyp, null);
    132132
    133133
Note: See TracChangeset for help on using the changeset viewer.