Browse Source

Release TensorFlow.NET v0.32, TensorFlow.Keras v0.3.

tags/keras_v0.3.0
Oceania2018 4 years ago
parent
commit
bf4f65b3aa
3 changed files with 10 additions and 6 deletions
  1. +3
    -5
      src/TensorFlowNET.Core/Tensorflow.Binding.csproj
  2. +3
    -1
      src/TensorFlowNET.Keras/Tensorflow.Keras.csproj
  3. +4
    -0
      test/TensorFlowNET.Native.UnitTest/Tensorflow.Native.UnitTest.csproj

+ 3
- 5
src/TensorFlowNET.Core/Tensorflow.Binding.csproj View File

@@ -19,7 +19,7 @@
<Description>Google's TensorFlow full binding in .NET Standard.
Building, training and infering deep learning models.
https://tensorflownet.readthedocs.io</Description>
<AssemblyVersion>0.31.2.0</AssemblyVersion>
<AssemblyVersion>0.32.0.0</AssemblyVersion>
<PackageReleaseNotes>tf.net 0.20.x and above are based on tensorflow native 2.x.

* Eager Mode is added finally.
@@ -27,10 +27,8 @@ https://tensorflownet.readthedocs.io</Description>
* tf.data is added.
* autograph works partially.

TensorFlow .NET v0.30 is focused on making more Keras API work including:
* tf.keras.datasets
* Building keras model in subclass, functional and sequential api</PackageReleaseNotes>
<FileVersion>0.31.2.0</FileVersion>
TensorFlow .NET v0.3x is focused on making more Keras API works</PackageReleaseNotes>
<FileVersion>0.32.0.0</FileVersion>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<SignAssembly>true</SignAssembly>


+ 3
- 1
src/TensorFlowNET.Keras/Tensorflow.Keras.csproj View File

@@ -18,7 +18,9 @@

* Support CIFAR-10 dataset in keras.datasets.
* Support Conv2D functional API.
* Support BatchNormalization layer.</PackageReleaseNotes>
* Support BatchNormalization layer.
* Building keras model in subclass, functional and sequential api
* Implemented backward_function.</PackageReleaseNotes>
<Description>Keras for .NET

Keras is an API designed for human beings, not machines. Keras follows best practices for reducing cognitive load: it offers consistent &amp; simple APIs, it minimizes the number of user actions required for common use cases, and it provides clear &amp; actionable error messages.</Description>


+ 4
- 0
test/TensorFlowNET.Native.UnitTest/Tensorflow.Native.UnitTest.csproj View File

@@ -20,6 +20,10 @@
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="5.10.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />


Loading…
Cancel
Save