Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion homework/longitudinal_planning.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def update(self, state : AllState):
#parse the relations indicated
should_brake = False
for r in state.relations:
if r.type == EntityRelationEnum.YIELD and r.obj1 == '':
if r.type == EntityRelationEnum.YIELDING and r.obj1 == '':
#yielding to something, brake
should_brake = True
should_accelerate = (not should_brake and curr_v < self.desired_speed)
Expand Down
1 change: 1 addition & 0 deletions homework/pedestrian_detection.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,4 @@ variants:
drive:
perception:
state_estimation : OmniscientStateEstimator
agent_detection : OmniscientAgentDetector