Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/20/09 11:20:13 (15 years ago)
Author:
gkronber
Message:

Fixed #784 (ProblemInjector should be changed to read variable names instead of indexes for input and target variables)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Modeling/3.2/IAlgorithm.cs

    r2377 r2440  
    3232
    3333    Dataset Dataset { get; set; }
    34     IEnumerable<int> AllowedVariables { get; set; }
     34    IEnumerable<string> AllowedVariables { get; set; }
    3535    int TrainingSamplesStart { get; set; }
    3636    int TrainingSamplesEnd { get; set; }
     
    3939    int TestSamplesStart { get; set; }
    4040    int TestSamplesEnd { get; set; }
    41     int TargetVariable { get; set; }
     41    string TargetVariable { get; set; }
    4242    IEngine Engine { get; }
    4343    IAnalyzerModel Model { get; }
Note: See TracChangeset for help on using the changeset viewer.