using System; using System.Collections.Generic; using System.Text; using Tensorflow; namespace TensorFlowNET.Examples { /// /// Simple hello world using TensorFlow /// https://github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/1_Introduction/helloworld.py /// public class HelloWorld : Python, IExample { public int Priority => 1; public bool Enabled { get; set; } = true; public string Name => "Hello World"; public bool Run() { /* Create a Constant op The op is added as a node to the default graph. The value returned by the constructor represents the output of the Constant op. */ var str = "Hello, TensorFlow.NET!"; var hello = tf.constant(str); // Start tf session return with(tf.Session(), sess => { // Run the op var result = sess.run(hello); Console.WriteLine(result.ToString()); return result.ToString().Equals(str); }); } public void PrepareData() { } } }