Browse Source

released v0.9.0.

tags/v0.9
Oceania2018 6 years ago
parent
commit
1660ea9956
4 changed files with 13 additions and 5 deletions
  1. +3
    -1
      README.md
  2. +2
    -2
      TensorFlow.NET.sln
  3. +8
    -1
      src/TensorFlowNET.Core/TensorFlowNET.Core.csproj
  4. +0
    -1
      test/TensorFlowNET.Examples/TensorFlowNET.Examples.csproj

+ 3
- 1
README.md View File

@@ -186,7 +186,9 @@ git pull upstream master

Feel free to star or raise issue on [Github](https://github.com/SciSharp/TensorFlow.NET).

Join our chat on [Gitter](https://gitter.im/sci-sharp/community) or
Follow us on [Medium](https://medium.com/scisharp).

Join our chat on [Gitter](https://gitter.im/sci-sharp/community).

Scan QR code to join Tencent TIM group:



+ 2
- 2
TensorFlow.NET.sln View File

@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.28307.168
# Visual Studio Version 16
VisualStudioVersion = 16.0.29025.244
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TensorFlowNET.UnitTest", "test\TensorFlowNET.UnitTest\TensorFlowNET.UnitTest.csproj", "{029A8CF1-CF95-4DCB-98AA-9D3D96A83B3E}"
EndProject


+ 8
- 1
src/TensorFlowNET.Core/TensorFlowNET.Core.csproj View File

@@ -16,7 +16,8 @@
<PackageIconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&amp;v=4</PackageIconUrl>
<PackageTags>TensorFlow, NumSharp, SciSharp, MachineLearning, TensorFlow.NET, C#</PackageTags>
<Description>Google's TensorFlow full binding in .NET Standard.
Docs: https://tensorflownet.readthedocs.io</Description>
Docs: https://tensorflownet.readthedocs.io
Learn more about .NET AI: https://medium.com/scisharp</Description>
<AssemblyVersion>0.9.0.0</AssemblyVersion>
<PackageReleaseNotes>Changes since v0.8.3:

@@ -25,6 +26,8 @@ Docs: https://tensorflownet.readthedocs.io</Description>
3. Fixed AdaOptimizer issue.</PackageReleaseNotes>
<LangVersion>7.2</LangVersion>
<FileVersion>0.9.0.0</FileVersion>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
@@ -40,6 +43,10 @@ Docs: https://tensorflownet.readthedocs.io</Description>
<Compile Remove="runtimes\**" />
<EmbeddedResource Remove="runtimes\**" />
<None Remove="runtimes\**" />
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

<ItemGroup>


+ 0
- 1
test/TensorFlowNET.Examples/TensorFlowNET.Examples.csproj View File

@@ -17,7 +17,6 @@
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
<PackageReference Include="SharpZipLib" Version="1.1.0" />
<PackageReference Include="System.Drawing.Common" Version="4.5.1" />
<PackageReference Include="TensorFlow.NET" Version="0.8.3" />
</ItemGroup>

<ItemGroup>


Loading…
Cancel
Save