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

6 years ago
6 years ago
6 years ago
5 years ago
5 years ago
5 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.0</TargetFramework>
  4. <AssemblyName>TensorFlow.NET</AssemblyName>
  5. <RootNamespace>Tensorflow</RootNamespace>
  6. <TargetTensorFlow>1.14.1</TargetTensorFlow>
  7. <Version>0.20.0</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#</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>Changes since v0.15.0:
  23. 1: Add TransformGraphWithStringInputs.
  24. 2: tf.trainer.load_graph, tf.trainer.freeze_graph
  25. 3: Import Protobuf.Text
  26. 4: Support YOLOv3 object detection
  27. 5: Add implicitation for Operation to RefVariable</PackageReleaseNotes>
  28. <FileVersion>0.20.0.0</FileVersion>
  29. <PackageLicenseFile>LICENSE</PackageLicenseFile>
  30. <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
  31. <SignAssembly>true</SignAssembly>
  32. <AssemblyOriginatorKeyFile>Open.snk</AssemblyOriginatorKeyFile>
  33. <Platforms>AnyCPU;x64</Platforms>
  34. </PropertyGroup>
  35. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  36. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  37. <DefineConstants>TRACE;DEBUG;SERIALIZABLE_</DefineConstants>
  38. <PlatformTarget>x64</PlatformTarget>
  39. </PropertyGroup>
  40. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  41. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  42. <DefineConstants>TRACE;DEBUG;SERIALIZABLE_</DefineConstants>
  43. <PlatformTarget>x64</PlatformTarget>
  44. </PropertyGroup>
  45. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  46. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  47. </PropertyGroup>
  48. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  49. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  50. </PropertyGroup>
  51. <ItemGroup>
  52. <Compile Remove="Distribute\**" />
  53. <Compile Remove="Models\**" />
  54. <Compile Remove="runtimes\**" />
  55. <EmbeddedResource Remove="Distribute\**" />
  56. <EmbeddedResource Remove="Models\**" />
  57. <EmbeddedResource Remove="runtimes\**" />
  58. <None Remove="Distribute\**" />
  59. <None Remove="Models\**" />
  60. <None Remove="runtimes\**" />
  61. <None Include="..\..\LICENSE">
  62. <Pack>True</Pack>
  63. <PackagePath></PackagePath>
  64. </None>
  65. </ItemGroup>
  66. <ItemGroup>
  67. <None Remove="Protobuf\README.md" />
  68. </ItemGroup>
  69. <ItemGroup>
  70. <PackageReference Include="Google.Protobuf" Version="3.11.4" />
  71. <PackageReference Include="NumSharp.Lite" Version="0.1.7" />
  72. <PackageReference Include="Protobuf.Text" Version="0.4.0" />
  73. </ItemGroup>
  74. <ItemGroup>
  75. <Folder Include="Keras\Initializers\" />
  76. </ItemGroup>
  77. </Project>