基于 Tensorflow 实现 CNN 对 FashionMNIST 分类——《计算机学科前沿研讨论》课程技术报告 2018.12.06
import tensorflow as tf
from tensorflow.examples.tutorials.mnist import input_data
mnist = input_data.read_data_sets('data/fashion/', one_hot=True)
sess = tf.InteractiveSession()
def weight_variable(shape):
initial = tf.truncated_norma...
原创
2020-05-11 09:04:09 ·
492 阅读 ·
0 评论