tensorflow
zhaoying9105
这个作者很懒,什么都没留下…
展开
-
TensorFlow-gpu 无法导入_pywrap_tensorflow_internal的错误
解决方法在安装的cuda/bin文件夹下,把cudnn64_6.dll 文件改名为 cudnn64_5.dll来源 https://stackoverflow.com/questions/43577923/cannot-import-tensorflow-for-gpu-on-windows-10原创 2017-06-02 09:50:16 · 4300 阅读 · 0 评论 -
TensorFlow中CNN/卷积神经网络算法的理解
tf.nn.conv2d(input, filter, strides, padding, use_cudnn_on_gpu=None, name=None)主要是理解input 和filter的结构input: [batch, in_height, in_width, in_channels] in_height, in_width 表示图片的宽度和高度,一般是以像素为单位; batch 表示这原创 2017-06-02 10:25:08 · 476 阅读 · 0 评论