Luca96 / carla-driving-rl-agent

Code for the paper "Reinforced Curriculum Learning for Autonomous Driving in CARLA" (ICIP 2021)
MIT License
104 stars 26 forks source link

the form of input data #4

Open XuChang-c opened 3 years ago

XuChang-c commented 3 years ago

Hi, can you tell me the form of the observation, such as vehicle. Is it speed and location?

Luca96 commented 3 years ago

Hi, you can find the description of the observation space here. In particular:

The actual position of the vehicle is not included in the observation space, but you can retrieve it by calling get_location() from a vehicle instance: you find it in CARLAEnv for example.