[Q12-Q29] リアル試験問題NCA-GENL問題集試験問題はここにある [2026年01月]

Share

リアル試験問題NCA-GENL問題集試験問題はここにある [2026年01月]

最新の2026年01月効果的なNCA-GENLテスト問題を使って合格突破


NVIDIA NCA-GENL 認定試験の出題範囲:

トピック出題範囲
トピック 1
  • アライメント:このセクションでは、AIポリシーエンジニアのスキルを測定し、LLMの出力を人間の意図や価値観と整合させるための手法を網羅します。これには、モデルから生じる有害、偏った、または不正確な結果を削減するための安全メカニズム、倫理的セーフガード、チューニング戦略が含まれます。
トピック 2
  • この試験セクションでは、AI製品開発者のスキルを測定し、仮説の検証、モデルのバリエーションの比較、モデルの応答のテストなどを行う実験を戦略的に計画する方法を扱います。実験における構造、制御、変数に焦点を当てます。
トピック 3
  • 実験:このセクションでは、MLエンジニアのスキルを測定し、LLMを用いた構造化された実験の実施方法を網羅します。テストケースの設定、パフォーマンス指標の追跡、そして実験結果に基づいた情報に基づいた意思決定などが含まれます。
トピック 4
  • データ前処理と特徴量エンジニアリング:この試験セクションでは、データエンジニアのスキルを測定し、モデルのトレーニングや微調整に使用可能な形式への生データの準備について学習します。堅牢なLLMパイプラインの構築に不可欠な、クリーニング、正規化、トークン化、特徴抽出手法も網羅しています。
トピック 5
  • 機械学習とニューラルネットワークの基礎:このセクションでは、AI研究者のスキルを測定します。機械学習とニューラルネットワークの基礎原理を網羅し、これらの概念が大規模言語モデル(LLM)の開発にどのように貢献しているかに焦点を当てます。学習者が生成型AIシステムの学習に関わる基本構造と学習メカニズムを理解できるようにします。
トピック 6
  • 実験設計
トピック 7
  • ソフトウェア開発:この試験セクションでは、機械学習開発者のスキルを測定し、AIアプリケーション向けの効率的でモジュール化されたスケーラブルなコードの作成方法を網羅します。LLMベースの開発に関連するソフトウェアエンジニアリングの原則、バージョン管理、テスト、ドキュメント作成の実践が含まれます。
トピック 8
  • データ分析と可視化:この試験セクションでは、データサイエンティストのスキルを測定します。データの解釈、クレンジング、そして視覚的なストーリーテリングによる提示方法を網羅しています。特に、可視化を用いて洞察を抽出し、モデルの挙動、パフォーマンス、あるいはトレーニングデータのパターンを評価する方法に重点が置かれています。
トピック 9
  • LLM の統合とデプロイ:このセクションでは、AI プラットフォーム エンジニアのスキルを評価します。API を介して LLM をアプリケーションまたはサービスに接続し、安全かつ効率的に大規模にデプロイする方法を網羅します。また、本番環境におけるレイテンシ、コスト、モニタリング、アップデートに関する考慮事項も含まれます。

 

質問 # 12
In transformer-based LLMs, how does the use of multi-head attention improve model performance compared to single-head attention, particularly for complex NLP tasks?

  • A. Multi-head attention simplifies the training process by reducing the number of parameters.
  • B. Multi-head attention reduces the model's memory footprint by sharing weights across heads.
  • C. Multi-head attention allows the model to focus on multiple aspects of the input sequence simultaneously.
  • D. Multi-head attention eliminates the need for positional encodings in the input sequence.

正解:C

解説:
Multi-head attention, a core component of the transformer architecture, improves model performance by allowing the model to attend to multiple aspects of the input sequence simultaneously. Each attention head learns to focus on different relationships (e.g., syntactic, semantic) in the input, capturing diverse contextual dependencies. According to "Attention is All You Need" (Vaswani et al., 2017) and NVIDIA's NeMo documentation, multi-head attention enhances the expressive power of transformers, making them highly effective for complex NLP tasks like translation or question-answering. Option A is incorrect, as multi-head attention increases memory usage. Option C is false, as positional encodings are still required. Option D is wrong, asmulti-head attention adds parameters.
References:
Vaswani, A., et al. (2017). "Attention is All You Need."
NVIDIA NeMo Documentation: https://docs.nvidia.com/deeplearning/nemo/user-guide/docs/en/stable/nlp/intro.html


