Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/21/11 13:37:43 (13 years ago)
Author:
gkronber
Message:

#1474: added implementations for regression and classification with neural network ensembles (wrappers for alglib).

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

Legend:

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

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

    r6577 r6580  
    2727namespace HeuristicLab.Algorithms.DataAnalysis {
    2828  /// <summary>
    29   /// Interface to represent a neural network model for either regression or classification
     29  /// Interface to represent a neural network ensemble model for either regression or classification
    3030  /// </summary>
    31   public interface INeuralNetworkModel : IRegressionModel, IClassificationModel {
     31  public interface INeuralNetworkEnsembleModel : IRegressionModel, IClassificationModel {
    3232  }
    3333}
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/INeuralNetworkEnsembleRegressionSolution.cs

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