Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/11/11 15:32:18 (13 years ago)
Author:
gkronber
Message:

#1523: fixed bug in fixed data analysis algorithms.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine/SupportVectorRegression.cs

    r5914 r6182  
    130130      Dataset dataset = problemData.Dataset;
    131131      string targetVariable = problemData.TargetVariable;
    132       int start = problemData.TrainingPartition.Start;
    133       int end = problemData.TrainingPartition.End;
    134       IEnumerable<int> rows = Enumerable.Range(start, end - start);
     132      IEnumerable<int> rows = problemData.TrainingIndizes;
    135133
    136134      //extract SVM parameters from scope and set them
Note: See TracChangeset for help on using the changeset viewer.