Programming Frameworks Intermediate
graph
In TensorFlow, a computation specification.
Plain English Explanation
In TensorFlow, a computation specification. Nodes in the graph represent operations. Edges are directed and represent passing the result of an operation (a Tensor) as an operand to another operation. Use TensorBoard to visualize a graph.
How is it used?
Practitioners refer to graph when building, training, or evaluating machine learning systems. It appears in research papers, product documentation, and technical discussions about AI capabilities and limitations.