Winter Sale - Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: dpt65

H13-311_V3.5 Questions and Answers

Question # 6

Which of the following are feedforward neural networks?

A.

Fully-connected neural networks

B.

Recurrent neural networks

C.

Boltzmann machines

D.

Convolutional neural networks

Full Access
Question # 7

Which of the following are use cases of generative adversarial networks?

A.

Photo repair

B.

Generating face images

C.

Generating a 3D model from a 2D image

D.

Generating images from text

Full Access
Question # 8

Which of the following statements are true about decision trees?

A.

The common decision tree algorithms include ID3, C4.5, and CART.

B.

Quantitative indicators of purity can only be obtained by using information entropy.

C.

Building a decision tree means selecting feature attributes and determining their tree structure.

D.

A key step to building a decision tree involves dividing all feature attributes and comparing the purity of the division's result sets.

Full Access
Question # 9

Which of the following statements is false about the debugging and application of a regression model?

A.

If the model does not meet expectations, you need to use data cleansing and feature engineering.

B.

After model training is complete, you need to use the test dataset to evaluate your model so that its generalization capability meets expectations.

C.

If overfitting occurs, you can add a regularization term to the Lasso or ridge regression and adjust hyperparameters.

D.

If underfitting occurs, you can use a more complex regression model, for example, logistic regression.

Full Access
Question # 10

In MindSpore, the basic unit of the neural network is nn.Cell.

A.

TRUE

B.

FALSE

Full Access
Question # 11

Which of the following is NOT a commonly used AI computing framework?

A.

PyTorch

B.

MindSpore

C.

TensorFlow

D.

OpenCV

Full Access
Question # 12

Correctly connect the layers in the architecture of an Ascend AI Processor.

Full Access
Question # 13

Which of the following activation functions may cause the vanishing gradient problem?

A.

Softplus

B.

ReLU

C.

Sigmoid

D.

Tanh

Full Access
Question # 14

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

A.

2

B.

mindspore.int32

C.

4

D.

(2,2)

Full Access
Question # 15

Match the input and output of a generative adversarial network (GAN).

Full Access
Question # 16

Which of the following are common gradient descent methods?

A.

Batch gradient descent (BGD)

B.

Mini-batch gradient descent (MBGD)

C.

Multi-dimensional gradient descent (MDGD)

D.

Stochastic gradient descent (SGD)

Full Access
Question # 17

What are the application scenarios of computer vision?

A.

Video action analysis

B.

Image search

C.

Smart albums

D.

Voice navigation

Full Access
Question # 18

Which of the following functions are provided by the nn module of MindSpore?

A.

Hyperparameter search modes such as GridSearch and RandomSearch

B.

Model evaluation indicators such as F1 Score and AUC

C.

Optimizers such as Momentum and Adam

D.

Loss functions such as MSELoss and SoftmaxCrossEntropyWithLogits

Full Access