H13-311_V3.5 · Question #85
Which of the following options is not a tensor attribute?
The correct answer is D. node (Node). Option D is correct because node is not a tensor attribute - it belongs to computational graph terminology, where operations are represented as nodes in a graph, not as properties of tensors themselves. The distractors are all genuine tensor attributes: name (A) identifies a…
Question
Which of the following options is not a tensor attribute?
Options
- Aname (Logo)
- Bshape (Dimensionality)
- Ctype (Type)
- Dnode (Node)
How the community answered
(30 responses)- A7% (2)
- B3% (1)
- C13% (4)
- D77% (23)
Explanation
Option D is correct because node is not a tensor attribute - it belongs to computational graph terminology, where operations are represented as nodes in a graph, not as properties of tensors themselves.
The distractors are all genuine tensor attributes: name (A) identifies a tensor, which is especially relevant in frameworks like TensorFlow where tensors can be labeled; shape (B) describes the tensor's dimensionality (e.g., [batch, rows, cols]); and type/dtype (C) specifies the data type of elements (e.g., float32, int64).
Memory tip: Think of a tensor as a typed, shaped, named container for data - name, shape, type all describe the tensor itself. A "node" describes where computation happens in a graph, not what a tensor is.
Topics
Community Discussion
No community discussion yet for this question.