TensorFlowSharp 1.5.0-pre1

This is a prerelease version of TensorFlowSharp.
There is a newer version of this package available.
See the version list below for details.
dotnet add package TensorFlowSharp --version 1.5.0-pre1
NuGet\Install-Package TensorFlowSharp -Version 1.5.0-pre1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TensorFlowSharp" Version="1.5.0-pre1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TensorFlowSharp --version 1.5.0-pre1
#r "nuget: TensorFlowSharp, 1.5.0-pre1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install TensorFlowSharp as a Cake Addin
#addin nuget:?package=TensorFlowSharp&version=1.5.0-pre1&prerelease

// Install TensorFlowSharp as a Cake Tool
#tool nuget:?package=TensorFlowSharp&version=1.5.0-pre1&prerelease

Build Status

TensorFlowSharp are .NET bindings to the TensorFlow library published here:

https://github.com/tensorflow/tensorflow

This surfaces the C API as a strongly-typed .NET API for use from C# and F#.

The API binding is pretty much done, and at this point, I am polishing the API to make it more pleasant to use from C# and F# and resolving some of the kinks and TODO-items that I left while I was doing the work.

The current API documentation is here.

Using TensorFlowSharp

Installation

The easiest way to get started is to use the NuGet package for TensorFlowSharp which contains both the .NET API as well as the native libraries for 64-bit Linux, Mac and Windows using the CPU backend.

You can install using NuGet like this:

nuget install TensorFlowSharp

Or select it from the NuGet packages UI on Visual Studio.

On Visual Studio, make sure that you are targeting .NET 4.6.1 or later, as this package uses some features of newer .NETs. Otherwise, the package will not be added. Once you do this, you can just use the TensorFlowSharp nuget

Alternatively, you can download it directly.

Using TensorFlowSharp

Your best source of information right now are the SampleTest that exercises various APIs of TensorFlowSharp, or the stand-alone samples located in "Examples".

This API binding is closer design-wise to the Java and Go bindings which use explicit TensorFlow graphs and sessions. Your application will typically create a graph (TFGraph) and setup the operations there, then create a session from it (TFSession), then use the session runner to setup inputs and outputs and execute the pipeline.

Something like this:

using(var graph = new TFGraph ())
{
    graph.Import (File.ReadAllBytes ("MySavedModel"));
    var session = new TFSession (graph);
    var runner = session.GetRunner ();
    runner.AddInput (graph ["input"] [0], tensor);
    runner.Fetch (graph ["output"] [0]);

    var output = runner.Run ();

    // Fetch the results from output:
    TFTensor result = output [0];
}

In scenarios where you do not need to setup the graph independently, the session will create one for you. The following example shows how to abuse TensorFlow to compute the addition of two numbers:

using (var session = new TFSession())
{
    var graph = session.Graph;

    var a = graph.Const(2);
    var b = graph.Const(3);
    Console.WriteLine("a=2 b=3");

    // Add two constants
    var addingResults = session.GetRunner().Run(graph.Add(a, b));
    var addingResultValue = addingResults.GetValue();
    Console.WriteLine("a+b={0}", addingResultValue);

    // Multiply two constants
    var multiplyResults = session.GetRunner().Run(graph.Mul(a, b));
    var multiplyResultValue = multiplyResults.GetValue();
    Console.WriteLine("a*b={0}", multiplyResultValue);
}

Here is an F# scripting version of the same example, you can use this in F# Interactive:

#r @"packages\TensorFlowSharp.1.4.0\lib\net461\TensorFlowSharp.dll"

open System
open System.IO
open TensorFlow

// set the path to find the native DLL
Environment.SetEnvironmentVariable("Path", 
    Environment.GetEnvironmentVariable("Path") + ";" + __SOURCE_DIRECTORY__ + @"/packages/TensorFlowSharp.1.2.2/native")

