Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/02/09 13:17:14 (15 years ago)
Author:
gkronber
Message:
  • Removed "AutoRegressive" parameter for GP completely. User is responsible to set allowed features correctly (including the target variable for auto regression)
  • Setting allowed features correctly in the CEDMA dispatcher (this fixes the problem of incorrect input variables in SVM)

#683 (nu-SVR engine doesn't filter allowed features to remove the target variable)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.GP.StructureIdentification.TimeSeries/3.3/StandardGP.cs

    r1857 r2130  
    3535namespace HeuristicLab.GP.StructureIdentification.TimeSeries {
    3636  public class StandardGP : HeuristicLab.GP.StructureIdentification.StandardGP, ITimeSeriesAlgorithm {
    37     public bool Autoregressive {
    38       get { return ProblemInjector.GetVariable("Autoregressive").GetValue<BoolData>().Data; }
    39       set { ProblemInjector.GetVariable("Autoregressive").GetValue<BoolData>().Data = value; }
    40     }
    41 
    4237    protected override IOperator CreateFunctionLibraryInjector() {
    4338      return new FunctionLibraryInjector();
Note: See TracChangeset for help on using the changeset viewer.