Courseiva
Guidelines for Responsible AIhardMultiple ChoiceObjective-mapped

AIF-C01 Guidelines for Responsible AI Practice Question

Exhibit

ModelBiasJobConfig:
  Type: AWS::SageMaker::ModelBiasJobDefinition
  Properties:
    JobResources:
      InstanceConfig:
        InstanceType: ml.m5.large
        InstanceCount: 1
    ModelBiasBaselineConfig:
      BaseliningJobName: !Ref BaselineJob
    ModelBiasAppSpecification:
      ImageUri: !Ref Image
    StoppingCondition:
      MaxRuntimeInSeconds: 3600

Refer to the exhibit. A team is configuring a SageMaker Model Bias job. The baseline job has been completed. However, the bias job fails with a resource not found error. What is the most likely cause?

⚠ Common exam trap

AWS often tests the distinction between different error types (timeout vs. resource not found vs. permission denied) to see if candidates understand the specific cause-and-effect relationship between misconfigured parameters and the exact error message returned.

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 BaseliningJobName is incorrect

The bias job requires a reference to the completed baseline job to compare the training data against. If the BaseliningJobName parameter is incorrect or does not match the actual name of the completed baseline job, SageMaker will throw a 'ResourceNotFound' error because it cannot locate the specified baseline job. The error is not related to timeouts, instance types, or IAM permissions for describing the baseline job.

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 StoppingCondition is too short

    Why it's wrong here

    Would cause timeout, not resource not found.

  • The BaseliningJobName is incorrect

    Why this is correct

    Typo or mismatch in the baseline job name.

  • The instance type ml.m5.large is not supported

    Why it's wrong here

    ml.m5.large is supported for bias jobs.

  • The IAM role lacks permissions to DescribeBaselineJob

    Why it's wrong here

    Would cause access denied, not resource not found.

About these practice questions

One of 619 original AIF-C01 practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This AIF-C01 practice question is part of Courseiva's free Amazon Web Services 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 AIF-C01 exam.