AvenSun / TensorFlow.NET

Google's TensorFlow binding for .NET Standard, building and running the Machine Learning models in CSharp.

Home Page:https://github.com/SciSharp

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TensorFlow.NET

TensorFlow.NET provides .NET Standard binding for TensorFlow.

Join the chat at https://gitter.im/publiclab/publiclab Tensorflow.NET codecov NuGet Documentation Status

TensorFlow.NET is a member project of SciSharp STACK.

tensors_flowing

How to use

Install TensorFlow.NET through NuGet.

PM> Install-Package TensorFlow.NET

If you are using Linux or Mac OS, please download the pre-compiled dll here and place it in the working folder. This is only need for Linux and Mac OS, and already packed into NuGet for Windows.

Import tensorflow.net.

using Tensorflow;

Add two constants.

// Create a Constant op
var a = tf.constant(4.0f);
var b = tf.constant(5.0f);
var c = tf.add(a, b);

using (var sess = tf.Session())
{
    var o = sess.run(c);
}

Feed placeholder.

// Create a placeholder op
var a = tf.placeholder(tf.float32);
var b = tf.placeholder(tf.float32);
var c = tf.add(a, b);

using(var sess = tf.Session())
{
    var feed_dict = new Dictionary<Tensor, object>();
    feed_dict.Add(a, 3.0f);
    feed_dict.Add(b, 2.0f);

    var o = sess.run(c, feed_dict);
}

Read the docs & book The Definitive Guide to Tensorflow.NET.

More examples:

Star me or raise issue on Github feel free.

Scan QR code to join Tencent TIM group:

SciSharp STACK

About

Google's TensorFlow binding for .NET Standard, building and running the Machine Learning models in CSharp.

https://github.com/SciSharp

License:Apache License 2.0


Languages

Language:C# 99.1%Language:Python 0.8%Language:C++ 0.1%Language:C 0.0%