- Timestamp:
- 05/10/17 15:42:10 (8 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 14841
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Algorithms.DataAnalysis
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Algorithms.DataAnalysis merged: 14841
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/GradientBoostedTreesAlgorithm.cs
r14956 r14957 21 21 #endregion 22 22 23 using System;24 23 using System.Linq; 25 24 using System.Threading; … … 204 203 table.Rows.Add(new DataRow("Loss (train)")); 205 204 table.Rows.Add(new DataRow("Loss (test)")); 205 table.Rows["Loss (train)"].VisualProperties.StartIndexZero = true; 206 table.Rows["Loss (test)"].VisualProperties.StartIndexZero = true; 207 206 208 Results.Add(new Result("Qualities", table)); 207 209 var curLoss = new DoubleValue(); … … 268 270 classificationProblemData.TestPartition.End = Problem.ProblemData.TestPartition.End; 269 271 270 classificationModel.SetThresholdsAndClassValues(new double[] { double.NegativeInfinity, 0.0 }, new []{ 0.0, 1.0 });272 classificationModel.SetThresholdsAndClassValues(new double[] { double.NegativeInfinity, 0.0 }, new[] { 0.0, 1.0 }); 271 273 272 274
Note: See TracChangeset
for help on using the changeset viewer.