Changeset 12700 for trunk/sources
- Timestamp:
- 07/09/15 18:57:37 (9 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
- 10 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/HeuristicLab.Algorithms.DataAnalysis-3.4.csproj
r11956 r12700 195 195 <Compile Include="GaussianProcess\GaussianProcessRegressionSolution.cs" /> 196 196 <Compile Include="GaussianProcess\ICovarianceFunction.cs" /> 197 <Compile Include="GradientBoostedTrees\GradientBoostedTreesAlgorithm.cs" /> 198 <Compile Include="GradientBoostedTrees\GradientBoostedTreesAlgorithmStatic.cs" /> 199 <Compile Include="GradientBoostedTrees\GradientBoostedTreesModel.cs" /> 200 <Compile Include="GradientBoostedTrees\LossFunctions\AbsoluteErrorLoss.cs" /> 201 <Compile Include="GradientBoostedTrees\LossFunctions\ILossFunction.cs" /> 202 <Compile Include="GradientBoostedTrees\LossFunctions\LogisticRegressionLoss.cs" /> 203 <Compile Include="GradientBoostedTrees\LossFunctions\RelativeErrorLoss.cs" /> 204 <Compile Include="GradientBoostedTrees\LossFunctions\SquaredErrorLoss.cs" /> 205 <Compile Include="GradientBoostedTrees\RegressionTreeBuilder.cs" /> 206 <Compile Include="GradientBoostedTrees\RegressionTreeModel.cs" /> 197 207 <Compile Include="Interfaces\IGaussianProcessClassificationModelCreator.cs" /> 198 208 <Compile Include="Interfaces\IGaussianProcessRegressionModelCreator.cs" /> -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Algorithms.DataAnalysis-3.4/GradientBoostingTest.cs
r12699 r12700 1 1 using System; 2 using System.Collections;3 using System.Globalization;4 2 using System.Linq; 5 using System.Runtime.CompilerServices;6 3 using System.Threading; 7 4 using HeuristicLab.Data; 8 5 using HeuristicLab.Optimization; 9 6 using HeuristicLab.Problems.DataAnalysis; 10 using HeuristicLab.Random;11 7 using Microsoft.VisualStudio.TestTools.UnitTesting; 12 8 -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Tests.csproj
r11987 r12700 442 442 <Compile Include="HeuristicLab-3.3\ThreadSafeLogTest.cs" /> 443 443 <Compile Include="HeuristicLab-3.3\ToStringTest.cs" /> 444 <Compile Include="HeuristicLab.Algorithms.DataAnalysis-3.4\GradientBoostingTest.cs" /> 444 445 <Compile Include="HeuristicLab.Algorithms.DataAnalysis-3.4\SupportVectorMachineTest.cs" /> 445 446 <Compile Include="HeuristicLab.Algorithms.DataAnalysis-3.4\GaussianProcessModelTest.cs" />
Note: See TracChangeset
for help on using the changeset viewer.