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 3.3 kB

6 years ago
4 years ago
6 years ago
4 years ago
6 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.0</TargetFramework>
  4. <AssemblyName>Tensorflow.Keras</AssemblyName>
  5. <LangVersion>9.0</LangVersion>
  6. <Nullable>enable</Nullable>
  7. <RootNamespace>Tensorflow.Keras</RootNamespace>
  8. <Platforms>AnyCPU;x64</Platforms>
  9. <Version>0.6.3</Version>
  10. <Authors>Haiping Chen</Authors>
  11. <Product>Keras for .NET</Product>
  12. <Copyright>Apache 2.0, Haiping Chen 2021</Copyright>
  13. <PackageId>TensorFlow.Keras</PackageId>
  14. <PackageProjectUrl>https://github.com/SciSharp/TensorFlow.NET</PackageProjectUrl>
  15. <PackageIconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&amp;v=4</PackageIconUrl>
  16. <RepositoryUrl>https://github.com/SciSharp/TensorFlow.NET</RepositoryUrl>
  17. <PackageReleaseNotes>Keras for .NET is a C# version of Keras ported from the python version.
  18. * Support CIFAR-10 dataset in keras.datasets.
  19. * Support Conv2D functional API.
  20. * Support BatchNormalization layer.
  21. * Building keras model in subclass, functional and sequential api
  22. * Implemented backward_function.
  23. * Support model.load_weights.
  24. * Add Subtract layer
  25. * Support YOLOv3 model.
  26. * Text preprocessing
  27. * Preprocessing.timeseries_dataset_from_array</PackageReleaseNotes>
  28. <Description>Keras for .NET
  29. 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>
  30. <Company>SciSharp STACK</Company>
  31. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  32. <PackageTags>tensorflow, keras, deep learning, machine learning</PackageTags>
  33. <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
  34. <RepositoryType>Git</RepositoryType>
  35. <SignAssembly>true</SignAssembly>
  36. <AssemblyOriginatorKeyFile>Open.snk</AssemblyOriginatorKeyFile>
  37. <AssemblyVersion>0.6.3.0</AssemblyVersion>
  38. <FileVersion>0.6.3.0</FileVersion>
  39. <PackageLicenseFile>LICENSE</PackageLicenseFile>
  40. </PropertyGroup>
  41. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  42. <DefineConstants>DEBUG;TRACE</DefineConstants>
  43. <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
  44. </PropertyGroup>
  45. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  46. <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
  47. </PropertyGroup>
  48. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  49. <DocumentationFile>Tensorflow.Keras.xml</DocumentationFile>
  50. </PropertyGroup>
  51. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  52. <DefineConstants />
  53. </PropertyGroup>
  54. <ItemGroup>
  55. <PackageReference Include="MethodBoundaryAspect.Fody" Version="2.0.139" />
  56. <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
  57. <PackageReference Include="SciSharp.Keras.HDF5" Version="1.1.10.500" />
  58. <PackageReference Include="SharpZipLib" Version="1.3.2" />
  59. </ItemGroup>
  60. <ItemGroup>
  61. <None Include="..\..\LICENSE">
  62. <Pack>True</Pack>
  63. <PackagePath></PackagePath>
  64. </None>
  65. </ItemGroup>
  66. <ItemGroup>
  67. <ProjectReference Include="..\TensorFlowNET.Core\Tensorflow.Binding.csproj" />
  68. </ItemGroup>
  69. </Project>