Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaCensi committed Oct 16, 2019
1 parent 02eaa35 commit 5fb9649
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion LF.challenge.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
challenge: aido3-LF-sim-validation

title: "LF 🚗 - Lane following (simulation 👾, validation 🏋)"
tags: [visible, ml-validation, aido2, aido2-embodied, LF, v4, simulation]
tags: [visible, ml-validation, aido3, aido3-embodied, LF, v4, simulation]
description: |
Lane following challenge.
Expand Down
2 changes: 1 addition & 1 deletion LFV.challenge.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
challenge: aido3-LFV-sim-validation

title: "LFV 🚗🚗 - Lane following + Vehicles (simulation 👾, validation 🏋)"
tags: [visible, ml-validation, aido2, aido2-embodied, LFV, v4, simulation]
tags: [visible, ml-validation, aido3, aido3-embodied, LFV, v4, simulation]
description: |
Lane following challenge.
Expand Down
2 changes: 1 addition & 1 deletion LFV_test.challenge.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
challenge: aido3-LFV-sim-testing

title: "LFV 🚗🚗 - Lane following + Vehicles (simulation 👾, testing 🥇)"
tags: [visible, ml-testing, aido2, aido2-embodied, LFV, v4, simulation]
tags: [visible, ml-testing, aido3, aido3-embodied, LFV, v4, simulation]
description: |
Lane following challenge.
Expand Down
4 changes: 2 additions & 2 deletions simulator/gym_bridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class GymDuckiebotSimulator:

robot_name: Optional[RobotName]
spawn_pose: Any
npcs: Dict[RobotName, Any]
npcs: Dict[RobotName, DuckiebotObj]
spawn_configuration: RobotConfiguration

last_commands: np.array
Expand Down Expand Up @@ -343,7 +343,7 @@ def on_received_get_robot_state(self, context: Context, data: GetRobotState):
t_effective=self.current_time,
state=state)
else:
obj: DuckiebotObj = self.npcs[data]
obj: DuckiebotObj = self.npcs[robot_name]
q = env.cartesian_from_weird(obj.pos, obj.angle)
# FIXME: how to get velocity?
v = geometry.se2_from_linear_angular([0, 0], 0)
Expand Down
2 changes: 1 addition & 1 deletion simulator/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ aido-protocols-daffy>=5.0.16
duckietown-world-daffy>=5.0.6
zuper-typing-z5>=5.0.11
zuper-ipce-z5>=5.0.7
zuper-nodes-z5>=5.0.6
zuper-nodes-z5>=5.0.7
duckietown-gym-daffy>=5.0.4


Expand Down

0 comments on commit 5fb9649

Please sign in to comment.