|
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <TargetFramework>netstandard2.0</TargetFramework>
- <AssemblyName>TensorFlow.NET</AssemblyName>
- <RootNamespace>Tensorflow</RootNamespace>
- <TargetTensorFlow>2.2.0</TargetTensorFlow>
- <Version>0.31.2</Version>
- <LangVersion>8.0</LangVersion>
- <Authors>Haiping Chen, Meinrad Recheis, Eli Belash</Authors>
- <Company>SciSharp STACK</Company>
- <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
- <Copyright>Apache 2.0, Haiping Chen $([System.DateTime]::UtcNow.ToString(yyyy))</Copyright>
- <RepositoryUrl>https://github.com/SciSharp/TensorFlow.NET</RepositoryUrl>
- <RepositoryType>git</RepositoryType>
- <PackageProjectUrl>http://scisharpstack.org</PackageProjectUrl>
- <PackageIconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&v=4</PackageIconUrl>
- <PackageTags>TensorFlow, NumSharp, SciSharp, MachineLearning, TensorFlow.NET, C#, TF.NET</PackageTags>
- <Description>Google's TensorFlow full binding in .NET Standard.
- Building, training and infering deep learning models.
- https://tensorflownet.readthedocs.io</Description>
- <AssemblyVersion>0.31.2.0</AssemblyVersion>
- <PackageReleaseNotes>tf.net 0.20.x and above are based on tensorflow native 2.x.
-
- * Eager Mode is added finally.
- * tf.keras is partially working.
- * tf.data is added.
- * autograph works partially.
-
- TensorFlow .NET v0.30 is focused on making more Keras API work including:
- * tf.keras.datasets
- * Building keras model in subclass, functional and sequential api</PackageReleaseNotes>
- <FileVersion>0.31.2.0</FileVersion>
- <PackageLicenseFile>LICENSE</PackageLicenseFile>
- <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
- <SignAssembly>true</SignAssembly>
- <AssemblyOriginatorKeyFile>Open.snk</AssemblyOriginatorKeyFile>
- <Platforms>AnyCPU;x64</Platforms>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <DefineConstants>TRACE;DEBUG</DefineConstants>
- <PlatformTarget>AnyCPU</PlatformTarget>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <DefineConstants>TRACE;DEBUG</DefineConstants>
- <PlatformTarget>x64</PlatformTarget>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
-
- <ItemGroup>
- <Compile Remove="Distribute\**" />
- <Compile Remove="Models\**" />
- <Compile Remove="runtimes\**" />
- <EmbeddedResource Remove="Distribute\**" />
- <EmbeddedResource Remove="Models\**" />
- <EmbeddedResource Remove="runtimes\**" />
- <None Remove="Distribute\**" />
- <None Remove="Models\**" />
- <None Remove="runtimes\**" />
- <Compile Remove="Util\BindingArray2.cs" />
- <None Include="..\..\LICENSE">
- <Pack>True</Pack>
- <PackagePath></PackagePath>
- </None>
- </ItemGroup>
-
- <ItemGroup>
- <None Remove="FodyWeavers.xml" />
- <None Remove="FodyWeavers.xsd" />
- <None Remove="Protobuf\README.md" />
- </ItemGroup>
-
- <ItemGroup>
- <PackageReference Include="Google.Protobuf" Version="3.11.4" />
- <PackageReference Include="MethodBoundaryAspect.Fody" Version="2.0.138" />
- <PackageReference Include="NumSharp.Lite" Version="0.1.9" />
- <PackageReference Include="Protobuf.Text" Version="0.4.0" />
- <PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />
- </ItemGroup>
- </Project>
|