TensorFlow学习笔记

P1:tensorflow安装1pip install tensorflow P2:Hello World——衣服分类这个例子训练了一个神经网络模型,用于分类衣服图片,比如tshirt和运动鞋。 需要用到tf.keras,它是个用于建立和训练模型的高层次的API 1234567# TensorFlow and tf.kerasimport tensorflow as tffrom tens...