TensorFlow.NET (TF.NET) provides a .NET Standard binding for TensorFlow. It aims to implement the complete Tensorflow API in C# which allows .NET developers to develop, train and deploy Machine Learning models with the cross-platform .NET Standard framework. TensorFlow.NET has built-in Keras high-level interface and is released as an independent package TensorFlow.Keras.
[!IMPORTANT]
We’re happy that our work on tensorflow.net has attracted many users. However, at this time, none of the main maintainers of this repo is available for new features and bug fix. We won’t refuse PRs and will help to review them.
If you would like to be a contributor or maintainer of tensorflow.net, we’d like to help you to start up.
We feel sorry for that and we’ll resume the maintaining for this project once one of us has bandwidth for it.
master branch and v0.100.x is corresponding to tensorflow v2.10, v0.6x branch is from tensorflow v2.6, v0.15-tensorflow1.15 is from tensorflow1.15. Please add https://www.myget.org/F/scisharp/api/v3/index.json to nuget source to use nightly release.
Why Tensorflow.NET ?
SciSharp STACK‘s mission is to bring popular data science technology into the .NET world and to provide .NET developers with a powerful Machine Learning tool set without reinventing the wheel. Since the APIs are kept as similar as possible you can immediately adapt any existing TensorFlow code in C# or F# with a zero learning curve. Take a look at a comparison picture and see how comfortably a TensorFlow/Python script translates into a C# program with TensorFlow.NET.
SciSharp’s philosophy allows a large number of machine learning code written in Python to be quickly migrated to .NET, enabling .NET developers to use cutting edge machine learning models and access a vast number of TensorFlow resources which would not be possible without this project.
In comparison to other projects, like for instance TensorFlowSharp which only provide TensorFlow’s low-level C++ API and can only run models that were built using Python, Tensorflow.NET makes it possible to build the pipeline of training and inference with pure C# and F#. Besides, Tensorflow.NET provides binding of Tensorflow.Keras to make it easy to transfer your code from python to .NET.
ML.NET also take Tensorflow.NET as one of the backends to train and infer your model, which provides better integration with .NET.
The second part is the computing support part. Only one of the following packages is needed, depending on your device and system.
### CPU version for Windows and Linux
PM> Install-Package SciSharp.TensorFlow.Redist
### CPU version for MacOS
PM> Install-Package SciSharp.TensorFlow.Redist-OSX
### GPU version for Windows (CUDA and cuDNN are required)
PM> Install-Package SciSharp.TensorFlow.Redist-Windows-GPU
### GPU version for Linux (CUDA and cuDNN are required)
PM> Install-Package SciSharp.TensorFlow.Redist-Linux-GPU
Two simple examples are given here to introduce the basic usage of Tensorflow.NET. As you can see, it’s easy to write C# code just like that in Python.
Example - Linear Regression in Eager mode
using static Tensorflow.Binding;
using static Tensorflow.KerasApi;
using Tensorflow;
using Tensorflow.NumPy;
// Parameters
var training_steps = 1000;
var learning_rate = 0.01f;
var display_step = 100;
// Sample data
var X = np.array(3.3f, 4.4f, 5.5f, 6.71f, 6.93f, 4.168f, 9.779f, 6.182f, 7.59f, 2.167f,
7.042f, 10.791f, 5.313f, 7.997f, 5.654f, 9.27f, 3.1f);
var Y = np.array(1.7f, 2.76f, 2.09f, 3.19f, 1.694f, 1.573f, 3.366f, 2.596f, 2.53f, 1.221f,
2.827f, 3.465f, 1.65f, 2.904f, 2.42f, 2.94f, 1.3f);
var n_samples = X.shape[0];
// We can set a fixed init value in order to demo
var W = tf.Variable(-0.06f, name: "weight");
var b = tf.Variable(-0.73f, name: "bias");
var optimizer = keras.optimizers.SGD(learning_rate);
// Run training for the given number of steps.
foreach (var step in range(1, training_steps + 1))
{
// Run the optimization to update W and b values.
// Wrap computation inside a GradientTape for automatic differentiation.
using var g = tf.GradientTape();
// Linear regression (Wx + b).
var pred = W * X + b;
// Mean square error.
var loss = tf.reduce_sum(tf.pow(pred - Y, 2)) / (2 * n_samples);
// should stop recording
// Compute gradients.
var gradients = g.gradient(loss, (W, b));
// Update W and b following gradients.
optimizer.apply_gradients(zip(gradients, (W, b)));
if (step % display_step == 0)
{
pred = W * X + b;
loss = tf.reduce_sum(tf.pow(pred - Y, 2)) / (2 * n_samples);
print(quot;step: {step}, loss: {loss.numpy()}, W: {W.numpy()}, b: {b.numpy()}");
}
}
Feel like contributing to one of the hottest projects in the Machine Learning field? Want to know how Tensorflow magically creates the computational graph?
We appreciate every contribution however small! There are tasks for novices to experts alike, if everyone tackles only a small task the sum of contributions will be huge.
You can:
Star Tensorflow.NET or share it with others
Tell us about the missing APIs compared to Tensorflow
Port Tensorflow unit tests from Python to C# or F#
Port Tensorflow examples to C# or F# and raise issues if you come accross missing parts of the API or BUG
Debug one of the unit tests that is marked as Ignored to get it to work
Debug one of the not yet working examples and get it to work
Help us to complete the documentions.
How to debug unit tests:
The best way to find out why a unit test is failing is to single step it in C# or F# and its corresponding Python at the same time to see where the flow of execution digresses or where variables exhibit different values. Good Python IDEs like PyCharm let you single step into the tensorflow library code.
Git Knowhow for Contributors
Add SciSharp/TensorFlow.NET as upstream to your local repo …
TensorFlow.NET (TF.NET) provides a .NET Standard binding for TensorFlow. It aims to implement the complete Tensorflow API in C# which allows .NET developers to develop, train and deploy Machine Learning models with the cross-platform .NET Standard framework. TensorFlow.NET has built-in Keras high-level interface and is released as an independent package TensorFlow.Keras.
English | 中文
master branch and v0.100.x is corresponding to tensorflow v2.10, v0.6x branch is from tensorflow v2.6, v0.15-tensorflow1.15 is from tensorflow1.15. Please add
https://www.myget.org/F/scisharp/api/v3/index.json
to nuget source to use nightly release.Why Tensorflow.NET ?
SciSharp STACK
‘s mission is to bring popular data science technology into the .NET world and to provide .NET developers with a powerful Machine Learning tool set without reinventing the wheel. Since the APIs are kept as similar as possible you can immediately adapt any existing TensorFlow code in C# or F# with a zero learning curve. Take a look at a comparison picture and see how comfortably a TensorFlow/Python script translates into a C# program with TensorFlow.NET.SciSharp’s philosophy allows a large number of machine learning code written in Python to be quickly migrated to .NET, enabling .NET developers to use cutting edge machine learning models and access a vast number of TensorFlow resources which would not be possible without this project.
In comparison to other projects, like for instance TensorFlowSharp which only provide TensorFlow’s low-level C++ API and can only run models that were built using Python, Tensorflow.NET makes it possible to build the pipeline of training and inference with pure C# and F#. Besides, Tensorflow.NET provides binding of Tensorflow.Keras to make it easy to transfer your code from python to .NET.
ML.NET also take Tensorflow.NET as one of the backends to train and infer your model, which provides better integration with .NET.
Documention
Introduction and simple examples:Tensorflow.NET Documents
Detailed documention:The Definitive Guide to Tensorflow.NET
Examples:TensorFlow.NET Examples
Troubleshooting of running example or installation:Tensorflow.NET FAQ
Usage
Installation
You can search the package name in NuGet Manager, or use the commands below in package manager console.
The installation contains two parts, the first is the main body:
The second part is the computing support part. Only one of the following packages is needed, depending on your device and system.
Two simple examples are given here to introduce the basic usage of Tensorflow.NET. As you can see, it’s easy to write C# code just like that in Python.
Example - Linear Regression in
Eager
modeRun this example in Jupyter Notebook.
Example - Toy version of
ResNet
inKeras
functional APIThe F# example for linear regression is available here.
More adcanced examples could be found in TensorFlow.NET Examples.
Version Relationships
Contribution:
Feel like contributing to one of the hottest projects in the Machine Learning field? Want to know how Tensorflow magically creates the computational graph?
We appreciate every contribution however small! There are tasks for novices to experts alike, if everyone tackles only a small task the sum of contributions will be huge.
You can:
How to debug unit tests:
The best way to find out why a unit test is failing is to single step it in C# or F# and its corresponding Python at the same time to see where the flow of execution digresses or where variables exhibit different values. Good Python IDEs like PyCharm let you single step into the tensorflow library code.
Git Knowhow for Contributors
Add SciSharp/TensorFlow.NET as upstream to your local repo …
Please make sure you keep your fork up to date by regularly pulling from upstream.
Support
Buy our book to make open source project be sustainable TensorFlow.NET实战
Contact
Join our chat on Discord or Gitter.
Follow us on Twitter, Facebook, Medium, LinkedIn.
TensorFlow.NET is a part of SciSharp STACK