forked from SciSharp/TensorFlow.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHelloWorld.cs
More file actions
30 lines (26 loc) · 823 Bytes
/
HelloWorld.cs
File metadata and controls
30 lines (26 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
using System.Collections.Generic;
using System.Text;
using Tensorflow;
namespace TensorFlowNET.Examples
{
/// <summary>
/// Simple hello world using TensorFlow
/// https://github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/1_Introduction/helloworld.py
/// </summary>
public class HelloWorld : IExample
{
public void 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 hello = tf.constant("Hello, TensorFlow!");
// Start tf session
var sess = tf.Session();
// Run the op
sess.run(hello);
}
}
}