Changeset 14861
- Timestamp:
- 04/13/17 14:02:28 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/MultiObjective/SymbolicRegressionMultiObjectiveTrainingBestSolutionAnalyzer.cs
r14718 r14861 144 144 145 145 qualityToTreeSize.Rows.Clear(); 146 var trainingRow = new ScatterPlotDataRow("Training NMSE", "", sizeParetoFront.Select(x => new Point2D<double>(x.Model.SymbolicExpressionTree.Length, x.TrainingNormalizedMeanSquaredError )));146 var trainingRow = new ScatterPlotDataRow("Training NMSE", "", sizeParetoFront.Select(x => new Point2D<double>(x.Model.SymbolicExpressionTree.Length, x.TrainingNormalizedMeanSquaredError, x))); 147 147 trainingRow.VisualProperties.PointSize = 8; 148 148 qualityToTreeSize.Rows.Add(trainingRow); … … 150 150 if (AnalyzeTestError) { 151 151 var testRow = new ScatterPlotDataRow("Test NMSE", "", 152 sizeParetoFront.Select(x => new Point2D<double>(x.Model.SymbolicExpressionTree.Length, x.TestNormalizedMeanSquaredError )));152 sizeParetoFront.Select(x => new Point2D<double>(x.Model.SymbolicExpressionTree.Length, x.TestNormalizedMeanSquaredError, x))); 153 153 testRow.VisualProperties.PointSize = 8; 154 154 qualityToTreeSize.Rows.Add(testRow);
Note: See TracChangeset
for help on using the changeset viewer.