TensorFlow.NET provides .NET Standard binding for TensorFlow.
TensorFlow.NET is a member project of SciSharp stack.
using TensorFlowNET.Core;
namespace TensorFlowNET.Examples
{
public class HelloWorld : IExample
{
public void Run()
{
var hello = tf.constant("Hello, TensorFlow!");
}
}
}