From 9eb19b66db7b92f2dc1ba1556149fe23b9f667cd Mon Sep 17 00:00:00 2001 From: Anish Shah Date: Sun, 3 Jan 2016 21:01:25 +0530 Subject: [PATCH] Change tf.types.int16 to tf.int16 --- .../notebooks/1_intro/basic_operations.ipynb | 31 ++++++++++++------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/deep-learning/tensor-flow-examples/notebooks/1_intro/basic_operations.ipynb b/deep-learning/tensor-flow-examples/notebooks/1_intro/basic_operations.ipynb index 79a1b60..7a9794c 100644 --- a/deep-learning/tensor-flow-examples/notebooks/1_intro/basic_operations.ipynb +++ b/deep-learning/tensor-flow-examples/notebooks/1_intro/basic_operations.ipynb @@ -15,7 +15,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 1, "metadata": { "collapsed": true }, @@ -26,7 +26,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 2, "metadata": { "collapsed": true }, @@ -41,7 +41,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 3, "metadata": { "collapsed": false }, @@ -68,7 +68,7 @@ "cell_type": "code", "execution_count": 5, "metadata": { - "collapsed": true + "collapsed": false }, "outputs": [], "source": [ @@ -76,8 +76,8 @@ "# The value returned by the constructor represents the output\n", "# of the Variable op. (define as input when running session)\n", "# tf Graph input\n", - "a = tf.placeholder(tf.types.int16)\n", - "b = tf.placeholder(tf.types.int16)" + "a = tf.placeholder(tf.int16)\n", + "b = tf.placeholder(tf.int16)" ] }, { @@ -194,25 +194,34 @@ " result = sess.run(product)\n", " print result" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [] } ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 2", "language": "python", - "name": "python3" + "name": "python2" }, "language_info": { "codemirror_mode": { "name": "ipython", - "version": 3 + "version": 2 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.3" + "pygments_lexer": "ipython2", + "version": "2.7.5+" } }, "nbformat": 4,