Dataset Viewer
Duplicate
The dataset viewer is not available for this split.
Cannot extract the features (columns) for the split 'train' of the config 'default' of the dataset.
Error code:   FeaturesError
Exception:    ValueError
Message:      Trailing data
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/json/json.py", line 251, in _generate_tables
                  batch = "\n".join(ujson_dumps(x) for x in ujson_loads(full_data)).encode()
                                                            ~~~~~~~~~~~^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/utils/json.py", line 20, in ujson_loads
                  return pd.io.json.ujson_loads(*args, **kwargs)
                         ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
              ValueError: Trailing data

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.

BEAT EmbodiedBench Training Dataset

This package contains the EmbodiedBench ALFRED training data for BEAT, including supervised fine-tuning (SFT) examples with paired negatives and Contrastive Trigger Learning (CTL) preference pairs.

The accompanying paper is:

BEAT: Visual Backdoor Attacks on VLM-based Embodied Agents via Contrastive Trigger Learning

Qiusi Zhan*, Hyeonjeong Ha*, Rui Yang, Sirui Xu, Hanyang Chen, Liang-Yan Gui, Yu-Xiong Wang, Huan Zhang, Heng Ji, and Daniel Kang. ICLR 2026. *Equal contribution.

Paper Β· Project Page Β· Code Β· VAB BEAT Dataset

Dataset Description

The data supports research on visual backdoors in vision-language models used for embodied task execution. The EmbodiedBench examples include household observations, task instructions, interaction history, and assistant responses describing reasoning and executable actions.

Two training stages are provided:

  1. SFT with negatives: benign task examples, selected backdoor examples, and a matched negative example for each selected backdoor episode. The negative examples contain task-following responses for their paired observations.
  2. CTL / DPO: paired backdoor and negative conversations for preference learning. These splits correspond to keep_ratio_sft=0; they contain no additional SFT-only examples.

The package contains 3,770 unique SFT records, 545 unique CTL pair records, and 3,770 PNG images across all variants. CTL uses 1,090 of these images. Variants overlap, so their row counts should not be added to estimate unique dataset size.

Directory Structure

BEAT_embodiedbench/
β”œβ”€β”€ README.md
β”œβ”€β”€ CTL_README.md
β”œβ”€β”€ data/
β”‚   β”œβ”€β”€ sft_with_negatives/
β”‚   β”‚   β”œβ”€β”€ train_with_negative_p_<p>.jsonl
β”‚   β”‚   └── val_with_negative_p_<p>.jsonl
β”‚   └── ctl/
β”‚       β”œβ”€β”€ train_dpo_p_<p>.jsonl
β”‚       └── val_dpo_p_<p>.jsonl
└── images/
    β”œβ”€β”€ alfred-sft/          # Benign observations
    β”œβ”€β”€ eb_alfred/           # Paired negative observations
    └── eb_alfred-attack/    # Backdoor observations

Both data directories provide p ∈ {0, 0.1, 0.2, 0.3, 0.5, 0.8, 1}. The filename suffix 1 represents the setting 1.0. Each directory contains seven training files and seven validation files.

Citation

Please cite the BEAT paper when using this dataset. The citation below follows the project page.

@inproceedings{zhan2026beat,
  title = {BEAT: Visual Backdoor Attacks on VLM-based Embodied Agents via Contrastive Trigger Learning},
  author = {Zhan, Qiusi and Ha, Hyeonjeong and Yang, Rui and Xu, Sirui and Chen, Hanyang and Gui, Liang-Yan and Wang, Yu-Xiong and Zhang, Huan and Ji, Heng and Kang, Daniel},
  booktitle = {ICLR},
  year = {2026}
}

License

CC BY-NC 4.0, as specified in the BEAT dataset card.

Downloads last month
76

Paper for hjha/BEAT