Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/17/15 18:33:31 (9 years ago)
Author:
gkronber
Message:

#2434 reverse merge of r12871 (changes should be applied directly to trunk)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/crossvalidation-2434/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/LossFunctions/ILossFunction.cs

    r12871 r12872  
    2222
    2323using System.Collections.Generic;
    24 using HeuristicLab.Core;
    2524
    2625namespace HeuristicLab.Algorithms.DataAnalysis {
     
    2827  // target represents the target vector  (original targets from the problem data, never changed)
    2928  // pred   represents the current vector of predictions (a weighted combination of models learned so far, this vector is updated after each step)
    30   public interface ILossFunction : IItem {
     29  public interface ILossFunction {
    3130    // returns the loss of the current prediction vector
    3231    double GetLoss(IEnumerable<double> target, IEnumerable<double> pred);
Note: See TracChangeset for help on using the changeset viewer.