About 269,000 results
Open links in new tab
  1. How to Form Graphs in Tensorflow? - GeeksforGeeks

    Apr 24, 2025 · In this article, we'll look at how to create graphs with TensorFlow, breaking it down into simple steps with examples. TensorFlow computations are represented as directed acyclic graphs (DAGs), with nodes representing operations …

  2. Introduction to graphs and tf.function | TensorFlow Core

    Aug 15, 2024 · Graphs are data structures that contain a set of tf.Operation objects, which represent units of computation; and tf.Tensor objects, which represent the units of data that flow between operations. They are defined in a tf.Graph context.

  3. Visualizing dataflow graphs can be generalized as drawing directed graphs. A common way to draw directed graph is the flow layout, which uses one axis to convey overall direction. A standard flow layout algorithm, introduced by Sugiyama et al. [50] and widely ex-tended [13,31,33], assigns x-and y-coordinates separately in multiple

  4. Solve directed graph problem with Tensorflow - Stack Overflow

    Oct 25, 2019 · I have a seemingly simple problem to be solved in a directed graph. Given a directed graph, such as the one in the picture, I need to find the pathway between two "boundary nodes" (A and B, in the picture) that has the smallest "maximum cost".

  5. Understanding Dataflow graphs in TensorFlow

    Jun 10, 2019 · In order to be a highly efficient, flexible, and production-ready library, TensorFlow uses dataflow graphs to represent computation in terms of the relationships between individual operations.

  6. Building Computational Graphs with TensorFlow - Python Lore

    A computational graph is essentially a directed graph where nodes represent operations (such as addition or multiplication), and edges depict the flow of data (specifically tensors) between these operations.

  7. How to Form Graphs in TensorFlow? - Python in Plain English

    Sep 17, 2023 · A graph can be visualized as a directed acyclic graph (DAG), where the nodes are arranged in layers and the edges show the flow of data. For example, here is a graph that represents a two-layer neural network:

  8. Understanding Computational Graphs and Tensors - Noob to …

    TensorFlow represents computations as directed graphs known as computational graphs. A computational graph is a series of nodes interconnected by edges, where each node represents an operation, and the edges represent the flow of data or tensors.

  9. Building and Running TensorFlow Graphs with the `Graph` Class

    Dec 18, 2024 · Understanding how to construct and work with TensorFlow graphs can unlock higher potential in optimizing and deploying complex models. At its core, TensorFlow employs a computational graph abstraction, a directed graph consisting of nodes (capable of performing computations) and edges (data flows).

  10. Intro_Computational_Graphs.ipynb - Colab - Google Colab

    In this notebook I provide a short introduction and overview of computational graphs using TensorFlow inspired by the PyTorch equivalent written by Elvis Saravia et al. There are several...

  11. Some results have been removed
Refresh