Closed dan11003 closed 8 months ago
Minor fix of submission checker tested by running:
python3 submission_checker.py
...in a folder containing test-odometry.zip. The .zip included a set of sequences boreas_.txt, and metadata.yaml:
benchmark: odometry methodname: methodname email: dla.adolfsson@gmail.com 2d: True author: Daniel Adolfsson papertitle: papertitle paperurl: https://arxiv.org venue: journal year: 2024 runtimeseconds: 0.0074 computer: AMD Ryzen 7 7800x3d @ 5.0GHz sensors: radar
Before fix: Exception: metadata.yaml not correctly formatted After fix: Submission checker PASSED
Hi Daniel!
sensors should be a list, so your yaml file would contain: sensors: ['radar']
sensors
sensors: ['radar']
Thanks, that works well!
Cheers
Minor fix of submission checker tested by running:
...in a folder containing test-odometry.zip. The .zip included a set of sequences boreas_.txt, and metadata.yaml:
Before fix: Exception: metadata.yaml not correctly formatted After fix: Submission checker PASSED