Changeset 17097 for stable/HeuristicLab.Algorithms.DataAnalysis/3.4/NeuralNetwork/NeuralNetworkClassification.cs
- Timestamp:
- 07/07/19 23:40:10 (4 years ago)
- Location:
- stable
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Algorithms.DataAnalysis
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Algorithms.DataAnalysis/3.4
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/NeuralNetwork/NeuralNetworkClassification.cs
r15788 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 29 29 using HeuristicLab.Optimization; 30 30 using HeuristicLab.Parameters; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 32 32 using HeuristicLab.Problems.DataAnalysis; 33 33 … … 38 38 [Item("Neural Network Classification (NN)", "Neural network classification data analysis algorithm (wrapper for ALGLIB). Further documentation: http://www.alglib.net/dataanalysis/neuralnetworks.php")] 39 39 [Creatable(CreatableAttribute.Categories.DataAnalysisClassification, Priority = 130)] 40 [Storable Class]40 [StorableType("8D44A55B-B162-42D6-A761-A420F4D107C4")] 41 41 public sealed class NeuralNetworkClassification : FixedDataAnalysisAlgorithm<IClassificationProblem> { 42 42 private const string DecayParameterName = "Decay"; … … 108 108 109 109 [StorableConstructor] 110 private NeuralNetworkClassification( bool deserializing) : base(deserializing) { }110 private NeuralNetworkClassification(StorableConstructorFlag _) : base(_) { } 111 111 private NeuralNetworkClassification(NeuralNetworkClassification original, Cloner cloner) 112 112 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.