質問 # 13
In the context of developing an AI application using NVIDIA's NGC containers, how does the use of containerized environments enhance the reproducibility of LLM training and deployment workflows?

  • A. Containers automatically optimize the model's hyperparameters for better performance.
  • B. Containers encapsulate dependencies and configurations, ensuring consistent execution across systems.
  • C. Containers reduce the model's memory footprint by compressing the neural network.
  • D. Containers enable direct access to GPU hardware without driver installation.

正解:B

解説:
NVIDIA's NGC (NVIDIA GPU Cloud) containers provide pre-configured environments for AI workloads, enhancing reproducibility by encapsulating dependencies, libraries, and configurations. According to NVIDIA's NGC documentation, containers ensure that LLM training and deployment workflows run consistently across different systems (e.g., local workstations, cloud, or clusters) by isolating the environment from host system variations. This is critical for maintaining consistent results in research and production.
Option A is incorrect, as containers do not optimize hyperparameters. Option C is false, as containers do not compress models. Option D is misleading, as GPU drivers are still required on the host system.
References:
NVIDIA NGC Documentation: https://docs.nvidia.com/ngc/ngc-overview/index.html


質問 # 14
In the context of a natural language processing (NLP) application, which approach is most effectivefor implementing zero-shot learning to classify text data into categories that were not seen during training?

  • A. Use rule-based systems to manually define the characteristics of each category.
  • B. Use a pre-trained language model with semantic embeddings.
  • C. Train the new model from scratch for each new category encountered.
  • D. Use a large, labeled dataset for each possible category.

正解:B

解説:
Zero-shot learning allows models to perform tasks or classify data into categories without prior training on those specific categories. In NLP, pre-trained language models (e.g., BERT, GPT) with semantic embeddings are highly effective for zero-shot learning because they encode general linguistic knowledge and can generalize to new tasks by leveraging semantic similarity. NVIDIA's NeMo documentation on NLP tasks explains that pre-trained LLMs can perform zero-shot classification by using prompts or embeddings to map input text to unseen categories, often via techniques like natural language inference or cosine similarity in embedding space. Option A (rule-based systems) lacks scalability and flexibility. Option B contradicts zero- shot learning, as it requires labeled data. Option C (training from scratch) is impractical and defeats the purpose of zero-shot learning.
References:
NVIDIA NeMo Documentation: https://docs.nvidia.com/deeplearning/nemo/user-guide/docs/en/stable/nlp/intro.html Brown, T., et al. (2020). "Language Models are Few-Shot Learners."


質問 # 15
When comparing and contrasting the ReLU and sigmoid activation functions, which statement is true?

  • A. ReLU is a linear function while sigmoid is non-linear.
  • B. ReLU is less computationally efficient than sigmoid, but it is more accurate than sigmoid.
  • C. ReLU and sigmoid both have a range of 0 to 1.
  • D. ReLU is more computationally efficient, but sigmoid is better for predicting probabilities.

正解:D

解説:
ReLU (Rectified Linear Unit) and sigmoid are activation functions used in neural networks. According to NVIDIA's deep learning documentation (e.g., cuDNN and TensorRT), ReLU, defined as f(x) = max(0, x), is computationally efficient because it involves simple thresholding, avoiding expensive exponential calculations required by sigmoid, f(x) = 1/(1 + e^(-x)). Sigmoid outputs values in the range [0, 1], making it suitable for predicting probabilities in binary classification tasks. ReLU, with an unbounded positive range, is less suited for direct probability prediction but accelerates training by mitigating vanishing gradient issues.
Option A is incorrect, as ReLU is non-linear (piecewise linear). Option B is false, as ReLU is more efficient and not inherently more accurate. Option C is wrong, as ReLU's range is [0, #), not [0, 1].
References:
NVIDIA cuDNN Documentation: https://docs.nvidia.com/deeplearning/cudnn/developer-guide/index.html Goodfellow, I., et al. (2016). "Deep Learning." MIT Press.


質問 # 16
Which feature of the HuggingFace Transformers library makes it particularly suitable for fine-tuning large language models on NVIDIA GPUs?

  • A. Seamless integration with PyTorch and TensorRT for GPU-accelerated training and inference.
  • B. Simplified API for classical machine learning algorithms like SVM.
  • C. Built-in support for CPU-based data preprocessing pipelines.
  • D. Automatic conversion of models to ONNX format for cross-platform deployment.

