多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# 神经网络 在本章中,我们将介绍神经网络以及如何在 TensorFlow 中实现它们。大多数后续章节将基于神经网络,因此学习如何在 TensorFlow 中使用它们非常重要。在开始使用多层网络之前,我们将首先介绍神经网络的基本概念。在上一节中,我们将创建一个神经网络,学习如何玩 Tic Tac Toe。 在本章中,我们将介绍以下秘籍: * 实现操作门 * 使用门和激活函数 * 实现单层神经网络 * 实现不同的层 * 使用多层网络 * 改进线性模型的预测 * 学习玩 Tic Tac Toe 读者可以在 [https://github.com/nfmcclure/tensorflow_cookbook](https://github.com/nfmcclure/tensorflow_cookbook) 和 Packt 仓库中找到本章中的所有代码: [https://github.com/PacktPublishing/ TensorFlow-Machine-Learning-Cookbook-Second-Edition](https://github.com/PacktPublishing/TensorFlow-Machine-Learning-Cookbook-Second-Edition) 。