--- license: cc-by-4.0 pretty_name: DuckAD Driving Dataset task_categories: - robotics - image-segmentation tags: - autonomous-driving - imitation-learning - end-to-end-driving - carla - duckietown size_categories: - 100K speed profile import numpy as np bev_ids = np.array(sample["bev"]) # 64x64 tag ids fg_mask = np.array(sample["seg"]) > 0 # boolean foreground mask ``` ## Collection Data was collected with a rule-aware expert (lane following, junction turns, stopping for duckies and traffic) driving in synchronous CARLA at 20 Hz (`fixed_delta_seconds=0.05`). Each recording segment respawns the ego at a new random location; traffic vehicles are driven by the CARLA Traffic Manager. Junction approaches on the training maps are labeled with the expert's chosen `LEFT`/`STRAIGHT`/`RIGHT` command; everywhere else the command is `DEFAULT`. ## Notes - Frames are stored as captured — **no augmentation is baked in**. - The `test` split is for cross-map/lighting generalization; it uses a map and HDRI environment that never appear in `train`. ## License Released under **CC-BY 4.0**. All visible content (maps, duckiebot vehicles, props) is custom-built for this dataset.