正解:A

解説:
The HuggingFace Transformers library is widely used for fine-tuning large language models (LLMs) due to its seamless integration with PyTorch and NVIDIA's TensorRT, enabling GPU-accelerated training and inference. NVIDIA's NeMo documentation references HuggingFace Transformers for its compatibility with CUDA and TensorRT, which optimize model performance on NVIDIA GPUs through features like mixed- precision training and dynamic shape inference. This makes it ideal for scaling LLM fine-tuning on GPU clusters. Option A is incorrect, as Transformers focuses on GPU, not CPU, pipelines. Option C is partially true but not the primary feature for fine-tuning. Option D is false, as Transformers is for deep learning, not classical algorithms.
References:
NVIDIA NeMo Documentation: https://docs.nvidia.com/deeplearning/nemo/user-guide/docs/en/stable/nlp
/intro.html
HuggingFace Transformers Documentation: https://huggingface.co/docs/transformers/index


質問 # 17
What is a Tokenizer in Large Language Models (LLM)?

  • A. A technique used to convert text data into numerical representations called tokens for machine learning.
  • B. A method to remove stop words and punctuation marks from text data.
  • C. A machine learning algorithm that predicts the next word/token in a sequence of text.
  • D. A tool used to split text into smaller units called tokens for analysis and processing.

正解:D

解説:
A tokenizer in the context of large language models (LLMs) is a tool that splits text into smaller units called tokens (e.g., words, subwords, or characters) for processing by the model. NVIDIA's NeMo documentation on NLP preprocessing explains that tokenization is a critical step in preparing text data, with algorithms like WordPiece, Byte-Pair Encoding (BPE), or SentencePiece breaking text into manageable units to handle vocabulary constraints and out-of-vocabulary words. For example, the sentence "I love AI" might be tokenized into ["I", "love", "AI"] or subword units like ["I", "lov", "##e", "AI"]. Option A is incorrect, as removing stop words is a separate preprocessing step. Option B is wrong, as tokenization is not a predictive algorithm. Option D is misleading, as converting text to numerical representations is the role of embeddings, not tokenization.
References:
NVIDIA NeMo Documentation: https://docs.nvidia.com/deeplearning/nemo/user-guide/docs/en/stable/nlp
/intro.html


質問 # 18
When designing prompts for a large language model to perform a complex reasoning task, such as solving a multi-step mathematical problem, which advanced prompt engineering technique is most effective in ensuring robust performance across diverse inputs?

  • A. Zero-shot prompting with a generic task description.
  • B. Few-shot prompting with randomly selected examples.
  • C. Chain-of-thought prompting with step-by-step reasoning examples.
  • D. Retrieval-augmented generation with external mathematical databases.

正解:C

解説:
Chain-of-thought (CoT) prompting is an advanced prompt engineering technique that significantly enhances a large language model's (LLM) performance on complex reasoning tasks, such as multi-step mathematical problems. By including examples that explicitly demonstrate step-by-step reasoning in the prompt, CoT guides the model to break down the problem into intermediate steps, improving accuracy and robustness.
NVIDIA's NeMo documentation on prompt engineering highlights CoT as a powerful method for tasks requiring logical or sequential reasoning, as it leverages the model's ability to mimic structured problem- solving. Research by Wei et al. (2022) demonstrates that CoT outperforms other methods for mathematical reasoning. Option A (zero-shot) is less effective for complex tasks due to lack of guidance. Option B (few- shot with random examples) is suboptimal without structured reasoning. Option D (RAG) is useful for factual queries but less relevant for pure reasoning tasks.
References:
NVIDIA NeMo Documentation: https://docs.nvidia.com/deeplearning/nemo/user-guide/docs/en/stable/nlp/intro.html Wei, J., et al. (2022). "Chain-of-Thought Prompting Elicits Reasoning in Large Language Models."


質問 # 19
Which of the following is an activation function used in neural networks?

  • A. Mean Squared Error function
  • B. Diffusion function
  • C. K-means clustering function
  • D. Sigmoid function

正解:D

