Short Answer

Identify the design principle violated by putting raw sensor data into the route planner.

Question: A delivery robot has a separate vision module that can detect sidewalks and obstacles. Instead of using that output, an engineer feeds the route-planning module raw camera frames so it can infer the scene directly. According to the design guidance, what principle is violated, and what is the practical downside?

Sample answer: The violated principle is task simplicity. The downside is that the route-planning module becomes much more complicated because it now has to perform both perception and planning, which makes it harder to build and train.

Key points:

  • The principle violated is task simplicity.
  • Passing raw images into the planner makes the module unnecessarily complex.
  • The added complexity makes the module harder to build or train.

Rubric: The response must name task simplicity as the violated principle and explain that the route-planning module becomes overly complex to build or train.

0

1

Updated 2026-08-12

Contributors are:

Who are from:

Tags

Machine Learning

Deep Learning

Supervised Learning

Dive into Deep Learning @ D2L

Data Science

Machine Learning Strategy

Machine Learning Yearning @ DeepLearning.AI

Related