Learn Before
Choosing the System Design for an Autonomous Delivery Cart
Case context: A city logistics startup is building an autonomous delivery cart. One team proposes a single neural network that reads street-camera video and directly outputs steering and speed commands. Another team proposes a staged system that first identifies lanes, obstacles, and pedestrians, then computes the route. The company has only a small set of complete driving traces but a large labeled set of object and lane annotations.
Question: Which design is the better choice right now, and why?
Sample answer: The staged modular design is better at this stage. A fully direct model is more appealing when the team has enough complete driving examples, but this company has few full traces and many labeled intermediate examples. Because their data is much richer for the perception steps than for direct control, a modular pipeline fits what they can train reliably today.
Key points:
- Recommend the modular or staged design.
- Note that complete driving traces are limited.
- Explain that the available labels support intermediate perception tasks better than direct control.
Rubric: The student must recommend the modular approach and justify it by explaining that the available data favors intermediate perception modules over direct control.
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 is a modular driving system often considered a better near-term option than a fully end-to-end one?
True or False: A single end-to-end model is always the best choice for every machine learning problem.
Until more _____ is collected, a modular driving system is usually the better choice.
Match each machine learning strategy term to its description.
Put the argument for using a non-end-to-end design in autonomous driving in order.
Which task is presented as a strong success case for end-to-end learning?
True or False: A modular self-driving system can be a better fit when full end-to-end training data is limited.
An end-to-end driving model can map _____ directly to steering commands.
Match each data situation to the architecture choice it supports in self-driving research.
Order the steps for choosing between a full end-to-end model and a modular pipeline for a new machine learning problem.
Why a Modular Pipeline Can Beat End-to-End Learning for Drone Landing
Choosing the System Design for an Autonomous Delivery Cart
What makes end-to-end driving more practical?