解説:
The sigmoid function is a widely used activation function in neural networks, as covered in NVIDIA's Generative AI and LLMs course. It maps input values to a range between 0 and 1, making it particularly useful for binary classification tasks and as a non-linear activation in early neural network architectures. The sigmoid function, defined as f(x) = 1 / (1 + e^(-x)), introduces non-linearity, enabling neural networks to model complex patterns. In the context of LLMs, activation functions like sigmoid (and others like ReLU) are critical for transforming inputs within layers. Option B, K-means clustering function, is incorrect, as K-means is an unsupervised clustering algorithm, not an activation function. Option C, Mean Squared Error function, is a loss function used for optimization, not an activation function. Option D, Diffusion function, is not a recognized activation function in neural networks and is unrelated to this context. The course notes:
"Activation functions, such as sigmoid, ReLU, and tanh, introduce non-linearity to neural networks, enabling them to learn complex patterns for tasks like classification and generation." References: NVIDIA Building Transformer-Based Natural Language Processing Applications course; NVIDIA Introduction to Transformer-Based Natural Language Processing.


質問 # 20
You have access to training data but no access to test data. What evaluation method can you use to assess the performance of your AI model?

  • A. Greedy decoding
  • B. Cross-validation
  • C. Randomized controlled trial
  • D. Average entropy approximation

正解:B

解説:
When test data is unavailable, cross-validation is the most effective method to assess an AI model's performance using only the training dataset. Cross-validation involves splitting the training data into multiple subsets (folds), training the model on some folds, and validating it on others, repeatingthis process to estimate generalization performance. NVIDIA's documentation on machine learning workflows, particularly in the NeMo framework for model evaluation, highlights k-fold cross-validation as a standard technique for robust performance assessment when a separate test set is not available. Option B (randomized controlled trial) is a clinical or experimental method, not typically used for model evaluation. Option C (average entropy approximation) is not a standard evaluation method. Option D (greedy decoding) is a generation strategy for LLMs, not an evaluation technique.
References:
NVIDIA NeMo Documentation: https://docs.nvidia.com/deeplearning/nemo/user-guide/docs/en/stable/nlp/model_finetuning.html Goodfellow, I., et al. (2016). "Deep Learning." MIT Press.


質問 # 21
Why might stemming or lemmatizing text be considered a beneficial preprocessing step in the context of computing TF-IDF vectors for a corpus?

  • A. It guarantees an increase in the accuracy of TF-IDF vectors by ensuring more precise word usage distinction.
  • B. It increases the complexity of the dataset by introducing more unique tokens, enhancing the distinctiveness of each document.
  • C. It enhances the aesthetic appeal of the text, making it easier for readers to understand the document's content.
  • D. It reduces the number of unique tokens by collapsing variant forms of a word into their root form, potentially decreasing noise in the data.

正解:D

解説:
Stemming and lemmatizing are preprocessing techniques in NLP that reduce words to their root or base form, as discussed in NVIDIA's Generative AI and LLMs course. In the context of computing TF-IDF (Term Frequency-Inverse Document Frequency) vectors, these techniques are beneficial because they collapse variant forms of a word (e.g., "running," "ran" to "run") into a single token, reducing the number of unique tokens in the corpus. This decreases noise and dimensionality, improving the efficiency and effectiveness of TF-IDF representations for tasks like document classification or clustering. Option B is incorrect, as stemming and lemmatizing are not about aesthetics but about data preprocessing. Option C is wrong, as these techniques reduce, not increase, the number of unique tokens. Option D is inaccurate, as they do not guarantee accuracy improvements but rather reduce noise. The course states: "Stemming and lemmatizing reduce the number of unique tokens in a corpus by normalizing word forms, improving the quality of TF-IDF vectors by minimizing noise and dimensionality." References: NVIDIA Building Transformer-Based Natural Language Processing Applications course; NVIDIA Introduction to Transformer-Based Natural Language Processing.


質問 # 22
When should one use data clustering and visualization techniques such as tSNE or UMAP?

  • A. When there is a need to handle missing values and impute them in the dataset.
  • B. When there is a need to reduce the dimensionality of the data and visualize the clusters in a lower- dimensional space.
  • C. When there is a need to perform regression analysis and predict continuous numerical values.
  • D. When there is a need to perform feature extraction and identify important variables in the dataset.

正解:B

