初学者入门 TensorFlow 2.0(tensorflow2官方教程翻译)

最新版本:http://www.mashangxue123.com/tensorflow/tf2-tutorials-quickstart-beginner.html
英文版本:https://tensorflow.google.cn/alpha/tutorials/quickstart/beginner
翻译建议PR:https://github.com/mashangxue/tensorflow2-zh/edit/master/r2/tutorials/quickstart/beginner.md

安装命令:

pip install tensorflow-gpu==2.0.0-alpha0

要开始,请将TensorFlow库导入您的程序:

from __future__ import absolute_import, division, print_function, unicode_literals
import tensorflow as tf

加载并准备MNIST数据集,将样本从整数转换为浮点数:

mnist = tf.keras.datasets.mnist

(x_train, y_train), (x_test, y_test) = mnist.load_data()
x_train, x_test = x_train / 255.0, x_test / 255.0

通过堆叠图层构建tf.keras.Sequential模型。选择用于训练的优化器和损失函数:

model = tf.keras.models.Sequential([
  tf.keras.layers.Flatten(input_shape=(28, 28)),
  tf.keras.layers.Dense(128, activation='relu'),
  tf.keras.layers.Dropout(0.2),
  tf.keras.layers.Dense(10, activation='softmax')
])

model.compile(optimizer='adam',
              loss='sparse_categorical_crossentropy',
              metrics=['accuracy'])

训练和评估模型:

model.fit(x_train, y_train, epochs=5)

model.evaluate(x_test, y_test)

现在,图像分类器在该数据集上的准确度达到约98%。 要了解更多信息,请阅读TensorFlow教程.。

最新版本:http://www.mashangxue123.com/tensorflow/tf2-tutorials-quickstart-beginner
英文版本:https://tensorflow.google.cn/alpha/tutorials/quickstart/beginner
翻译建议PR:https://github.com/mashangxue/tensorflow2-zh/edit/master/r2/tutorials/quickstart/beginner.md

©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容