Autonomous Drone Landing Reward Diagnosis
Case context: You are training a reinforcement-learning controller for a quadrotor that must settle onto a marked pad in simulation. The score combines touchdown accuracy and motion stability. The learned policy succeeds at the landing task, but its path is noticeably more jerky than a skilled operator's reference flight. When you run the optimization verification check, you find that R(reference) is lower than R(policy).
Question: Which part of the system should you revise first, and what does this result tell you?
Sample answer: Revise the reward function first. Since the reference flight gets a lower score than the rougher policy flight, the current scoring rule is favoring an undesirable behavior. That means the objective is not capturing the intended tradeoff between precise landing and smooth motion, so the reward design should be adjusted.
Key points:
- The reward function is the component that needs revision
- The present score prefers the worse trajectory
- The landing-versus-smoothness balance is set incorrectly
Rubric: The response must name the reward function and explain that it is ranking the inferior trajectory above the better one.
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
Diagnosing an RL problem with verified rewards
When Reward Scores Favor the Wrong Outcome
Interpreting _____ in reward verification
Match the trajectories and reward comparison to their meanings.
Reward Comparison for a Reinforcement Learning Check
What It Means When the Human Trajectory Outperforms the Learned One
Autonomous Drone Landing Reward Diagnosis
Deciding the RL component to fix
What does it mean if a human plan scores lower than an automated plan on the reward model?
What Optimization Verification Checks