imitation-learning
imitation-learning copied to clipboard
Questions of running run_CIL on Town02
Hey!
When I run the 'run_CIL.py' of Carla_0.8.2 in Town01, it works good. However when change to Town02, something strange happen:
- The first episode runs smoothly, but the car turns two times in this episode. The start and end pose is (38, 34). According to CoRL2017 these pose should be a straight line. So what's wrong with the setting?
- When first episode finish and comes to the second one (start and end pose is (4, 2)), the run_CIL will put the following error and stop running:
Traceback (most recent call last):
File "run_CIL.py", line 72, in
So is there are somthing wrong in the code?
Thank you very much! Dai Qi
Hey daqi, I know what happened ! Your server is running town 01 , and you set town02 for the run_CIL.py like this:
python run_CIL.py -c Town02
Am I right ? Make sure your server is running for town 02.
./CarlaUE4.sh /Game/Maps/Town02 -windowed -world-port=2000
We will add the possibility to chose the town from the client, since the way you have to execute this now is quite error prone.
That's true, Thank you!