Duckietown Challenges | Home | Challenges | Submissions |
Collision checking (validation)
These are the metrics defined:
false_negative_rate
False negative (guessed free but there was a collision)
false_positive_rate
False positive (detected a collision but it was not)
No dependencies
At the beginning execute step step1
.
If step step1
has result success, then declare the submission SUCCESS
.
If step step1
has result failed, then declare the submission FAILED
.
If step step1
has result error, then declare the submission ERROR
.
step1
Timeout 1000.0
This is the Docker Compose configuration skeleton:
version: '3' services: solution: image: SUBMISSION_CONTAINER environment: AIDONODE_DATA_IN: /fifos/checker-in AIDONODE_DATA_OUT: fifo:/fifos/checker-out evaluator: image: registry-stage2.duckietown.org/andrea/duckietown-challenges:lx22-collision-check-vali-step1-evaluator@sha256:c6599a82d979b44b59daf3f6b15a7c3d7bb9f8dacca84343b9a10c58a2ce50a4 environment: {}
The text SUBMISSION_CONTAINER
will be replaced with the user containter.
No particular resources required.