Changeset 13100 for trunk/sources/HeuristicLab.Algorithms.DataAnalysis
- Timestamp:
- 11/02/15 22:32:59 (9 years ago)
- Location:
- trunk/sources/HeuristicLab.Algorithms.DataAnalysis
- Files:
-
- 3 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis
- Property svn:mergeinfo changed
/branches/ClassificationModelComparison/HeuristicLab.Algorithms.DataAnalysis (added) merged: 9070-9071,9074,9119,9135,10553,10556,10568-10570,13081,13085-13086,13089-13092,13098
- Property svn:mergeinfo changed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/GradientBoostedTreesAlgorithmStatic.cs
r13065 r13100 96 96 weights = new List<double>(); 97 97 // add constant model 98 models.Add(new Constant RegressionModel(f0));98 models.Add(new ConstantModel(f0)); 99 99 weights.Add(1.0); 100 100 } -
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/HeuristicLab.Algorithms.DataAnalysis-3.4.csproj
r13026 r13100 122 122 </ItemGroup> 123 123 <ItemGroup> 124 <Compile Include="BaselineClassifiers\OneR.cs" /> 125 <Compile Include="BaselineClassifiers\OneRClassificationModel.cs" /> 126 <Compile Include="BaselineClassifiers\OneRClassificationSolution.cs" /> 127 <Compile Include="BaselineClassifiers\ZeroR.cs" /> 124 128 <Compile Include="CrossValidation.cs"> 125 129 <SubType>Code</SubType>
Note: See TracChangeset
for help on using the changeset viewer.