Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/24/17 13:28:33 (7 years ago)
Author:
bwerth
Message:

#2847 first implementation of M5'-regression

Location:
branches/M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/GaussianProcessClassification.cs

    r14185 r15430  
    2626using HeuristicLab.Core;
    2727using HeuristicLab.Data;
    28 using HeuristicLab.Optimization;
    2928using HeuristicLab.Parameters;
    3029using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
  • branches/M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/GaussianProcessRegression.cs

    r14185 r15430  
    1 
    21#region License Information
    32/* HeuristicLab
     
    2625using HeuristicLab.Core;
    2726using HeuristicLab.Data;
    28 using HeuristicLab.Optimization;
    2927using HeuristicLab.Parameters;
    3028using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     
    4240    public string Filename { get; set; }
    4341
    44     public override Type ProblemType { get { return typeof(IRegressionProblem); } }
     42    public override Type ProblemType {
     43      get { return typeof(IRegressionProblem); }
     44    }
    4545    public new IRegressionProblem Problem {
    46       get { return (IRegressionProblem)base.Problem; }
     46      get { return (IRegressionProblem) base.Problem; }
    4747      set { base.Problem = value; }
    4848    }
     
    5454    #region parameter properties
    5555    public IConstrainedValueParameter<IGaussianProcessRegressionModelCreator> GaussianProcessModelCreatorParameter {
    56       get { return (IConstrainedValueParameter<IGaussianProcessRegressionModelCreator>)Parameters[ModelCreatorParameterName]; }
     56      get { return (IConstrainedValueParameter<IGaussianProcessRegressionModelCreator>) Parameters[ModelCreatorParameterName]; }
    5757    }
    5858    public IFixedValueParameter<GaussianProcessRegressionSolutionCreator> GaussianProcessSolutionCreatorParameter {
    59       get { return (IFixedValueParameter<GaussianProcessRegressionSolutionCreator>)Parameters[SolutionCreatorParameterName]; }
     59      get { return (IFixedValueParameter<GaussianProcessRegressionSolutionCreator>) Parameters[SolutionCreatorParameterName]; }
    6060    }
    6161    public IFixedValueParameter<BoolValue> CreateSolutionParameter {
    62       get { return (IFixedValueParameter<BoolValue>)Parameters[CreateSolutionParameterName]; }
     62      get { return (IFixedValueParameter<BoolValue>) Parameters[CreateSolutionParameterName]; }
    6363    }
    6464    #endregion
  • branches/M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/MeanFunctions/MeanConst.cs

    r14185 r15430  
    2121
    2222using System;
    23 using System.Collections.Generic;
    24 using System.Linq;
    2523using HeuristicLab.Common;
    2624using HeuristicLab.Core;
Note: See TracChangeset for help on using the changeset viewer.