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.Binding.csproj 3.5 kB

6 years ago
5 years ago
6 years ago
6 years ago
5 years ago
5 years ago
5 years ago
5 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.0</TargetFramework>
  4. <AssemblyName>TensorFlow.NET</AssemblyName>
  5. <RootNamespace>Tensorflow</RootNamespace>
  6. <TargetTensorFlow>2.2.0</TargetTensorFlow>
  7. <Version>0.20.0-alpha2</Version>
  8. <LangVersion>8.0</LangVersion>
  9. <Authors>Haiping Chen, Meinrad Recheis, Eli Belash</Authors>
  10. <Company>SciSharp STACK</Company>
  11. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  12. <Copyright>Apache 2.0</Copyright>
  13. <RepositoryUrl>https://github.com/SciSharp/TensorFlow.NET</RepositoryUrl>
  14. <RepositoryType>git</RepositoryType>
  15. <PackageProjectUrl>http://scisharpstack.org</PackageProjectUrl>
  16. <PackageIconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&amp;v=4</PackageIconUrl>
  17. <PackageTags>TensorFlow, NumSharp, SciSharp, MachineLearning, TensorFlow.NET, C#, TF.NET</PackageTags>
  18. <Description>Google's TensorFlow full binding in .NET Standard.
  19. Building, training and infering deep learning models.
  20. https://tensorflownet.readthedocs.io</Description>
  21. <AssemblyVersion>0.20.0.0</AssemblyVersion>
  22. <PackageReleaseNotes>tf.net 0.20.x and above are based on tensorflow native 2.x.
  23. Eager Mode is added finally.
  24. It's not stable at this moment and missing many APIs, tf.net 0.15.x is more stable for production.
  25. Please be patient, we're working hard on missing functions, providing full tensorflow binding is our mission.</PackageReleaseNotes>
  26. <FileVersion>0.20.0.0</FileVersion>
  27. <PackageLicenseFile>LICENSE</PackageLicenseFile>
  28. <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
  29. <SignAssembly>true</SignAssembly>
  30. <AssemblyOriginatorKeyFile>Open.snk</AssemblyOriginatorKeyFile>
  31. <Platforms>AnyCPU;x64</Platforms>
  32. </PropertyGroup>
  33. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  34. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  35. <DefineConstants>TRACE;DEBUG</DefineConstants>
  36. <PlatformTarget>AnyCPU</PlatformTarget>
  37. </PropertyGroup>
  38. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  39. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  40. <DefineConstants>TRACE;DEBUG</DefineConstants>
  41. <PlatformTarget>x64</PlatformTarget>
  42. </PropertyGroup>
  43. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  44. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  45. </PropertyGroup>
  46. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  47. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  48. </PropertyGroup>
  49. <ItemGroup>
  50. <Compile Remove="Distribute\**" />
  51. <Compile Remove="Models\**" />
  52. <Compile Remove="runtimes\**" />
  53. <EmbeddedResource Remove="Distribute\**" />
  54. <EmbeddedResource Remove="Models\**" />
  55. <EmbeddedResource Remove="runtimes\**" />
  56. <None Remove="Distribute\**" />
  57. <None Remove="Models\**" />
  58. <None Remove="runtimes\**" />
  59. <Compile Remove="Util\BindingArray2.cs" />
  60. <None Include="..\..\LICENSE">
  61. <Pack>True</Pack>
  62. <PackagePath></PackagePath>
  63. </None>
  64. </ItemGroup>
  65. <ItemGroup>
  66. <None Remove="Protobuf\README.md" />
  67. </ItemGroup>
  68. <ItemGroup>
  69. <PackageReference Include="Google.Protobuf" Version="3.11.4" />
  70. <PackageReference Include="NumSharp.Lite" Version="0.1.7" />
  71. <PackageReference Include="Protobuf.Text" Version="0.4.0" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <Folder Include="Keras\Initializers\" />
  75. </ItemGroup>
  76. </Project>