module AddTwoNumbers = 
    let session = new TFSession()
    let graph = session.Graph

    let a = graph.Const(new TFTensor(2))
    let b = graph.Const(new TFTensor(3))
    Console.WriteLine("a=2 b=3")

    // Add two constants
    let addingResults = session.GetRunner().Run(graph.Add(a, b))
    let addingResultValue = addingResults.GetValue()
    Console.WriteLine("a+b={0}", addingResultValue)

    // Multiply two constants
    let multiplyResults = session.GetRunner().Run(graph.Mul(a, b))
    let multiplyResultValue = multiplyResults.GetValue()
    Console.WriteLine("a*b={0}", multiplyResultValue)

Working on TensorFlowSharp

If you want to work on extending TensorFlowSharp or contribute to its development read the CONTRIBUTING.md file.

Possible Contributions

Build More Tests

Would love to have more tests to ensure the proper operation of the framework.

Samples

The binding is pretty much complete, and at this point, I want to improve the API to be easier and more pleasant to use from both C# and F#. Creating samples that use Tensorflow is a good way of finding easy wins on the usability of the API, there are some here:

https://github.com/tensorflow/models

Packaging

Mobile: we need to package the library for consumption on Android and iOS.

Documentation Styling

The API documentation has not been styled, I am using the barebones template for documentation, and it can use some work.

Issues

I have logged some usability problems and bugs in Issues, feel free to take on one of those tasks.

Notes on OpDefs

Look at:

./tensorflow/core/ops/ops.pbtxt AvgPool3D and: ./tensorflow/core/ops/nn_ops.cc for the C++ implementation with type definitions

Docs on types: https://www.tensorflow.org/extend/adding_an_op

Documentation

Much of the online documentation comes from TensorFlow and is licensed under the terms of Apache 2 License, in particular all the generated documentation for the various operations that is generated by using the tensorflow reflection APIs.

Last API update: a4b352bfddd518b540c30e456f3bc0027ba9351f

Product Compatible and additional computed target framework versions.
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on TensorFlowSharp:

Package Downloads
DeepMorphy

Morphological analyzer for Russian language

SiaNet.Backend.TensorFlowLib

TensorFlow backend for SiaNet library. Please install SiaNet along with this backend.

Neuromatic

Package Description

Crosser.EdgeNode.Modules.TensorFlow

Package Description

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on TensorFlowSharp:

Repository Stars
cesarsouza/keras-sharp
Keras# initiated as an effort to port the Keras deep learning library to C#, supporting both TensorFlow and CNTK
Azure/sg-aks-workshop
Security + Governance Workshop
Version Downloads Last updated
1.15.1 178,043 12/4/2019
1.15.0 5,137 11/25/2019
1.15.0-pre2 1,136 11/7/2019
1.15.0-pre1 982 11/5/2019
1.13.1 88,937 11/4/2019
1.13.0 113,438 5/1/2019
1.12.0 44,608 12/6/2018
1.11.0 14,916 10/2/2018
1.10.0 6,392 9/7/2018
1.9.0 6,947 8/7/2018
1.9.0-pre1 1,679 8/2/2018
1.8.0-pre1 7,420 5/25/2018
1.7.0 37,493 4/15/2018
1.7.0-pre1 1,451 4/3/2018
1.6.0-pre1 1,697 3/11/2018
1.5.1-pre1 1,247 3/1/2018
1.5.0 12,931 1/27/2018
1.5.0-pre2 1,180 1/24/2018
1.5.0-pre1 1,191 1/14/2018
1.4.0 12,328 11/22/2017
1.4.0-pre1 1,660 11/5/2017
1.3.1-pre1 1,179 9/15/2017
1.3.0 3,692 9/15/2017
1.3.0-pre1 1,942 8/26/2017
1.2.2 12,789 6/28/2017
1.2.1 1,437 6/28/2017
0.96.0 9,189 5/21/2017
0.95.0 1,347 5/21/2017
0.94.0 1,364 5/21/2017
0.13.1 906 11/4/2019
0.13.0 1,560 5/1/2019

Adds support for TensorFlor 1.5

* This brings support for the TensorFlow 1.5 API
* New transpose overload without explicit perm parameter (Cesar Souza)
* New ReduceProd method (Cesar Souza)
* Supports for TensorFlow.Cond (Cesar Souza)