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

6 years ago
2 years ago
4 years ago
2 years ago
6 years ago
2 years ago
6 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
  4. <AssemblyName>Tensorflow.Keras</AssemblyName>
  5. <LangVersion>10.0</LangVersion>
  6. <Nullable>enable</Nullable>
  7. <RootNamespace>Tensorflow.Keras</RootNamespace>
  8. <Platforms>AnyCPU;x64</Platforms>
  9. <Version>1.0.0</Version>
  10. <Authors>Haiping Chen</Authors>
  11. <Product>Keras for .NET</Product>
  12. <Copyright>Apache 2.0, Haiping Chen 2023</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. * Text preprocessing
  26. * Preprocessing.timeseries_dataset_from_array
  27. * Fixed memory leak for YOLOv3 model.</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>1.0.0.0</AssemblyVersion>
  38. <FileVersion>1.0.0.0</FileVersion>
  39. <PackageLicenseFile>LICENSE</PackageLicenseFile>
  40. <Configurations>Debug;Release;GPU</Configurations>
  41. </PropertyGroup>
  42. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  43. <DefineConstants>DEBUG;TRACE</DefineConstants>
  44. <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
  45. </PropertyGroup>
  46. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='GPU|AnyCPU'">
  47. <DefineConstants>DEBUG;TRACE</DefineConstants>
  48. <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
  49. </PropertyGroup>
  50. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  51. <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
  52. </PropertyGroup>
  53. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  54. <DocumentationFile>Tensorflow.Keras.xml</DocumentationFile>
  55. </PropertyGroup>
  56. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='GPU|x64'">
  57. <DocumentationFile>Tensorflow.Keras.xml</DocumentationFile>
  58. </PropertyGroup>
  59. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  60. <DefineConstants />
  61. </PropertyGroup>
  62. <ItemGroup>
  63. <PackageReference Include="HDF5-CSharp" Version="1.16.3" />
  64. <PackageReference Include="MethodBoundaryAspect.Fody" Version="2.0.148" />
  65. <PackageReference Include="SharpZipLib" Version="1.4.2" />
  66. </ItemGroup>
  67. <ItemGroup>
  68. <None Include="..\..\LICENSE">
  69. <Pack>True</Pack>
  70. <PackagePath></PackagePath>
  71. </None>
  72. </ItemGroup>
  73. <ItemGroup>
  74. <ProjectReference Include="..\TensorFlowNET.Core\Tensorflow.Binding.csproj" />
  75. </ItemGroup>
  76. </Project>