nerdexam
Huawei

H13-311_V3.5 · Question #47

Which of the following is not a module in the Tensorflow library?

The correct answer is C. tf boost. Option C, tf.boost, does not exist in the TensorFlow library - it is a fabricated module name with no official counterpart in TensorFlow's API. The other three options are genuine TensorFlow modules: tf.nn provides low-level neural network operations such as activation…

Deep Learning Basics

Question

Which of the following is not a module in the Tensorflow library?

Options

  • Atf.nn
  • Btf. layers
  • Ctf boost
  • Dtf.contrib

How the community answered

(14 responses)
  • A
    14% (2)
  • B
    7% (1)
  • C
    71% (10)
  • D
    7% (1)

Explanation

Option C, tf.boost, does not exist in the TensorFlow library - it is a fabricated module name with no official counterpart in TensorFlow's API. The other three options are genuine TensorFlow modules: tf.nn provides low-level neural network operations such as activation functions and convolutions; tf.layers offers higher-level abstractions for building common layer types like dense and convolutional layers; and tf.contrib was a repository of experimental and community-contributed code in TensorFlow 1.x (removed in TensorFlow 2.0, but it did exist). A useful memory strategy is to associate the fake answer with a different library - "boost" is a well-known C++ library, so if you recall that Boost belongs to C++ and not TensorFlow, you can quickly eliminate tf.boost as the odd one out.

Topics

#TensorFlow API#TensorFlow modules#Neural network frameworks#Deep learning libraries

Community Discussion

No community discussion yet for this question.

Full H13-311_V3.5 Practice