Question 105 of 506
Architecting low-code ML solutionshardMultiple ChoiceObjective-mapped

Quick Answer

The answer is that the model_id parameter is referencing the wrong output. This is the most likely cause because the Vertex AI pipeline evaluate component relies on a specific model artifact produced by a prior training step; if the model_id points to a misnamed output, a different step’s result, or a nonexistent property, the pipeline cannot resolve the model and throws the “Model not found” error. On the Google Professional Machine Learning Engineer exam, this scenario tests your understanding of how pipeline steps pass artifacts through PropertyFiles or JsonGet, and a common trap is confusing the training step’s output name with the evaluate step’s expected input name. Remember that the error is about model resolution, not about data quality or thresholds, so always verify the output reference chain. A useful memory tip: “Model not found? Check the ID’s ground—wrong output is the root around.”

PMLE Architecting low-code ML solutions Practice Question

This PMLE practice question tests your understanding of architecting low-code ml solutions. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

Network Topology
target={{$.inputs.parameterValues.target}}"]dataset_id={{$.inputs.parameterValues.dataset_id}}"args: ["model_id={{$.inputs.parameterValues.model_id}}"threshold={{$.inputs.parameterValues.threshold}}"]Refer to the exhibit:# pipeline.yamlpipelineSpec:pipelineName: training-pipelineroot: gs://my-bucket-12345/pipelinesdk: '2.0'components:- component:name: auto_traininputParameters:dataset_id: value: dataset-123target: value: labelexecutorLabel: exec-autoname: evaluatemodel_id: task_output_auto_train.Modelthreshold: value: 0.8executorLabel: exec-evaldeploymentSpec:executors:exec-auto:container:image: us-central1-docker.pkg.dev/cloud-ai-platform/auto-ml-tables/train:latestexec-eval:image: gcr.io/cloud-ai-platform/prediction/eval:latest

The pipeline fails during the evaluate component with error "Model not found". What is the most likely cause?

Clue words in this question

Noticing these words before you look at the options changes how you read each choice.

  • Clue: "most likely"

    Why it matters: Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.

Question 1hardmultiple choice
Full question →
Network Topology
target={{$.inputs.parameterValues.target}}"]dataset_id={{$.inputs.parameterValues.dataset_id}}"args: ["model_id={{$.inputs.parameterValues.model_id}}"threshold={{$.inputs.parameterValues.threshold}}"]Refer to the exhibit:# pipeline.yamlpipelineSpec:pipelineName: training-pipelineroot: gs://my-bucket-12345/pipelinesdk: '2.0'components:- component:name: auto_traininputParameters:dataset_id: value: dataset-123target: value: labelexecutorLabel: exec-autoname: evaluatemodel_id: task_output_auto_train.Modelthreshold: value: 0.8executorLabel: exec-evaldeploymentSpec:executors:exec-auto:container:image: us-central1-docker.pkg.dev/cloud-ai-platform/auto-ml-tables/train:latestexec-eval:image: gcr.io/cloud-ai-platform/prediction/eval:latest

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

The model_id parameter is referencing the wrong output

The error 'Model not found' during the evaluate component indicates that the model_id parameter is referencing an output that does not exist or is incorrectly named. In SageMaker Pipelines, the evaluate step typically takes the model artifact from a previous training step via a PropertyFile or JsonGet, and if the model_id points to a wrong output (e.g., a different step's output or a misspelled reference), the pipeline cannot locate the model. This is the most likely cause because the error is specific to model resolution, not dataset or threshold issues.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • The dataset_id is misspelled

    Why it's wrong here

    Wrong: Would cause training failure, not model not found.

  • The model_id parameter is referencing the wrong output

    Why this is correct

    Correct: Output name mismatch causes Model not found.

    Clue confirmation

    The clue word "most likely" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

  • The training container did not produce a model artifact

    Why it's wrong here

    Wrong: The training likely succeeded but output name is incorrect.

  • The threshold value is invalid

    Why it's wrong here

    Wrong: Threshold is for evaluation, not model existence.

Common exam traps

Common exam trap: answer the scenario, not the keyword

Google Cloud often tests the distinction between resource resolution errors (like 'Model not found') and data/validation errors, tricking candidates into confusing dataset or threshold issues with pipeline step output references.

Trap categories for this question

  • Command / output trap

    Wrong: The training likely succeeded but output name is incorrect.

Detailed technical explanation

How to think about this question

In SageMaker Pipelines, the evaluate step uses a ProcessingStep or TransformStep that references a model artifact via a PipelineVariable or PropertyFile. The model_id is often derived from the output of a TrainingStep using `TrainingStep.properties.model_artifacts` or a custom `JsonGet` on the training output. If the model_id is incorrectly set to a different step's output (e.g., a preprocessing step) or a non-existent key, the pipeline fails at runtime because the evaluate step cannot resolve the S3 path to the model. This is a common misconfiguration when chaining steps manually without using the built-in `Model` object or `PipelineModel`.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A cloud solutions architect for a retail company is evaluating services for a new workload. The correct answer here reflects best practice for the specific scenario described — not a general cloud recommendation. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Cloud exam questions reward reading the constraint carefully: the same technology can be right or wrong depending on the use case.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related PMLE practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free PMLE practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this PMLE question test?

Architecting low-code ML solutions — This question tests Architecting low-code ML solutions — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: The model_id parameter is referencing the wrong output — The error 'Model not found' during the evaluate component indicates that the model_id parameter is referencing an output that does not exist or is incorrectly named. In SageMaker Pipelines, the evaluate step typically takes the model artifact from a previous training step via a PropertyFile or JsonGet, and if the model_id points to a wrong output (e.g., a different step's output or a misspelled reference), the pipeline cannot locate the model. This is the most likely cause because the error is specific to model resolution, not dataset or threshold issues.

What should I do if I get this PMLE question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Are there clue words in this question I should notice?

Yes — watch for: "most likely". Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Keep practising

More PMLE practice questions

Last reviewed: Jun 30, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This PMLE practice question is part of Courseiva's free Google Cloud certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the PMLE exam.