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.Hub.csproj 1.4 kB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <RootNamespace>Tensorflow.Hub</RootNamespace>
  4. <TargetFramework>netstandard2.0</TargetFramework>
  5. <Version>0.1.1</Version>
  6. <Authors>Kerry Jiang, Haiping Chen</Authors>
  7. <Company>SciSharp STACK</Company>
  8. <Copyright>Apache 2.0</Copyright>
  9. <RepositoryUrl>https://github.com/SciSharp/TensorFlow.NET</RepositoryUrl>
  10. <RepositoryType>git</RepositoryType>
  11. <PackageProjectUrl>http://scisharpstack.org</PackageProjectUrl>
  12. <PackageTags>TensorFlow, SciSharp, MachineLearning</PackageTags>
  13. <Description>TensorFlow Hub is a library to foster the publication, discovery, and consumption of reusable parts of machine learning models.</Description>
  14. <PackageId>SciSharp.TensorFlowHub</PackageId>
  15. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  16. <PackageReleaseNotes>Fix GetNextBatch() bug.
  17. Upgrade NumSharp.Lite 0.1.4.</PackageReleaseNotes>
  18. <PackageIconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&amp;v=4</PackageIconUrl>
  19. <AssemblyName>TensorFlow.Hub</AssemblyName>
  20. </PropertyGroup>
  21. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. </PropertyGroup>
  24. <ItemGroup>
  25. <PackageReference Include="NumSharp.Lite" Version="0.1.4" />
  26. </ItemGroup>
  27. </Project>