卷积神经网络实现
net新建netWork.py,添加以下代码
准备import tensorflow as tfimport config# 卷积操作def conv2d(name, l_input, w, b): return tf.nn.relu(tf.nn.bias_add(tf.nn.conv2d(l
...
Viva La Vida