tensorflow学习

Posted wxer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tensorflow学习相关的知识,希望对你有一定的参考价值。

Q: What is Computational Graph?
A: Computational Graph is a series of Tensorflow operations arranged into a graph of nodes.

Q: How to building the Computational Graph?
A: Each Node takes zeros or more tensors as inputs and produces a tensor as an output.
One type of Node is a constant. Like all tensorflow constants, it takes no inputs, and it outputs a value it stores internally.

Q: How to run the computational graph?
A: Using "Session" object the invoking the run method to run enough of the computational graph

Q: How to Display the picture of the computational graph?
A: Tensorflow provides a utility called TensorBoard that can display a picture of the computational graph.

 

以上是关于tensorflow学习的主要内容,如果未能解决你的问题,请参考以下文章

AI常用框架和工具丨9. 深度学习框架TensorFlow

深度学习TensorFlow面试题:什么是TensorFlow?你对张量了解多少?TensorFlow有什么优势?TensorFlow比PyTorch有什么不同?该如何选择?

人工智能:TensorFlow深度学习框架介绍

TensorFlow------学习篇

TensorFlow文档翻译-01-TensorFlow入门

TensorFlow实战-TensorFlow和其他深度学习框架的对比-第2章