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> <AssemblyName>TensorFlow.NET</AssemblyName>
<RootNamespace>Tensorflow</RootNamespace> <RootNamespace>Tensorflow</RootNamespace>
<TargetTensorFlow>1.14.0</TargetTensorFlow> <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> <Company>SciSharp STACK</Company>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Copyright>Apache 2.0</Copyright> <Copyright>Apache 2.0</Copyright>
<RepositoryUrl>https://github.com/SciSharp/TensorFlow.NET</RepositoryUrl> <RepositoryUrl>https://github.com/SciSharp/TensorFlow.NET</RepositoryUrl>
<RepositoryType>git</RepositoryType> <RepositoryType>git</RepositoryType>
@@ -17,15 +17,16 @@
<PackageTags>TensorFlow, NumSharp, SciSharp, MachineLearning, TensorFlow.NET, C#</PackageTags> <PackageTags>TensorFlow, NumSharp, SciSharp, MachineLearning, TensorFlow.NET, C#</PackageTags>
<Description>Google's TensorFlow full binding in .NET Standard. <Description>Google's TensorFlow full binding in .NET Standard.
Docs: https://tensorflownet.readthedocs.io</Description> Docs: https://tensorflownet.readthedocs.io</Description>
<AssemblyVersion>0.8.2.0</AssemblyVersion>
<AssemblyVersion>0.8.3.0</AssemblyVersion>
<PackageReleaseNotes>Changes since v0.8: <PackageReleaseNotes>Changes since v0.8:


1. Remove global static graph instance. 1. Remove global static graph instance.
2. Provide custom gradient function. 2. Provide custom gradient function.
3. Add gradient function for Conv2D. 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> <LangVersion>7.2</LangVersion>
<FileVersion>0.8.2.0</FileVersion>
<FileVersion>0.8.3.0</FileVersion>
</PropertyGroup> </PropertyGroup>


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


Loading…
Cancel
Save