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
Tags
Machine Learning
Deep Learning
Supervised Learning
Dive into Deep Learning @ D2L
Data Science
Machine Learning Strategy
Machine Learning Yearning @ DeepLearning.AI
Related
Why Use a Boundary Detector Before Navigation?
True or False: Sending the full warehouse camera feed directly into the navigation controller is the preferred fix because it recovers missing aisle information without adding any intermediate perception step.
Adding an intermediate _____ module can turn raw road-boundary detections into a cleaner route-planning input while keeping each part of the system narrow in scope.
Why is it a bad idea to give the raw front-camera image directly to the route-selection module?
Sending the raw front-camera image straight to the route selector is the best fix when curb-line information is missing from the processing chain.
Sending raw sensor data straight into route selection breaks the principle of '_____ simplicity.'
Match each system-design choice or principle to its correct effect or meaning.
Order the reasoning steps for repairing a missing-information pipeline without making any part of it too complicated.
Why insert a feature extractor before the final decision module?
Task simplicity means each module in a system should be responsible for one clearly defined job rather than several unrelated jobs.
Adding an intermediate _____ can give a warehouse robot the aisle-edge information it needs without making the navigation stack interpret raw camera images directly.
Match each module or design choice to its role in the redesigned campus shuttle pipeline.
Order the steps in a simplified robot-vision pipeline that keeps each module focused on one task.
Why separating perception from planning can simplify a robotics pipeline
Reworking a Warehouse Robot Pipeline When Shelf Locations Are Missing
Identify the design principle violated by putting raw sensor data into the route planner.