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