File size: 1,016 Bytes
8bf38df 342c747 8bf38df | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | ---
license: mit
task_categories:
- video-classification
- question-answering
tags:
- egocentric-video
- action-planning
- video-qa
size_categories:
- n<1K
---
# EgoPlan-Bench Dataset
This dataset contains 741 samples from the EgoPlan-Bench benchmark for egocentric video understanding and action planning.
## Dataset Structure
Each sample contains:
- **video**: The video file
- **question**: The question about what action should be taken next
- **task_goal**: The overall task goal
- **options**: List of 4 possible actions (choices a, b, c, d)
- **answer**: The correct answer (a, b, c, or d)
- **sample_id**: Original sample ID
- **video_id**: Original video ID
## Usage
```python
from datasets import load_dataset
dataset = load_dataset("advaitgupta/egoplan-bench")
# Access a sample
sample = dataset['train'][0]
print(sample['question'])
print(sample['options'])
print(sample['answer'])
```
## Citation
If you use this dataset, please cite the original EgoPlan-Bench paper.
## License
MIT License
|