Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/24/15 11:19:38 (9 years ago)
Author:
pfleck
Message:

#2025 Added sample ordering for DataAnalysis-Algs.

File:
1 edited

Legend:

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

    r12245 r12248  
    3636  /// </summary>
    3737  [Item("Neural Network Ensemble Classification", "Neural network ensemble classification data analysis algorithm (wrapper for ALGLIB). Further documentation: http://www.alglib.net/dataanalysis/mlpensembles.php")]
    38   [Creatable("Algorithms#Data Analysis")]
     38  [Creatable("Algorithms#Data Analysis#Classification", Priority = 65)]
    3939  [StorableClass]
    4040  public sealed class NeuralNetworkEnsembleClassification : FixedDataAnalysisAlgorithm<IClassificationProblem> {
     
    124124    public NeuralNetworkEnsembleClassification()
    125125      : base() {
    126         var validHiddenLayerValues = new ItemSet<IntValue>(new IntValue[] {
     126      var validHiddenLayerValues = new ItemSet<IntValue>(new IntValue[] {
    127127        (IntValue)new IntValue(0).AsReadOnly(),
    128128        (IntValue)new IntValue(1).AsReadOnly(),
Note: See TracChangeset for help on using the changeset viewer.