TechNuggets Academy

Essential AI Knowledge

Free NVIDIA-Certified Associate: AI Infrastructure and Operations practice — 6 questions on Essential AI Knowledge, with explanations. No sign-up. Full 12-question mixed test →

Question 1 of 6 · Essential AI Knowledge
A data science team is deploying a computer vision model for real-time quality inspection on a manufacturing line. The model was trained using PyTorch and needs to process 60 frames per second with sub-10ms latency. Which NVIDIA software component is MOST critical for achieving this inference performance requirement?
TensorRT is specifically designed for inference optimization. It converts trained models (from PyTorch, TensorFlow, etc.) into optimized inference engines using layer fusion, precision calibration (FP16/INT8), and kernel auto-tuning to maximize throughput and minimize latency. For real-time inference with strict latency requirements, TensorRT is the critical component.
Question 2 of 6 · Essential AI Knowledge
An MLOps engineer notices that their binary classification model achieves 95% accuracy but only 40% precision on the positive class in production. The business cost of false positives is significantly higher than false negatives. Which evaluation approach would BEST help tune the model for this business requirement?
When business costs of false positives are high, precision is the key metric. The PR curve plots precision vs recall at different classification thresholds. By adjusting the threshold (typically increasing it above 0.5 for binary classification), you can increase precision at the cost of recall. The PR curve helps visualize this trade-off and select the threshold that meets business requirements for acceptable precision while maximizing recall.
Question 3 of 6 · Essential AI Knowledge
A research team is comparing GPU vs CPU performance for training a large transformer model. They observe that batch size 32 on CPU takes 450 seconds per epoch, while batch size 256 on GPU takes 28 seconds per epoch. Which architectural characteristic of GPUs PRIMARILY explains this 16x performance improvement?
The fundamental architectural advantage of GPUs for AI workloads is massive parallelism. Modern NVIDIA GPUs have thousands of CUDA cores (e.g., A100 has 6912 CUDA cores) designed to execute the same instruction on multiple data points simultaneously (SIMD). Transformer training involves massive matrix multiplications and element-wise operations that are perfectly suited for this parallel architecture. The 8x larger batch size (256 vs 32) combined with parallel execution explains the performance gain.
Question 4 of 6 · Essential AI Knowledge
A company is selecting pre-trained models from the NGC catalog for a natural language processing project. They need to ensure the models meet enterprise security and support requirements. Which combination of NGC features would BEST address these enterprise needs?
NVIDIA AI Enterprise is the commercial software suite that includes enterprise-grade support, security updates, and validated configurations. NGC containers tagged with AI Enterprise have undergone additional security scanning and are covered by NVIDIA enterprise support SLAs. The security scan results provide CVE information and vulnerability assessments critical for enterprise compliance. This combination ensures both support and security requirements are met.
Question 5 of 6 · Essential AI Knowledge
An AI infrastructure team is provisioning resources for two distinct workloads: (1) monthly retraining of a recommendation model using 500GB of user interaction data, and (2) serving 10,000 inference requests per second for the same model. How should GPU memory requirements differ between these workloads?
Training memory requirements are significantly higher than inference. During training, GPU memory must hold: (1) model parameters, (2) gradients for each parameter, (3) optimizer states (momentum, variance for Adam), and (4) intermediate activations for backpropagation, plus (5) the training data batch. Inference only requires model parameters and the inference batch (much smaller than training batches). This is why a model trainable on 80GB A100 might serve inference on 16GB T4.
Question 6 of 6 · Essential AI Knowledge
A healthcare AI team is analyzing model performance across different patient demographics. Their model shows 0.92 recall but only 0.68 precision for detecting a rare condition (2% prevalence). Regulatory requirements mandate minimizing missed diagnoses while maintaining clinical workflow efficiency. Which metric interpretation would BEST guide their threshold adjustment decision?
In medical contexts where missing a diagnosis (false negative) has severe consequences, high recall is critical and the 0.92 is acceptable for 'minimizing missed diagnoses'. However, 0.68 precision means 32% of positive predictions are false positives, creating alert fatigue and workflow inefficiency. Raising the classification threshold (e.g., from 0.5 to 0.7) will decrease false positives (improving precision) at a small cost to recall. This balances regulatory safety requirements with clinical workflow efficiency. The PR curve helps find this optimal threshold.
Ready for the real thing?

The full course has two full-length practice tests, video lessons for every exam domain, hands-on labs and detailed answer explanations.

Start my full course on Udemy →