NCA-ADS domain - 10% of the exam

Introductory MLOps Practices

Introductory MLOps Practices is 10% of the NVIDIA-Certified Associate: Accelerated Data Science (NCA-ADS) exam. These are the objectives it covers, each with practice questions and worked explanations.

Objectives in this domain

Sample question from this domain

Free sampleIntroductory MLOps Practiceseasy

A data scientist trains a scikit-learn StandardScaler on the training split and saves it alongside the trained model weights. Which term best describes the StandardScaler object in the context of ML artefact management?

  • AA preprocessing artefact Correct
  • BA hyperparameter configuration file
  • CA dataset version snapshot
  • DAn evaluation metrics record
Identify what counts as an ML artefact, distinguishing preprocessing transformers from other artefact types such as metrics or dataset versions. ML artefact management recognises several distinct artefact categories: trained model weights, preprocessing transformers, dataset versions, and evaluation metrics. A fitted StandardScaler is a preprocessing artefact because it encapsulates fitted state (mean and variance) produced by the training pipeline. Storing and versioning it alongside the model is essential for reproducibility: applying a different or unversioned scaler at inference time would silently corrupt predictions.

Why A is correct: A fitted preprocessing transformer such as StandardScaler is a preprocessing artefact: a serialisable object produced during the training pipeline that must be versioned and stored alongside the model so that inference inputs can be transformed identically to training inputs.

Why B is wrong: Hyperparameter files record settings such as learning rate or max depth, not fitted transformation state. A StandardScaler holds computed mean and variance values that are required to reproduce the exact transformation applied at training time.

Why C is wrong: A dataset version snapshot refers to a recorded, immutable cut of raw or processed data, not a fitted transformation object. Conflating the two would cause an artefact store to mis-categorise the object and break reproducibility checks.

Why D is wrong: Evaluation metrics records store scalar or aggregate performance values such as accuracy or RMSE. A StandardScaler contains no performance measurement; it holds statistical parameters derived from training data and applied during feature transformation.

Other domains in this exam

See also the NCA-ADS cert hub, the study guide, and the cheat sheet.

Examworthy is not affiliated with or endorsed by NVIDIA. Original, blueprint-aligned practice material only.