|
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
- <AssemblyName>Tensorflow.Keras</AssemblyName>
- <LangVersion>10.0</LangVersion>
- <Nullable>enable</Nullable>
- <RootNamespace>Tensorflow.Keras</RootNamespace>
- <Platforms>AnyCPU;x64</Platforms>
- <Version>1.0.0</Version>
- <Authors>Haiping Chen</Authors>
- <Product>Keras for .NET</Product>
- <Copyright>Apache 2.0, Haiping Chen 2023</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.
- * Building keras model in subclass, functional and sequential api
- * Implemented backward_function.
- * Support model.load_weights.
- * Add Subtract layer
- * Text preprocessing
- * Preprocessing.timeseries_dataset_from_array
- * Fixed memory leak for YOLOv3 model.</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>true</PackageRequireLicenseAcceptance>
- <RepositoryType>Git</RepositoryType>
- <SignAssembly>true</SignAssembly>
- <AssemblyOriginatorKeyFile>Open.snk</AssemblyOriginatorKeyFile>
- <AssemblyVersion>1.0.0.0</AssemblyVersion>
- <FileVersion>1.0.0.0</FileVersion>
- <PackageLicenseFile>LICENSE</PackageLicenseFile>
- <Configurations>Debug;Release;GPU</Configurations>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='GPU|AnyCPU'">
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
- <DocumentationFile>Tensorflow.Keras.xml</DocumentationFile>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='GPU|x64'">
- <DocumentationFile>Tensorflow.Keras.xml</DocumentationFile>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
- <DefineConstants />
- </PropertyGroup>
-
- <ItemGroup>
- <PackageReference Include="HDF5-CSharp" Version="1.16.3" />
- <PackageReference Include="MethodBoundaryAspect.Fody" Version="2.0.148" />
- <PackageReference Include="SharpZipLib" Version="1.4.2" />
- </ItemGroup>
-
- <ItemGroup>
- <None Include="..\..\LICENSE">
- <Pack>True</Pack>
- <PackagePath></PackagePath>
- </None>
- </ItemGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\TensorFlowNET.Core\Tensorflow.Binding.csproj" />
- </ItemGroup>
-
- </Project>
|