Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/26/17 12:23:36 (7 years ago)
Author:
gkronber
Message:

#2699: made some adjustments after bwerth's changes (mainly formatting)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/RBFRegression/HeuristicLab.Algorithms.DataAnalysis/3.4/KernelRidgeRegression/KernelRidgeRegressionModel.cs

    r14891 r14892  
    3232  [Item("KernelRidgeRegressionModel", "A kernel ridge regression model")]
    3333  public sealed class KernelRidgeRegressionModel : RegressionModel {
    34     public override IEnumerable<string> VariablesUsedForPrediction
    35     {
     34    public override IEnumerable<string> VariablesUsedForPrediction {
    3635      get { return allowedInputVariables; }
    3736    }
     
    3938    [Storable]
    4039    private readonly string[] allowedInputVariables;
    41     public string[] AllowedInputVariables
    42     {
     40    public string[] AllowedInputVariables {
    4341      get { return allowedInputVariables; }
    4442    }
     
    148146        }
    149147        LooCvRMSE = Math.Sqrt(ssqLooError / n);
    150       }
    151       catch (alglib.alglibexception ae) {
     148      } catch (alglib.alglibexception ae) {
    152149        // wrap exception so that calling code doesn't have to know about alglib implementation
    153150        throw new ArgumentException("There was a problem in the calculation of the kernel ridge regression model", ae);
Note: See TracChangeset for help on using the changeset viewer.