Skip to content

Commit 7e94ff6

Browse files
committed
Fixed mismerge
1 parent 78a9000 commit 7e94ff6

File tree

1 file changed

+9
-17
lines changed

1 file changed

+9
-17
lines changed

0_tf_hello_world.ipynb

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"You can use `ctrl-enter` to execute each snippet of code. The first snippet will check that TensorFlow is installed. "
7+
"You can press `shift + enter` to quickly advance through each line of a notebook. Try it now!\n",
8+
"This snippet of Python creates an extremely simple graph and runs."
89
]
910
},
1011
{
@@ -15,28 +16,19 @@
1516
},
1617
"outputs": [],
1718
"source": [
18-
"import tensorflow as tf"
19+
"import tensorflow as tf\n",
20+
"import matplotlib\n",
21+
"\n",
22+
"hello = tf.constant('Hello, TensorFlow!')\n",
23+
"sess = tf.Session()\n",
24+
"print(sess.run(hello))"
1925
]
2026
},
2127
{
2228
"cell_type": "markdown",
2329
"metadata": {},
2430
"source": [
25-
"Now, create an extremely simple graph and run it!"
26-
]
27-
},
28-
{
29-
"cell_type": "code",
30-
"execution_count": null,
31-
"metadata": {
32-
"collapsed": false
33-
},
34-
"outputs": [],
35-
"source": [
36-
"hello = tf.constant('Hello, TensorFlow!')\n",
37-
"sess = tf.Session()\n",
38-
"print(sess.run(hello)) \n",
39-
"print tf.__version__"
31+
"If you see \"Hello, TensorFlow!\", everything is working well."
4032
]
4133
}
4234
],

0 commit comments

Comments
 (0)