live chatMcAfee Secure sites help keep you safe from identity theft, credit card fraud, spyware, spam, viruses and online scams
Pass4Test 10%OFF Discount Code

Huawei HCIP-AI-EI Developer V2.5 - H13-321_V2.5 Exam Questions

QUESTION NO: 1
Seq2Seq is a model that translates one sequence into another sequence, essentially consisting of two recurrent neural networks (RNNs), one is the Encoder, and the other is the ---------. (Fill in the blank.)
Correct Answer:
Decoder
Explanation:
The Seq2Seq architecture is widely used in machine translation, speech recognition, and other NLP tasks. It consists of:
* Encoder:Processes the input sequence and encodes it into a fixed-length context vector containing semantic information.
* Decoder:Uses this context vector to generate the target output sequence step by step.
Exact Extract from HCIP-AI EI Developer V2.5:
"Seq2Seq models consist of an encoder and a decoder. The encoder transforms the input into a context vector, which the decoder uses to generate the output sequence." Reference:HCIP-AI EI Developer V2.5 Official Study Guide - Chapter: Encoder-Decoder Architecture
QUESTION NO: 2
Which of the following statements about the multi-head attention mechanism of the Transformer are true?
Correct Answer: A,C
Explanation: Only visible for Pass4Test members. You can sign-up / login (it's free).
QUESTION NO: 3
In 2017, the Google machine translation team proposed the Transformer in their paperAttention is All You Need. The Transformer consists of an encoder and a(n) --------. (Fill in the blank.)
Correct Answer:
Decoder
Explanation:
The Transformer model architecture includes:
* Encoder:Encodes the input sequence into contextualized representations.
* Decoder:Uses the encoder output and self-attention over previously generated tokens to produce the target sequence.
Exact Extract from HCIP-AI EI Developer V2.5:
"The Transformer consists of an encoder-decoder structure, with self-attention mechanisms in both components for sequence-to-sequence learning." Reference:HCIP-AI EI Developer V2.5 Official Study Guide - Chapter: Transformer Overview
QUESTION NO: 4
In an image preprocessing experiment, the cv2.imread("lena.png", 1) function provided by OpenCV is used to read images. The parameter "1" in this function represents a --------- -channel image. (Fill in the blank with a number.)
Correct Answer:
3
Explanation:
In OpenCV:
* cv2.imread(filename, 1) reads the image incolor mode.
* This loads the image as a3-channelBGR image (Blue, Green, Red).
* Other modes: 0 for grayscale, -1 for unchanged (including alpha channel).
Exact Extract from HCIP-AI EI Developer V2.5:
"When the second parameter of cv2.imread is 1, the image is read in color mode, resulting in a 3-channel BGR image." Reference:HCIP-AI EI Developer V2.5 Official Study Guide - Chapter: Image Reading and Writing with OpenCV
QUESTION NO: 5
The attention mechanism in foundation model architectures allows the model to focus on specific parts of the input data. Which of the following steps are key components of a standard attention mechanism?
Correct Answer: B,C,D
Explanation: Only visible for Pass4Test members. You can sign-up / login (it's free).
QUESTION NO: 6
Which of the following statements about the standard normal distribution are true?
Correct Answer: A,B
Explanation: Only visible for Pass4Test members. You can sign-up / login (it's free).
QUESTION NO: 7
The accuracy of object location detection can be evaluated using the intersection over union (IoU) value, which is a ratio. The denominator is the overlapping area between the prediction bounding box and ground truth bounding box, and the numerator is the area of union encompassed by both boxes.
Correct Answer: A
Explanation: Only visible for Pass4Test members. You can sign-up / login (it's free).