Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/19/11 02:22:45 (13 years ago)
Author:
mkommend
Message:

#1418:

  • Worked on IntRange and DoubleRange
  • Updated evaluators, analyzers, problems and problem data to use IntRanges
  • Removed properties to access the value of LookupParameter
  • Corrected files.txt
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis Refactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/Linear/LinearRegression.cs

    r5733 r5759  
    7373      string targetVariable = problemData.TargetVariable;
    7474      IEnumerable<string> allowedInputVariables = problemData.AllowedInputVariables;
    75       int samplesStart = problemData.TrainingPartitionStart.Value;
    76       int samplesEnd = problemData.TrainingPartitionEnd.Value;
     75      int samplesStart = problemData.TrainingPartition.Start;
     76      int samplesEnd = problemData.TrainingPartition.End;
    7777      IEnumerable<int> rows = Enumerable.Range(samplesStart, samplesEnd - samplesStart);
    7878      double[,] inputMatrix = AlglibUtil.PrepareInputMatrix(dataset, allowedInputVariables.Concat(new string[] { targetVariable }), rows);
Note: See TracChangeset for help on using the changeset viewer.