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

博客提供了TensorFlow快速入门教程的最新版本、英文版本及翻译建议链接。介绍了安装命令,包括导入库、加载准备MNIST数据集、构建模型、选择优化器和损失函数、训练评估模型等步骤,该图像分类器在数据集上准确度约达98%。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

最新版本: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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值