Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/21/11 16:28:00 (13 years ago)
Author:
gkronber
Message:

#763 added first implementation of classification and regression based on k nearest neighbour.

Location:
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces
Files:
3 copied

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/INearestNeighbourClassificationSolution.cs

    r6577 r6583  
    2626namespace HeuristicLab.Algorithms.DataAnalysis {
    2727  /// <summary>
    28   /// Interface to represent a neural network regression solution
     28  /// Interface to represent a nearest neighbour classification solution
    2929  /// </summary>
    30   public interface INeuralNetworkRegressionSolution : IRegressionSolution {
    31     new INeuralNetworkModel Model { get; }
     30  public interface INearestNeighbourClassificationSolution : IClassificationSolution {
     31    new INearestNeighbourModel Model { get; }
    3232  }
    3333}
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/INearestNeighbourModel.cs

    r6577 r6583  
    2727namespace HeuristicLab.Algorithms.DataAnalysis {
    2828  /// <summary>
    29   /// Interface to represent a random forest model for either regression or classification
     29  /// Interface to represent a nearest neighbour model for either regression or classification
    3030  /// </summary>
    31   public interface IRandomForestModel : IRegressionModel, IClassificationModel {
     31  public interface INearestNeighbourModel : IRegressionModel, IClassificationModel {
    3232  }
    3333}
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/INearestNeighbourRegressionSolution.cs

    r6577 r6583  
    2626namespace HeuristicLab.Algorithms.DataAnalysis {
    2727  /// <summary>
    28   /// Interface to represent a neural network regression solution
     28  /// Interface to represent a nearest neighbour regression solution
    2929  /// </summary>
    30   public interface INeuralNetworkRegressionSolution : IRegressionSolution {
    31     new INeuralNetworkModel Model { get; }
     30  public interface INearestNeighbourRegressionSolution : IRegressionSolution {
     31    new INearestNeighbourModel Model { get; }
    3232  }
    3333}
Note: See TracChangeset for help on using the changeset viewer.