Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion core-tutorial/hello_world.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
node2 = tf.constant(4.0) # also tf.float32 implicitly

# Just prints info about the nodes. Doesn't actually run them.
# printing ("hello world")
print(node1, node2)

# Here, we actually run the nodes in a session
sess = tf.Session()
print(sess.run([node1, node2]))
print(sess.run([node1, node2]))