Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/22/13 07:10:13 (11 years ago)
Author:
gkronber
Message:

#1967: added CovNN symbol and tree node

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.GaussianProcessTuning/GaussianProcessDemo/Form1.cs

    r9338 r9387  
    2828
    2929      var sum = new CovarianceSum();
    30       var t = new CovarianceSquaredExponentialIso();
    31       t.InverseLengthParameter.Value = new DoubleValue(1.0 / Math.Exp(-2));
     30      var t = new CovarianceNeuralNetwork();
    3231      sum.Terms.Add(t);
    3332      sum.Terms.Add(new CovarianceNoise());
     
    6564    private void UpdateChart() {
    6665      var hyp = GetSliderValues();
    67       var cov = covFunction.GetParameterizedCovarianceFunction(hyp, null);
     66      var cov = covFunction.GetParameterizedCovarianceFunction(hyp, Enumerable.Range(0, data.Count));
    6867      var y = Util.SampleGaussianProcess(random, cov, data, alpha);
    6968
Note: See TracChangeset for help on using the changeset viewer.