Changeset 16892 for branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Algorithms.DataAnalysis/3.4/NeuralNetwork
- Timestamp:
- 05/04/19 08:22:42 (6 years ago)
- Location:
- branches/2925_AutoDiffForDynamicalModels
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2925_AutoDiffForDynamicalModels
- Property svn:mergeinfo changed
-
branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Algorithms.DataAnalysis
- Property svn:mergeinfo changed
-
branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Algorithms.DataAnalysis/3.4
- Property svn:mergeinfo changed
-
branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Algorithms.DataAnalysis/3.4/NeuralNetwork/NeuralNetworkEnsembleModel.cs
r16662 r16892 144 144 return IsProblemDataCompatible(classificationProblemData, out errorMessage); 145 145 146 throw new ArgumentException("The problem data is not a regression nor a classification problem data. Instead a " + problemData.GetType().GetPrettyName() + " was provided.", "problemData");146 throw new ArgumentException("The problem data is not compatible with this neural network ensemble. Instead a " + problemData.GetType().GetPrettyName() + " was provided.", "problemData"); 147 147 } 148 148 … … 153 153 return new NeuralNetworkEnsembleClassificationSolution(this, new ClassificationEnsembleProblemData(problemData)); 154 154 } 155 155 156 156 #region persistence 157 157 [Storable] … … 183 183 } 184 184 } 185 [Storable( AllowOneWay = true)]185 [Storable(OldName = "MultiLayerPerceptronEnsembleDfdnet")] 186 186 private double[] MultiLayerPerceptronEnsembleDfdnet { 187 187 set { … … 197 197 } 198 198 } 199 [Storable( AllowOneWay = true)]199 [Storable(OldName = "MultiLayerPerceptronEnsembleNeurons")] 200 200 private double[] MultiLayerPerceptronEnsembleNeurons { 201 201 set { mlpEnsemble.innerobj.network.neurons = value; } 202 202 } 203 [Storable( AllowOneWay = true)]203 [Storable(OldName = "MultiLayerPerceptronEnsembleSerializedMlp")] 204 204 private double[] MultiLayerPerceptronEnsembleSerializedMlp { 205 205 set { … … 207 207 } 208 208 } 209 [Storable( AllowOneWay = true)]209 [Storable(OldName = "MultiLayerPerceptronStuctinfo")] 210 210 private int[] MultiLayerPerceptronStuctinfo { 211 211 set { -
branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Algorithms.DataAnalysis/3.4/NeuralNetwork/NeuralNetworkModel.cs
r16662 r16892 147 147 return IsProblemDataCompatible(classificationProblemData, out errorMessage); 148 148 149 throw new ArgumentException("The problem data is not a regression nor a classification problem data. Instead a " + problemData.GetType().GetPrettyName() + " was provided.", "problemData");149 throw new ArgumentException("The problem data is not compatible with this neural network. Instead a " + problemData.GetType().GetPrettyName() + " was provided.", "problemData"); 150 150 } 151 151
Note: See TracChangeset
for help on using the changeset viewer.