forked from dotnet/machinelearning-samples
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathImageClassification.Train.vbproj
27 lines (27 loc) · 1.08 KB
/
ImageClassification.Train.vbproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<LangVersion>15.5</LangVersion>
<StartupObject />
<OptionExplicit>On</OptionExplicit>
<OptionCompare>Binary</OptionCompare>
<OptionStrict>Off</OptionStrict>
<OptionInfer>On</OptionInfer>
<RootNamespace></RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\..\common\Compress.vb" Link="Common\Compress.vb" />
<Compile Include="..\..\..\common\ConsoleHelper.vb" Link="Common\ConsoleHelper.vb" />
<Compile Include="..\..\..\common\Web.vb" Link="Common\Web.vb" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ML" Version="$(MicrosoftMLVersion)" />
<PackageReference Include="Microsoft.ML.ImageAnalytics" Version="$(MicrosoftMLVersion)" />
<PackageReference Include="Microsoft.ML.TensorFlow" Version="$(MicrosoftMLVersion)" />
<PackageReference Include="SharpZipLib" Version="1.2.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="Common\" />
</ItemGroup>
</Project>