使用Tensorflow来读取训练自己的数据(二)
接上一篇,继续分析,model.py,也就是模型的构建。两个卷积层,两个池化层,以及后面的全连接层怎么通过tensorflow定义的。import tensorflow as tfdef inference(images, batch_size, n_classess): #conv1,shape=[kernel size, kernel size, channels, kernel ...