The dataset viewer is not available for this subset.
Exception: SplitsNotFoundError
Message: The split names could not be parsed from the dataset config.
Traceback: Traceback (most recent call last):
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
for split_generator in builder._split_generators(
~~~~~~~~~~~~~~~~~~~~~~~~~^
StreamingDownloadManager(base_path=builder.base_path, download_config=download_config)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/webdataset/webdataset.py", line 81, in _split_generators
first_examples = list(islice(pipeline, self.NUM_EXAMPLES_FOR_FEATURES_INFERENCE))
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/webdataset/webdataset.py", line 32, in _get_pipeline_from_tar
fs: fsspec.AbstractFileSystem = fsspec.filesystem("memory")
~~~~~~~~~~~~~~~~~^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/fsspec/registry.py", line 302, in filesystem
cls = get_filesystem_class(protocol)
File "/usr/local/lib/python3.14/site-packages/fsspec/registry.py", line 239, in get_filesystem_class
raise ValueError(f"Protocol not known: {protocol}")
ValueError: Protocol not known: memory
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 71, in compute_split_names_from_streaming_response
for split in get_dataset_split_names(
~~~~~~~~~~~~~~~~~~~~~~~^
path=dataset,
^^^^^^^^^^^^^
config_name=config,
^^^^^^^^^^^^^^^^^^^
token=hf_token,
^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
info = get_dataset_config_info(
path,
...<6 lines>...
**config_kwargs,
)
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.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.
IntentionNav Dataset
IntentionNav is a 500-item benchmark for intent-driven object navigation in indoor scenes. Each item describes a target object indirectly through a human intent rather than naming the object category.
Items: 500
Scenes: 176 Kujiale apartment scenes
Target categories: 64
Instruction variants: 4 per item, for 2000 English instructions
Photo format: 1024 x 1024 PNG, rendered in Isaac Sim
Target policy: each item points to one USD object instance whose target category has exactly one physical instance in that scene.
Primary intent-mode counts are: event-script 202, inner-state 167, physical-state 72, and affordance 59.
Layout
README.md
croissant.json
selected_500_intents.jsonl
episodes.jsonl
<scene_id>/
intents.json
manifest.json
photos/
*.png
Fields Per Item
selection_id: unique ID, e.g. SEL_001scene_id: kujiale_XXXXtarget_category: ground-truth target object categorytarget_representative: specific object instance (e.g. air_purifier_0003/Meshes)photo: relative path to the image (inside this scene's photos/ dir after reorg)formal_en/natural_en/casual_en/emotional_en: 4 English intent variants_refine_meta: optional rewrite/judge metadata with target-grounding (tg) and style-distinguishability (sd) scores_intent_mode: primary diagnostic mode (EVENT_SCRIPT,INNER_STATE,PHYSICAL_STATE, orAFFORDANCE)room/room_type: where the target is located- see
selected_500_intents.jsonlfor the full schema
Fixed Navigation Episodes
episodes.jsonl contains the frozen 500-episode navigation specification used for evaluation.
Each row is joined to the intent records by selection_id and includes the exact scene_id, target object and position, start position and quaternion, start/target rooms, and geodesic/euclidean distances.
The file was frozen before submission and is released unchanged.
Reference Evaluation Resources
The reference_results/ directory additionally provides the reference-agent
records, retained episode artifacts, evaluation-code snapshots, and
reproducibility metadata used to audit and replay the reported benchmark scores.
The release is organized as follows:
reference_results/
logs/
episode_artifacts/
evaluation_code/
reproducibility/
MANIFEST.json
SHA256SUMS
Archives preserve paths relative to the IntentionNav repository root.
MANIFEST.json records archive contents and source revisions, while
SHA256SUMS provides release-level integrity checks.
Loading Example
import json
with open("selected_500_intents.jsonl", "r", encoding="utf-8") as f:
items = [json.loads(line) for line in f if line.strip()]
item = items[0]
print(item["selection_id"], item["scene_id"], item["target_category"])
print(item["natural_en"])
with open("episodes.jsonl", "r", encoding="utf-8") as f:
episodes = {row["selection_id"]: row for row in map(json.loads, f)}
episode = episodes[item["selection_id"]]
print(episode["start_position"], episode["target_position"])
Image paths are scene-relative. For an item with scene_id == "kujiale_0262" and photo == "surface_photos/21_x.png", the packaged image is under kujiale_0262/photos/21_x.png.
Notes
The dataset is intended for benchmark evaluation of embodied AI agents and VLM-based navigation systems. It does not contain human subjects or personally identifiable information. The current release includes model-generated English intents and automated VLM judge metadata; users should treat the annotations as benchmark labels rather than naturally collected human utterances.
Pinned upstream scene revisions and simulator/environment metadata are included
under reference_results/reproducibility/; large third-party scene assets remain
hosted by their original providers under their applicable licenses. The 176 scene
assets should be downloaded from Eyz/VLNVerse_scene;
the exact file list is
provided in reference_results/reproducibility/vlnverse_scene_manifest.jsonl.zst.
This peer-review snapshot intentionally omits author identities, affiliations, and identifying project links. The benchmark payload is otherwise unchanged from the fixed pre-submission release.
- Downloads last month
- 906