Browse Source

need to manually download tensorflow v1.14.

tags/v0.9
Oceania2018 6 years ago
parent
commit
a0fc3f8f39
1 changed files with 7 additions and 6 deletions
  1. +7
    -6
      src/TensorFlowNET.Core/TensorFlowNET.Core.csproj

+ 7
- 6
src/TensorFlowNET.Core/TensorFlowNET.Core.csproj View File

@@ -5,10 +5,10 @@
<AssemblyName>TensorFlow.NET</AssemblyName>
<RootNamespace>Tensorflow</RootNamespace>
<TargetTensorFlow>1.14.0</TargetTensorFlow>
<Version>0.8.2</Version>
<Authors>Haiping Chen</Authors>
<Version>0.8.3</Version>
<Authors>Haiping Chen, Meinrad Recheis</Authors>
<Company>SciSharp STACK</Company>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Copyright>Apache 2.0</Copyright>
<RepositoryUrl>https://github.com/SciSharp/TensorFlow.NET</RepositoryUrl>
<RepositoryType>git</RepositoryType>
@@ -17,15 +17,16 @@
<PackageTags>TensorFlow, NumSharp, SciSharp, MachineLearning, TensorFlow.NET, C#</PackageTags>
<Description>Google's TensorFlow full binding in .NET Standard.
Docs: https://tensorflownet.readthedocs.io</Description>
<AssemblyVersion>0.8.2.0</AssemblyVersion>
<AssemblyVersion>0.8.3.0</AssemblyVersion>
<PackageReleaseNotes>Changes since v0.8:

1. Remove global static graph instance.
2. Provide custom gradient function.
3. Add gradient function for Conv2D.
4. Fix bug for Transfer Learning example.</PackageReleaseNotes>
4. Fix bug for Transfer Learning example.
5. Overload Graph.Import(byte[] bytes)</PackageReleaseNotes>
<LangVersion>7.2</LangVersion>
<FileVersion>0.8.2.0</FileVersion>
<FileVersion>0.8.3.0</FileVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">


Loading…
Cancel
Save