Remove use_cudnn_on_gpu=False in notebook for chapter 13

main
Aurélien Geron 2017-09-15 16:52:54 +02:00
parent 46c05c8ed3
commit 3d3b610634
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@
"\n", "\n",
"X = tf.placeholder(tf.float32, shape=(None, height, width, 1))\n", "X = tf.placeholder(tf.float32, shape=(None, height, width, 1))\n",
"feature_maps = tf.constant(fmap)\n", "feature_maps = tf.constant(fmap)\n",
"convolution = tf.nn.conv2d(X, feature_maps, strides=[1,1,1,1], padding=\"SAME\", use_cudnn_on_gpu=False)" "convolution = tf.nn.conv2d(X, feature_maps, strides=[1,1,1,1], padding=\"SAME\")"
] ]
}, },
{ {