|
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <TargetFramework>netstandard2.0</TargetFramework>
- <AssemblyName>Tensorflow.Keras</AssemblyName>
- <LangVersion>8.0</LangVersion>
- <RootNamespace>Tensorflow.Keras</RootNamespace>
- <Platforms>AnyCPU;x64</Platforms>
- <Version>0.2.0</Version>
- <Authors>Haiping Chen</Authors>
- <Product>Keras for .NET</Product>
- <Copyright>Apache 2.0, Haiping Chen 2020</Copyright>
- <PackageId>TensorFlow.Keras</PackageId>
- <PackageProjectUrl>https://github.com/SciSharp/TensorFlow.NET</PackageProjectUrl>
- <PackageIconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&v=4</PackageIconUrl>
- <RepositoryUrl>https://github.com/SciSharp/TensorFlow.NET</RepositoryUrl>
- <PackageReleaseNotes>Keras for .NET is a C# version of Keras ported from the python version.
-
- * Support CIFAR-10 dataset in keras.datasets.
- * Support Conv2D functional API.
- * Support BatchNormalization layer.</PackageReleaseNotes>
- <Description>Keras for .NET
-
- Keras is an API designed for human beings, not machines. Keras follows best practices for reducing cognitive load: it offers consistent & simple APIs, it minimizes the number of user actions required for common use cases, and it provides clear & actionable error messages.</Description>
- <Company>SciSharp STACK</Company>
- <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
- <PackageTags>tensorflow, keras, deep learning, machine learning</PackageTags>
- <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
- <RepositoryType>Git</RepositoryType>
- <SignAssembly>true</SignAssembly>
- <AssemblyOriginatorKeyFile>Open.snk</AssemblyOriginatorKeyFile>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
- </PropertyGroup>
-
- <ItemGroup>
- <PackageReference Include="MethodBoundaryAspect.Fody" Version="2.0.138" />
- <PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
- <PackageReference Include="SharpZipLib" Version="1.3.1" />
- </ItemGroup>
-
- <ItemGroup>
- <Folder Include="Saving\" />
- </ItemGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\TensorFlowNET.Core\Tensorflow.Binding.csproj" />
- </ItemGroup>
-
- </Project>
|