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

6 years ago
6 years ago
6 years ago
5 years ago
5 years ago
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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.15.1</Version>
  8. <Authors>Haiping Chen, Meinrad Recheis, Eli Belash</Authors>
  9. <Company>SciSharp STACK</Company>
  10. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  11. <Copyright>Apache 2.0</Copyright>
  12. <RepositoryUrl>https://github.com/SciSharp/TensorFlow.NET</RepositoryUrl>
  13. <RepositoryType>git</RepositoryType>
  14. <PackageProjectUrl>http://scisharpstack.org</PackageProjectUrl>
  15. <PackageIconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&amp;v=4</PackageIconUrl>
  16. <PackageTags>TensorFlow, NumSharp, SciSharp, MachineLearning, TensorFlow.NET, C#</PackageTags>
  17. <Description>Google's TensorFlow full binding in .NET Standard.
  18. Building, training and infering deep learning models.
  19. https://tensorflownet.readthedocs.io</Description>
  20. <AssemblyVersion>0.15.1.0</AssemblyVersion>
  21. <PackageReleaseNotes>Changes since v0.14.0:
  22. 1: Add TransformGraphWithStringInputs.
  23. 2: tf.trainer.load_graph, tf.trainer.freeze_graph
  24. 3: Import Protobuf.Text
  25. 4: Support YOLOv3 object detection
  26. 5: Add implicitation for Operation to RefVariable</PackageReleaseNotes>
  27. <LangVersion>7.3</LangVersion>
  28. <FileVersion>0.15.1.0</FileVersion>
  29. <PackageLicenseFile>LICENSE</PackageLicenseFile>
  30. <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
  31. <SignAssembly>true</SignAssembly>
  32. <AssemblyOriginatorKeyFile>Open.snk</AssemblyOriginatorKeyFile>
  33. </PropertyGroup>
  34. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  35. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  36. <DefineConstants>TRACE;DEBUG;SERIALIZABLE_</DefineConstants>
  37. <PlatformTarget>x64</PlatformTarget>
  38. </PropertyGroup>
  39. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  40. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  41. </PropertyGroup>
  42. <ItemGroup>
  43. <Compile Remove="Distribute\**" />
  44. <Compile Remove="Models\**" />
  45. <Compile Remove="runtimes\**" />
  46. <EmbeddedResource Remove="Distribute\**" />
  47. <EmbeddedResource Remove="Models\**" />
  48. <EmbeddedResource Remove="runtimes\**" />
  49. <None Remove="Distribute\**" />
  50. <None Remove="Models\**" />
  51. <None Remove="runtimes\**" />
  52. <None Include="..\..\LICENSE">
  53. <Pack>True</Pack>
  54. <PackagePath></PackagePath>
  55. </None>
  56. </ItemGroup>
  57. <ItemGroup>
  58. <None Remove="Protobuf\README.md" />
  59. </ItemGroup>
  60. <ItemGroup>
  61. <PackageReference Include="Google.Protobuf" Version="3.11.4" />
  62. <PackageReference Include="NumSharp.Lite" Version="0.1.5" />
  63. <PackageReference Include="Protobuf.Text" Version="0.4.0" />
  64. </ItemGroup>
  65. <ItemGroup>
  66. <Folder Include="Keras\Initializers\" />
  67. </ItemGroup>
  68. </Project>