Commit 166ca5d0 authored by Mark Daoust's avatar Mark Daoust
Browse files

Fix keras example

parent d50165de
...@@ -679,7 +679,7 @@ ...@@ -679,7 +679,7 @@
"def collatz(x):\n", "def collatz(x):\n",
" x=tf.reshape(x,())\n", " x=tf.reshape(x,())\n",
" assert x>0\n", " assert x>0\n",
" n = tf.convert_to_tensor(0) \n", " n = tf.convert_to_tensor((0,)) \n",
" while not tf.equal(x,1):\n", " while not tf.equal(x,1):\n",
" n+=1\n", " n+=1\n",
" if tf.equal(x%2, 0):\n", " if tf.equal(x%2, 0):\n",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment