Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/10/17 12:56:36 (6 years ago)
Author:
bwerth
Message:

#2847 worked on M5Regression

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/M5Regression/MetaModels/PreconstructedLinearModel.cs

    r15430 r15470  
    2424using System.Linq;
    2525using HeuristicLab.Common;
    26 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    2726using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2827using HeuristicLab.Problems.DataAnalysis;
    29 using HeuristicLab.Problems.DataAnalysis.Symbolic;
    30 using HeuristicLab.Problems.DataAnalysis.Symbolic.Regression;
    3128
    3229namespace HeuristicLab.Algorithms.DataAnalysis {
     
    9895    }
    9996
    100 
    10197    public override IEnumerable<double> GetEstimatedValues(IDataset dataset, IEnumerable<int> rows) {
    10298      return rows.Select(row => GetEstimatedValue(dataset, row));
Note: See TracChangeset for help on using the changeset viewer.