数据集下载1、imageNet https://image-net.org/
2、 CIFAR-10 http://www.cs.toronto.edu/~kriz/cifar.html
1.基础笔记
1.1 matmul 矩阵相乘
x = [[1.01, 1.5, 1.3], [2.1, 2.5, 3.4]]y = [[2.5, 5.4], [4.1, 6.1], [2.4, 4.1]]m = tf.matmul(x, y)print(m)
