Changeset 17051
- Timestamp:
- 06/30/19 20:31:27 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Problems.DynamicalSystemsModelling/3.3/Problem.cs
r17001 r17051 448 448 alglib.minlmsetbc(state, lowerBounds, upperBounds); 449 449 #if DEBUG 450 alglib.minlmsetgradientcheck(state, 1.0e-7 );450 alglib.minlmsetgradientcheck(state, 1.0e-7 ); 451 451 #endif 452 452 alglib.minlmoptimize(state, EvaluateObjectiveVector, EvaluateObjectiveVectorAndJacobian, null, myState); … … 792 792 odeSNMSETable.Rows["ODE SNMSE"].Values.Add(trainingSNMSE); 793 793 odeSNMSETable.Rows["Fitness"].Values.Add(bestIndividualAndQuality.Item2); 794 results["Prediction (training)"].Value = trainingList.AsReadOnly(); 794 795 795 796 // var errorTable = new DataTable("Squared error and gradient"); … … 854 855 } 855 856 856 results["Prediction (training)"].Value = trainingList.AsReadOnly();857 857 results["Prediction (test)"].Value = testList.AsReadOnly(); 858 858
Note: See TracChangeset
for help on using the changeset viewer.