Skip to content

Commit bf4f65b

Browse files
committed
Release TensorFlow.NET v0.32, TensorFlow.Keras v0.3.
1 parent 6d1b459 commit bf4f65b

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

src/TensorFlowNET.Core/Tensorflow.Binding.csproj

+3-5
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,16 @@
1919
<Description>Google's TensorFlow full binding in .NET Standard.
2020
Building, training and infering deep learning models.
2121
https://tensorflownet.readthedocs.io</Description>
22-
<AssemblyVersion>0.31.2.0</AssemblyVersion>
22+
<AssemblyVersion>0.32.0.0</AssemblyVersion>
2323
<PackageReleaseNotes>tf.net 0.20.x and above are based on tensorflow native 2.x.
2424

2525
* Eager Mode is added finally.
2626
* tf.keras is partially working.
2727
* tf.data is added.
2828
* autograph works partially.
2929

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

src/TensorFlowNET.Keras/Tensorflow.Keras.csproj

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818

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

2426
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>

test/TensorFlowNET.Native.UnitTest/Tensorflow.Native.UnitTest.csproj

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
<PlatformTarget>x64</PlatformTarget>
2121
</PropertyGroup>
2222

23+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
24+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
25+
</PropertyGroup>
26+
2327
<ItemGroup>
2428
<PackageReference Include="FluentAssertions" Version="5.10.3" />
2529
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />

0 commit comments

Comments
 (0)