The dataset viewer is not available for this split.
Error code: FeaturesError
Exception: FileNotFoundError
Message: [Errno 2] No such file or directory: '<datasets.utils.file_utils.FilesIterable object at 0x7f3f011c4a10>'
Traceback: Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/split/first_rows.py", line 244, in compute_first_rows_from_streaming_response
iterable_dataset = iterable_dataset._resolve_features()
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 4408, in _resolve_features
features = _infer_features_from_batch(self.with_format(None)._head())
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2679, in _head
return next(iter(self.iter(batch_size=n)))
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2861, in iter
for key, pa_table in ex_iterable.iter_arrow():
~~~~~~~~~~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2395, in _iter_arrow
yield from self.ex_iterable._iter_arrow()
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 536, in _iter_arrow
for key, pa_table in iterator:
^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 419, in _iter_arrow
for key, pa_table in self.generate_tables_fn(**gen_kwags):
~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/xml/xml.py", line 67, in _generate_tables
with open(file, encoding=self.config.encoding, errors=self.config.encoding_errors) as f:
~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/streaming.py", line 73, in wrapper
return function(*args, download_config=download_config, **kwargs)
File "/usr/local/lib/python3.14/site-packages/datasets/utils/file_utils.py", line 967, in xopen
return open(main_hop, mode, *args, **kwargs)
FileNotFoundError: [Errno 2] No such file or directory: '<datasets.utils.file_utils.FilesIterable object at 0x7f3f011c4a10>'Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
PlannerForge Scenario Corpus
The 582 CommonRoad scenarios used by PlannerForge: LLM Agents for Scenario-Based Testing of Motion Planners in Autonomous Driving (EMNLP 2026 Main Conference).
- 📑 Paper and project page: https://github.com/TUM-AVS/PlannerForge
Important: the scenarios in this corpus are not original work of the PlannerForge authors. They come from the CommonRoad scenario database and carry their own credits in each file's XML metadata. Cite CommonRoad alongside this corpus — see Provenance and credits.
What this is
This is the scenario database behind three parts of the paper:
- the Selection benchmark — 200 natural-language queries retrieve from this corpus through a
five-stage funnel (reported as
sat_all,sat_top1,sat_any@5); - the Modification benchmark — 200 of these scenarios are the base scenarios for the four edit types (Trajectory, Behaviour, Participant, Goal);
- Test Execution and ADS Assessment — scenarios are run through the Frenetix and MP-RBFN motion planners.
Scenarios generated by PlannerForge from natural language are not included here; the Generation benchmark builds those from OpenStreetMap at run time.
What the scenarios look like
Four scenarios from the corpus, animated over their recorded horizon. Vehicles, traffic lights and traffic signs are all part of the scenario; the numbers are lanelet and obstacle IDs.
Rendered with the PlannerForge CommonRoad renderer (osm_pipeline/gif_cr.py), 28 frames each.
Contents
scenarios/ 582 CommonRoad XML files, ~890 MB
previews/ 4 animated previews of the scenarios above
Each file is a self-contained CommonRoad scenario (commonRoadVersion="2020a") holding the
lanelet network, static and dynamic obstacles with their trajectories, and one or more planning
problems. File names follow the CommonRoad benchmark ID convention,
<COUNTRY>_<City>-<id>_<config>_T-<n>.xml, e.g. DEU_Muc-2_1_T-1.xml.
Coverage
582 scenarios across 19 countries:
| Country | Scenarios | Country | Scenarios | |
|---|---|---|---|---|
| DEU (Germany) | 228 | FRA (France) | 23 | |
| USA | 83 | CHN (China) | 19 | |
| ESP (Spain) | 68 | ZAM (Zambia) | 30 | |
| GRC (Greece) | 43 | POL (Poland) | 30 |
…plus 11 further countries (58 scenarios).
Loading
These are CommonRoad XML files, not a tabular dataset — load them with commonroad-io rather
than datasets.load_dataset:
from huggingface_hub import snapshot_download
from commonroad.common.file_reader import CommonRoadFileReader
path = snapshot_download("Yuan-avs/PlannerForge-Scenarios", repo_type="dataset")
scenario, planning_problem_set = CommonRoadFileReader(
f"{path}/scenarios/DEU_Muc-2_1_T-1.xml").open()
print(scenario.scenario_id, len(scenario.dynamic_obstacles))
To fetch a single scenario without the full 890 MB:
from huggingface_hub import hf_hub_download
f = hf_hub_download("Yuan-avs/PlannerForge-Scenarios",
"scenarios/DEU_Muc-2_1_T-1.xml", repo_type="dataset")
Provenance and credits
These scenarios come from the CommonRoad scenario database —
https://commonroad.in.tum.de/scenarios/ — maintained by the Technical University of Munich.
They are redistributed here unchanged, as the exact set used in the paper, so that the
Selection, Modification and Test results can be reproduced against identical inputs.
Per-scenario author and source credits are embedded in each file's <commonRoad> root element.
Please honour the CommonRoad terms of use and cite CommonRoad alongside this corpus:
@inproceedings{althoff2017commonroad,
title = {CommonRoad: Composable benchmarks for motion planning on roads},
author = {Althoff, Matthias and Koschi, Markus and Manzinger, Stefanie},
booktitle = {2017 IEEE Intelligent Vehicles Symposium (IV)},
pages = {719--726},
year = {2017},
organization = {IEEE}
}
Most of the corpus was produced with Scenario Factory 2.0, which PlannerForge also uses as its rule-based generation baseline in the paper:
@article{finkeldei2025scenariofactory,
title = {Scenario Factory 2.0: Scenario-Based Testing of Automated Vehicles with {CommonRoad}},
author = {Finkeldei, Florian and Thees, Christoph and Weghorn, Jan-Niklas and Althoff, Matthias},
journal = {Automotive Innovation},
volume = {8},
number = {2},
pages = {207--220},
year = {2025}
}
A note on contents
Three *.con.xml files present in the working corpus were excluded: they are SUMO
connection files emitted by the CommonRoad Scenario Designer, not scenarios, and each has a
proper CommonRoad twin already in the set.
Citation
@inproceedings{gao2026plannerforge,
title = {PlannerForge: LLM Agents for Scenario-Based Testing of
Motion Planners in Autonomous Driving},
author = {Gao, Yuan and M{\"u}ller, Sebastian and Piccinini, Mattia and
Kaufeld, Marc and Zhang, Yuchen and Sch{\"a}fer, Finn Rasmus and
Song, Qunying and Betz, Johannes},
booktitle = {Proceedings of the 2026 Conference on Empirical Methods in
Natural Language Processing (EMNLP)},
year = {2026},
address = {Budapest, Hungary},
note = {Code and data:
https://github.com/TUM-AVS/PlannerForge}
}
When you use these scenarios, please cite CommonRoad as well as this corpus.
- Downloads last month
- 37



