Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/20/18 08:02:17 (6 years ago)
Author:
fholzing
Message:

#2902: Renamed ContainsNanInf to ContainsNanOrInfinity

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/NeuralNetwork/NeuralNetworkEnsembleClassification.cs

    r15783 r15786  
    171171      IEnumerable<int> rows = problemData.TrainingIndices;
    172172      double[,] inputMatrix = dataset.ToArray(allowedInputVariables.Concat(new string[] { targetVariable }), rows);
    173       if (inputMatrix.ContainsNanInf())
     173      if (inputMatrix.ContainsNanOrInfinity())
    174174        throw new NotSupportedException("Neural network ensemble classification does not support NaN or infinity values in the input dataset.");
    175175
Note: See TracChangeset for help on using the changeset viewer.