HCIA-AI V3.5 Exam Questions and Answers
"AI application fields include only computer vision and speech processing." Which of the following is true about this statement?
Which of the following activation functions may cause the vanishing gradient problem?
HarmonyOS can provide AI capabilities for external systems only through the integrated HMS Core.
Which of the following is the order of tensor [[0,1],[2,3]]?
In machine learning, which of the following inputs is required for model training and prediction?
Which of the following are covered by Huawei Cloud EIHealth?
Which of the following statements are true about decision trees?
Sigmoid, tanh, and softsign activation functions cannot avoid vanishing gradient problems when the network is deep.
When you use MindSpore to execute the following code, which of the following is the output?
python
Copy code
x = Tensor(np.array([[1, 2], [3, 4]]), dtype.int32)
x.dtype
Which of the following is NOT a key feature that enables all-scenario deployment and collaboration for MindSpore?
When you use MindSpore to execute the following code, which of the following is the output?
from mindspore import ops
import mindspore
shape = (2, 2)
ones = ops.Ones()
output = ones(shape, dtype=mindspore.float32)
print(output)
Single-layer perceptrons and logistic regression are linear classifiers that can only process linearly separable data.
Convolutional neural networks (CNNs) cannot be used to process text data.
Nesterov is a variant of the momentum optimizer.
In a fully-connected structure, a hidden layer with 1000 neurons is used to process an image with the resolution of 100 x 100. Which of the following is the correct number of parameters?
Match the input and output of a generative adversarial network (GAN).
Which of the following functions are provided by the nn module of MindSpore?
Which of the following statements is false about feedforward neural networks?