Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/27/17 13:45:01 (7 years ago)
Author:
bwerth
Message:

#2780 worked on SAPBA; added IndividualStrategy

Location:
branches/SAPBA/HeuristicLab.Algorithms.SAPBA
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/SAPBA/HeuristicLab.Algorithms.SAPBA

    • Property svn:global-ignores set to
      .vs
      obj
    • Property svn:ignore set to
      new 2.txt
  • branches/SAPBA/HeuristicLab.Algorithms.SAPBA/EgoUtilities.cs

    r14893 r14894  
    9393
    9494    public static IRegressionSolution BuildModel(CancellationToken cancellationToken, IEnumerable<Tuple<RealVector, double>> samples, IDataAnalysisAlgorithm<IRegressionProblem> regressionAlgorithm, IRandom random, bool removeDuplicates = true, IRegressionSolution oldSolution = null) {
    95       var dataset = EgoUtilities.GetDataSet(samples.ToList(), removeDuplicates);
     95      var dataset = GetDataSet(samples.ToList(), removeDuplicates);
    9696      var problemdata = new RegressionProblemData(dataset, dataset.VariableNames.Where(x => !x.Equals("output")), "output");
    9797      problemdata.TrainingPartition.Start = 0;
Note: See TracChangeset for help on using the changeset viewer.