freeCodeCamp/guide/chinese/machine-learning/tensorflow-for-machine-lear.../index.md

17 lines
1.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
title: Machine Learning using Tensorflow
localeTitle: 使用Tensorflow进行机器学习
---
#### 什么是TensorFlow
“TensorFlow是一个用于研究和生产的开源机器学习库.TensorFlow为初学者和专家提供API用于开发桌面移动Web和云。”
Tensorflow允许用户创建数据流图。这些是描述数据如何在图表中移动的结构。这些节点彼此连接其中节点表示数学运算并且连接表示多维阵列或张量。
Tensorflow允许开发人员更多地关注应用程序的逻辑而不是陷入复杂的算法或找出实现这些算法的最佳方式。在创建深度网络时确定哪个节点需要连接到哪个节点也变得很繁琐。 Tensorflow可以更轻松地在层之间建立连接。因此开发人员更容易集中精力使应用程序更好。
#### 更多信息:
* [TensorFlow](https://www.tensorflow.org)
* [TensorFlow GitHub存储库](https://github.com/tensorflow)
* [维基百科TensorFlow](https://en.wikipedia.org/wiki/TensorFlow)