Free cookie consent management tool by TermsFeed Policy Generator

Changeset 17051


Ignore:
Timestamp:
06/30/19 20:31:27 (5 years ago)
Author:
gkronber
Message:

#2925: produce line chart for training episodes even when there is no test set

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Problems.DynamicalSystemsModelling/3.3/Problem.cs

    r17001 r17051  
    448448            alglib.minlmsetbc(state, lowerBounds, upperBounds);
    449449#if DEBUG
    450             alglib.minlmsetgradientcheck(state, 1.0e-7);
     450            alglib.minlmsetgradientcheck(state, 1.0e-7 );
    451451#endif
    452452            alglib.minlmoptimize(state, EvaluateObjectiveVector, EvaluateObjectiveVectorAndJacobian, null, myState);
     
    792792        odeSNMSETable.Rows["ODE SNMSE"].Values.Add(trainingSNMSE);
    793793        odeSNMSETable.Rows["Fitness"].Values.Add(bestIndividualAndQuality.Item2);
     794        results["Prediction (training)"].Value = trainingList.AsReadOnly();
    794795
    795796        // var errorTable = new DataTable("Squared error and gradient");
     
    854855          }
    855856
    856           results["Prediction (training)"].Value = trainingList.AsReadOnly();
    857857          results["Prediction (test)"].Value = testList.AsReadOnly();
    858858
Note: See TracChangeset for help on using the changeset viewer.