解説:
Data clustering and visualization techniques like t-SNE (t-Distributed Stochastic Neighbor Embedding) and UMAP (Uniform Manifold Approximation and Projection) are used to reduce the dimensionality of high- dimensional datasets and visualize clusters in a lower-dimensional space, typically 2D or 30 for interpretation.
As covered in NVIDIA's Generative AI and LLMs course, these techniques are particularly valuable in exploratory data analysis (EDA) for identifying patterns, groupings, or structure in data, such as clustering similar text embeddings in NLP tasks. They help reveal underlying relationships in complex datasets without requiring labeled data. Option A is incorrect, as t-SNE and UMAP are not designed for handling missing values, which is addressed by imputation techniques. Option B is wrong, as these methods are not used for regression analysis but for unsupervised visualization. Option D is inaccurate, as feature extraction is typically handled by methods like PCA or autoencoders, not t-SNE or UMAP, which focus on visualization. The course notes: "Techniques like t-SNE and UMAP are used to reduce data dimensionality and visualize clusters in lower-dimensional spaces, aiding in the understanding of data structure in NLP and other tasks." References: NVIDIA Building Transformer-Based Natural Language Processing Applications course; NVIDIA Introduction to Transformer-Based Natural Language Processing.


質問 # 23
In the evaluation of Natural Language Processing (NLP) systems, what do 'validity' and 'reliability' imply regarding the selection of evaluation metrics?

  • A. Validity ensures the metric accurately reflects the intended property to measure, while reliability ensures consistent results over repeated measurements.
  • B. Validity is concerned with the metric's computational cost, while reliability is about its applicability across different NLP platforms.
  • C. Validity involves the metric's ability to predict future trends in data, and reliability refers to its capacity to integrate with multiple data sources.
  • D. Validity refers to the speed of metric computation, whereas reliability pertains to the metric's performance in high-volume data processing.

正解:A

解説:
In evaluating NLP systems, as discussed in NVIDIA's Generative AI and LLMs course, validity and reliability are critical for selecting evaluation metrics. Validity ensures that a metric accurately measures the intended property (e.g., BLEU for translation quality or F1-score for classification performance), reflecting the system's true capability. Reliability ensures that the metric produces consistent results across repeated measurements under similar conditions, indicating stability and robustness. Together, these ensure trustworthy evaluations. Option A is incorrect, as validity is not about predicting trends, and reliability is not about data source integration. Option C is wrong, as validity and reliability are not primarily about computational cost or platform applicability. Option D is inaccurate, as validity and reliability do not focus on computation speed or high-volume processing. The course notes: "Validity ensures NLP evaluation metrics accurately measure the intended property, while reliability ensures consistent results across repeated evaluations, critical for robust system assessment." References: NVIDIA Building Transformer-Based Natural Language Processing Applications course; NVIDIA Introduction to Transformer-Based Natural Language Processing.


質問 # 24
You are working on developing an application to classify images of animals and need to train a neural model.
However, you have a limited amount of labeled data. Which technique can you use to leverage the knowledge from a model pre-trained on a different task to improve the performance of your new model?

  • A. Dropout
  • B. Random initialization
  • C. Early stopping
  • D. Transfer learning

正解:D

解説:
Transfer learning is a technique where a model pre-trained on a large, general dataset (e.g., ImageNet for computer vision) is fine-tuned for a specific task with limited data. NVIDIA's Deep Learning AI documentation, particularly for frameworks like NeMo and TensorRT, emphasizes transfer learning as a powerful approach to improve model performance when labeled data is scarce. For example, a pre-trained convolutional neural network (CNN) can be fine-tuned for animal image classification by reusing its learned features (e.g., edge detection) and adapting the final layers to the new task. Option A (dropout) is a regularization technique, not a knowledge transfer method. Option B (random initialization) discards pre- trained knowledge. Option D (early stopping) prevents overfitting but does not leverage pre-trained models.
References:
NVIDIA NeMo Documentation: https://docs.nvidia.com/deeplearning/nemo/user-guide/docs/en/stable/nlp
/model_finetuning.html
NVIDIA Deep Learning AI:https://www.nvidia.com/en-us/deep-learning-ai/


質問 # 25
What is the fundamental role of LangChain in an LLM workflow?

  • A. To orchestrate LLM components into complex workflows.
  • B. To reduce the size of AI foundation models.
  • C. To directly manage the hardware resources used by LLMs.
  • D. To act as a replacement for traditional programming languages.

正解:A

