Learn Before
Explain how an intermediate detector can make a pipeline easier to build or train.
Question: In a concise analytical response, compare feeding raw camera images to a path planner with first using a lane-marking detector. Explain why the latter better satisfies task simplicity.
Sample answer: Feeding raw camera images directly to the path planner would require that module to interpret the image as well as perform planning, giving it a very complex task. A lane-marking detector instead extracts important, previously missing lane information and passes it to the planner. This decomposition keeps the individual components easier to build or learn and avoids making one module overly complex to build or train.
Key points:
- Raw-image input makes the path planner's task very complex.
- The lane-marking detector supplies important missing information.
- The intermediate component prevents one module from becoming overly complex.
- Task simplicity favors components that are individually easy to build or learn.
Rubric: A strong response accurately compares both designs, identifies the complexity imposed by raw-image input, explains the information supplied by the detector, and connects the preferred design to individually simpler component tasks.
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
Easier Component Tasks Need Fewer Training Examples
Decomposing Complex Tasks Supplies Prior Knowledge
Pipeline Components Should Be Simple Enough for Modest Data
Why is a lane-marking detector preferable to sending raw camera images directly to the planner?
Task simplicity concerns how easy each individual pipeline component is to build or learn.
Adding a _____ component gives the planner important information without requiring it to interpret raw images.
Match each self-driving pipeline element with its role under the task-simplicity principle.
Order the reasoning used to select a simpler self-driving pipeline.
Explain how an intermediate detector can make a pipeline easier to build or train.
Diagnose whether a planner should receive raw images or detected lane markings.
What two benefits does the lane-marking detector provide to the planner?
Which pipeline change best follows the recommendation to keep individual component tasks easy?
Sending raw camera images to the planner follows task simplicity because it eliminates an intermediate component.