forked from dotnet/machinelearning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMicrosoft.ML.FastTree.csproj
More file actions
96 lines (92 loc) · 4.97 KB
/
Copy pathMicrosoft.ML.FastTree.csproj
File metadata and controls
96 lines (92 loc) · 4.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeInPackage>Microsoft.ML</IncludeInPackage>
<DefineConstants>$(DefineConstants);USE_FASTTREENATIVE;NO_STORE;CORECLR</DefineConstants>
<EnableDefaultCompileItems>False</EnableDefaultCompileItems>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Microsoft.ML.Core\Microsoft.ML.Core.csproj" />
<ProjectReference Include="..\Microsoft.ML.CpuMath\Microsoft.ML.CpuMath.csproj" />
<ProjectReference Include="..\Microsoft.ML.Data\Microsoft.ML.Data.csproj" />
<ProjectReference Include="..\Microsoft.ML.InternalStreams\Microsoft.ML.InternalStreams.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Include="BoostingFastTree.cs" />
<Compile Include="Dataset\DatasetUtils.cs" />
<Compile Include="Dataset\FeatureFlock.cs" />
<Compile Include="Dataset\NHotFeatureFlock.cs" />
<Compile Include="Dataset\OneHotFeatureFlock.cs" />
<Compile Include="Dataset\SingletonFeatureFlock.cs" />
<Compile Include="FastTreeArguments.cs" />
<Compile Include="FastTreeClassification.cs" />
<Compile Include="FastTreeRanking.cs" />
<Compile Include="FastTreeRegression.cs" />
<Compile Include="FastTree.cs" />
<Compile Include="FastTreeTweedie.cs" />
<Compile Include="GamTrainer.cs" />
<Compile Include="RandomForest.cs" />
<Compile Include="RandomForestRegression.cs" />
<Compile Include="QuantileStatistics.cs" />
<Compile Include="RandomForestClassification.cs" />
<Compile Include="SumupPerformanceCommand.cs" />
<Compile Include="Training\Parallel\IParallelTraining.cs" />
<Compile Include="Training\Parallel\SingleTrainer.cs" />
<Compile Include="TreeEnsembleFeaturizer.cs" />
<Compile Include="Utils\Algorithms.cs" />
<Compile Include="Utils\BlockingThreadPool.cs" />
<Compile Include="Utils\BufferPoolManager.cs" />
<Compile Include="Utils\CompressUtils.cs" />
<Compile Include="Utils\LinqExtensions.cs" />
<Compile Include="Utils\MappedObjectPool.cs" />
<Compile Include="Utils\MD5Hasher.cs" />
<Compile Include="Utils\PseudorandomFunction.cs" />
<Compile Include="Utils\StreamExtensions.cs" />
<Compile Include="Utils\ThreadTaskManager.cs" />
<Compile Include="Utils\Timer.cs" />
<Compile Include="Utils\ToByteArrayExtensions.cs" />
<Compile Include="Utils\VectorUtils.cs" />
<Compile Include="Application\DominationLossApplication.cs" />
<Compile Include="Application\LogLossApplication.cs" />
<Compile Include="Application\SizeAdjustedLogLossApplication.cs" />
<Compile Include="Application\WinLossSurplusApplication.cs" />
<Compile Include="TreeEnsemble\Ensemble.cs" />
<Compile Include="TreeEnsemble\QuantileRegressionTree.cs" />
<Compile Include="TreeEnsemble\RegressionTree.cs" />
<Compile Include="TreeEnsemble\TreeEnsembleCombiner.cs" />
<Compile Include="Training\Applications\GradientWrappers.cs" />
<Compile Include="Training\Applications\ObjectiveFunction.cs" />
<Compile Include="Training\BaggingProvider.cs" />
<Compile Include="Training\DcgCalculator.cs" />
<Compile Include="Training\DcgPermutationComparer.cs" />
<Compile Include="Training\DocumentPartitioning.cs" />
<Compile Include="Training\EnsembleCompression\IEnsembleCompressor.cs" />
<Compile Include="Training\EnsembleCompression\LassoBasedEnsembleCompressor.cs" />
<Compile Include="Training\EnsembleCompression\LassoFit.cs" />
<Compile Include="Training\OptimizationAlgorithms\AcceleratedGradientDescent.cs" />
<Compile Include="Training\OptimizationAlgorithms\ConjugateGradientDescent.cs" />
<Compile Include="Training\OptimizationAlgorithms\GradientDescent.cs" />
<Compile Include="Training\OptimizationAlgorithms\OptimizationAlgorithm.cs" />
<Compile Include="Training\OptimizationAlgorithms\NoOptimizationAlgorithm.cs" />
<Compile Include="Training\RegressionTreeNodeDocuments.cs" />
<Compile Include="Training\ScoreTracker.cs" />
<Compile Include="Training\StepSearch.cs" />
<Compile Include="Training\Test.cs" />
<Compile Include="Training\TreeLearners\FastForestLeastSquaresTreeLearner.cs" />
<Compile Include="Training\TreeLearners\LeastSquaresRegressionTreeLearner.cs" />
<Compile Include="Training\TreeLearners\TreeLearner.cs" />
<Compile Include="Training\WinLossCalculator.cs" />
<Compile Include="Dataset\Dataset.cs" />
<Compile Include="Dataset\DenseIntArray.cs" />
<Compile Include="Dataset\Feature.cs" />
<Compile Include="Dataset\FeatureHistogram.cs" />
<Compile Include="Dataset\FileObjectStore.cs" />
<Compile Include="Dataset\IntArray.cs" />
<Compile Include="Dataset\RepeatIntArray.cs" />
<Compile Include="Dataset\SegmentIntArray.cs" />
<Compile Include="Dataset\SparseIntArray.cs" />
<Compile Include="BinFile\BinFinder.cs" />
<Compile Include="BinFile\IniFileParserInterface.cs" />
</ItemGroup>
</Project>