Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/03/16 12:25:30 (8 years ago)
Author:
pfleck
Message:

#2597:

  • Added new Model property in IConfidenceBoundRegressionSolution.
  • Added ConfidenceBoundRegressionSolution base and methods to it from GaussianProcessRegressionSolution.
  • Replaced RegressionSolutionGradientView with GaussianProcessRegressionSolutionInteractiveRangeEstimatorView. Also moved DensityTrackbar to Problems.DataAnalysis.Views Plugin.
  • DensityTrackbar initial position is now where the density is highest.
File:
1 moved

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.RegressionSolutionGradientView/HeuristicLab.Problems.DataAnalysis.Views/3.4/RegressionSolutionGradientView.cs

    r13823 r13824  
    3535
    3636namespace HeuristicLab.Algorithms.DataAnalysis.Views {
    37   [View("Interactive Estimator")]
    38   [Content(typeof(GaussianProcessRegressionSolution))]
    39   public partial class GaussianProcessRegressionSolutionInteractiveRangeEstimatorView
     37  [View("Gradient View")]
     38  [Content(typeof(IConfidenceBoundRegressionSolution))]
     39  public partial class RegressionSolutionGradientView
    4040    : DataAnalysisSolutionEvaluationView {
    4141
     
    5252    }
    5353
    54     public new GaussianProcessRegressionSolution Content {
    55       get { return (GaussianProcessRegressionSolution)base.Content; }
     54    public new IConfidenceBoundRegressionSolution Content {
     55      get { return (IConfidenceBoundRegressionSolution)base.Content; }
    5656      set { base.Content = value; }
    5757    }
    5858
    59     public GaussianProcessRegressionSolutionInteractiveRangeEstimatorView()
     59    public RegressionSolutionGradientView()
    6060      : base() {
    6161      dimensionNames = new List<string>();
Note: See TracChangeset for help on using the changeset viewer.