File size: 634 Bytes
360f5f4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net6.0</TargetFramework>
    <Nullable>enable</Nullable>
    <Platform>x64</Platform>
    <TorchVersion>0.99.3</TorchVersion>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="TorchVision" Version="$(TorchVersion)" />
    <PackageReference Include="TorchSharp-cuda-linux" Version="$(TorchVersion)" />
     <None Update="*.ckpt">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </None>
    <PackageReference Include="Microsoft.ML" Version="2.0.1" />
  </ItemGroup>

</Project>