解説:
LangChain is a framework designed to simplify the development of applications powered by large language models (LLMs) by orchestrating various components, such as LLMs, external data sources, memory, and tools, into cohesive workflows. According to NVIDIA's documentation on generative AI workflows, particularly in the context of integrating LLMs with external systems, LangChain enables developers to build complex applications by chaining together prompts, retrieval systems (e.g., for RAG), and memory modules to maintain context across interactions. For example, LangChain can integrate an LLM with a vector database for retrieval-augmented generation or manage conversational history for chatbots. Option A is incorrect, as LangChain complements, not replaces, programming languages. Option B is wrong, as LangChain does not modify model size. Option D is inaccurate, as hardware management is handled by platforms like NVIDIA Triton, not LangChain.
References:
NVIDIA NeMo Documentation: https://docs.nvidia.com/deeplearning/nemo/user-guide/docs/en/stable/nlp
/intro.html
LangChain Official Documentation: https://python.langchain.com/docs/get_started/introduction


質問 # 26
In the context of preparing a multilingual dataset for fine-tuning an LLM, which preprocessing technique is most effective for handling text from diverse scripts (e.g., Latin, Cyrillic, Devanagari) to ensure consistent model performance?

  • A. Normalizing all text to a single script using transliteration.
  • B. Removing all non-Latin characters to simplify the input.
  • C. Applying Unicode normalization to standardize character encodings.
  • D. Converting text to phonetic representations for cross-lingual alignment.

正解:C

解説:
When preparing a multilingual dataset for fine-tuning an LLM, applying Unicode normalization (e.g., NFKC or NFC forms) is the most effective preprocessing technique to handle text from diverse scripts like Latin, Cyrillic, or Devanagari. Unicode normalization standardizes character encodings, ensuring that visually identical characters (e.g., precomposed vs. decomposed forms) are represented consistently, which improves model performance across languages. NVIDIA's NeMo documentation on multilingual NLP preprocessing recommends Unicode normalization to address encoding inconsistencies in diverse datasets. Option A (transliteration) may lose linguistic nuances. Option C (removing non-Latin characters) discards critical information. Option D (phonetic conversion) is impractical for text-based LLMs.
References:
NVIDIA NeMo Documentation: https://docs.nvidia.com/deeplearning/nemo/user-guide/docs/en/stable/nlp
/intro.html


質問 # 27
Which of the following claims is correct about quantization in the context of Deep Learning? (Pick the 2 correct responses)

  • A. It consists of removing a quantity of weights whose values are zero.
  • B. Quantization might help in saving power and reducing heat production.
  • C. It only involves reducing the number of bits of the parameters.
  • D. Helps reduce memory requirements and achieve better cache utilization.
  • E. It leads to a substantial loss of model accuracy.

正解:B、D

解説:
Quantization in deep learning involves reducing the precision of model weights and activations (e.g., from 32- bit floating-point to 8-bit integers) to optimize performance. According to NVIDIA's documentation on model optimization and deployment (e.g., TensorRT and Triton Inference Server), quantization offers several benefits:
* Option A: Quantization reduces power consumption and heat production by lowering the computational intensity of operations, making it ideal for edge devices.
References:
NVIDIA TensorRT Documentation: https://docs.nvidia.com/deeplearning/tensorrt/developer-guide/index.html NVIDIA Triton Inference Server Documentation: https://docs.nvidia.com/deeplearning/triton-inference-server/user-guide/docs/index.html


質問 # 28
Which of the following is a feature of the NVIDIA Triton Inference Server?

  • A. Dynamic batching
  • B. Model pruning
  • C. Gradient clipping
  • D. Model quantization

正解:A

解説:
The NVIDIA Triton Inference Server is designed to optimize and deploy machine learning models for inference, and one of its key features is dynamic batching, as noted in NVIDIA's Generative AI and LLMs course. Dynamic batching automatically groups inference requests into batches to maximize GPU utilization, reducing latency and improving throughput for real-time applications. Option A, model quantization, is incorrect, as it is typically handled by frameworks like TensorRT, not Triton. Option C, gradient clipping, is a training technique, not an inference feature. Option D, model pruning, is a model optimization method, not a Triton feature. The course states: "NVIDIA Triton Inference Server supports dynamic batching, which optimizes inference by grouping requests to maximize GPU efficiency and throughput." References: NVIDIA Building Transformer-Based Natural Language Processing Applications course; NVIDIA Introduction to Transformer-Based Natural Language Processing.


質問 # 29
......

正真正銘で最適な資料NCA-GENLオンライン練習試験:https://www.goshiken.com/NVIDIA/NCA-GENL-mondaishu.html

優質なNCA-GENL問題集と解釈はあなたを待ってます。今すぐゲットせよ:https://drive.google.com/open?id=1rs7v2zFDxKHoWeazlSICE8jsrnJCvsWc