Duckietown Challenges | Home | Challenges | Submissions |
Lane following challenge.
This challenge is described in the detail in the book.
These are the metrics defined:
driven_lanedir_consec_median
This is the median distance traveled, along a lane. (That is, going in circles will not make this metric increase.)
This is discretized to tiles.
survival_time_median
This is the median survival time. The simulation is terminated when the car goes outside of the road or it crashes with an obstacle.
deviation-center-line_median
This is the median lateral deviation from the center line.
in-drivable-lane_median
This is the median of the time spent outside of the drivable zones. For example this penalizes driving in the wrong lane.
No dependencies
At the beginning execute step step1-simulation
.
If step step1-simulation
has result success, then execute step step2-scoring
.
If step step1-simulation
has result failed, then declare the submission FAILED
.
If step step1-simulation
has result error, then declare the submission ERROR
.
If step step2-scoring
has result success, then execute step step3-videos
.
If step step2-scoring
has result failed, then declare the submission FAILED
.
If step step2-scoring
has result error, then declare the submission ERROR
.
If step step3-videos
has result success, then execute step step4-viz
.
If step step3-videos
has result failed, then declare the submission FAILED
.
If step step3-videos
has result error, then declare the submission ERROR
.
If step step4-viz
has result success, then declare the submission SUCCESS
.
If step step4-viz
has result failed, then declare the submission FAILED
.
If step step4-viz
has result error, then declare the submission ERROR
.
step1-simulation
Timeout None
This is the Docker Compose configuration skeleton:
version: '3' services: solution: image: SUBMISSION_CONTAINER environment: {} evaluator: image: andreacensi/aido1_lf1_r4-v3-step1-simulation-evaluator:2018_12_07_13_03_11 environment: launcher_parameters: "challenge: LF\nepisodes: 7\nsteps_per_episode: 500\n\ include_map: true\nenvironment-constructor: Simulator\nenvironment-parameters:\ \ {seed: 123, map_name: loop_empty, max_steps: 500001, domain_rand:\ \ 0,\n camera_width: 640, camera_height: 480, accept_start_angle_deg:\ \ 6, full_transparency: true,\n distortion: true}\nagent-info: {challenge:\ \ LF}\n" solution_parameters: '{env: Duckietown-Lf-Lfv-Navv-Silent-v1} '
The text SUBMISSION_CONTAINER
will be replaced with the user containter.
No particular resources required.
step4-viz
Timeout None
This is the Docker Compose configuration skeleton:
version: '3' services: visualization: image: andreacensi/aido1_lf1_r4-v3-step4-viz-visualization:2018_12_07_16_14_09 environment: {}
The text SUBMISSION_CONTAINER
will be replaced with the user containter.
No particular resources required.
step3-videos
Timeout None
This is the Docker Compose configuration skeleton:
version: '3' services: videos: image: andreacensi/aido1_lf1_r4-v3-step3-videos-videos:2018_12_07_11_48_55 environment: {}
The text SUBMISSION_CONTAINER
will be replaced with the user containter.
No particular resources required.
step2-scoring
Timeout None
This is the Docker Compose configuration skeleton:
version: '3' services: scorer: image: andreacensi/aido1_lf1_r4-v3-step2-scoring-scorer:2018_12_07_11_48_59 environment: {}
The text SUBMISSION_CONTAINER
will be replaced with the user containter.
No particular resources required.