H13-311_V3.5 · Question #113
Which of the following is the computing model of TensorFlow?
The correct answer is A. Calculation chart. Option A is correct because TensorFlow's core computing model is the dataflow graph (computation graph / "calculation chart"), where computations are represented as directed graphs: nodes are mathematical operations, and edges are the tensors (data) flowing between them. This…
Question
Which of the following is the computing model of TensorFlow?
Options
- ACalculation chart
- BTensor
- CConversation
- DVariable
How the community answered
(57 responses)- A72% (41)
- B14% (8)
- C9% (5)
- D5% (3)
Explanation
Option A is correct because TensorFlow's core computing model is the dataflow graph (computation graph / "calculation chart"), where computations are represented as directed graphs: nodes are mathematical operations, and edges are the tensors (data) flowing between them. This graph-based model allows TensorFlow to optimize and parallelize execution before running.
Why the distractors are wrong:
- B (Tensor): Tensors are TensorFlow's fundamental data structure (multi-dimensional arrays), not the computing model itself.
- C (Conversation): This has no meaning in the TensorFlow context.
- D (Variable): Variables are a special tensor type used to store mutable state (e.g., model weights), but they are a data construct, not the computing model.
Memory tip: Split the name - "TensorFlow" - tensors flow through a graph (chart). The "flow" part directly hints at the dataflow graph model.
Topics
Community Discussion
No community discussion yet for this question.