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学习的主要内容,如果未能解决你的问题,请参考以下文章
深度学习TensorFlow面试题:什么是TensorFlow?你对张量了解多少?TensorFlow有什么优势?TensorFlow比PyTorch有什么不同?该如何选择?