You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Tensorflow.Keras.csproj 2.5 kB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.0</TargetFramework>
  4. <AssemblyName>Tensorflow.Keras</AssemblyName>
  5. <LangVersion>8.0</LangVersion>
  6. <RootNamespace>Tensorflow.Keras</RootNamespace>
  7. <Platforms>AnyCPU;x64</Platforms>
  8. <Version>0.2.0</Version>
  9. <Authors>Haiping Chen</Authors>
  10. <Product>Keras for .NET</Product>
  11. <Copyright>Apache 2.0, Haiping Chen 2020</Copyright>
  12. <PackageId>TensorFlow.Keras</PackageId>
  13. <PackageProjectUrl>https://github.com/SciSharp/TensorFlow.NET</PackageProjectUrl>
  14. <PackageIconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&amp;v=4</PackageIconUrl>
  15. <RepositoryUrl>https://github.com/SciSharp/TensorFlow.NET</RepositoryUrl>
  16. <PackageReleaseNotes>Keras for .NET is a C# version of Keras ported from the python version.
  17. * Support CIFAR-10 dataset in keras.datasets.
  18. * Support Conv2D functional API.
  19. * Support BatchNormalization layer.</PackageReleaseNotes>
  20. <Description>Keras for .NET
  21. Keras is an API designed for human beings, not machines. Keras follows best practices for reducing cognitive load: it offers consistent &amp; simple APIs, it minimizes the number of user actions required for common use cases, and it provides clear &amp; actionable error messages.</Description>
  22. <Company>SciSharp STACK</Company>
  23. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  24. <PackageTags>tensorflow, keras, deep learning, machine learning</PackageTags>
  25. <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
  26. <RepositoryType>Git</RepositoryType>
  27. <SignAssembly>true</SignAssembly>
  28. <AssemblyOriginatorKeyFile>Open.snk</AssemblyOriginatorKeyFile>
  29. </PropertyGroup>
  30. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  31. <DefineConstants>DEBUG;TRACE</DefineConstants>
  32. <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
  33. </PropertyGroup>
  34. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  35. <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <PackageReference Include="MethodBoundaryAspect.Fody" Version="2.0.138" />
  39. <PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
  40. <PackageReference Include="SharpZipLib" Version="1.3.1" />
  41. </ItemGroup>
  42. <ItemGroup>
  43. <Folder Include="Saving\" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <ProjectReference Include="..\TensorFlowNET.Core\Tensorflow.Binding.csproj" />
  47. </ItemGroup>
  48. </Project>