Datasets:
category_type stringclasses 2
values | name stringlengths 2 19 | index int64 0 35 | ov_split stringclasses 2
values |
|---|---|---|---|
object | person | 0 | base |
object | bag | 1 | base |
object | bed | 2 | novel |
object | blanket | 3 | base |
object | book | 4 | base |
object | box | 5 | base |
object | broom | 6 | novel |
object | chair | 7 | base |
object | closet/cabinet | 8 | base |
object | clothes | 9 | base |
object | cup/glass/bottle | 10 | base |
object | dish | 11 | base |
object | door | 12 | novel |
object | doorknob | 13 | novel |
object | doorway | 14 | novel |
object | floor | 15 | novel |
object | food | 16 | base |
object | groceries | 17 | base |
object | laptop | 18 | base |
object | light | 19 | base |
object | medicine | 20 | novel |
object | mirror | 21 | base |
object | paper/notebook | 22 | base |
object | phone/camera | 23 | base |
object | picture | 24 | novel |
object | pillow | 25 | base |
object | refrigerator | 26 | base |
object | sandwich | 27 | novel |
object | shelf | 28 | base |
object | shoe | 29 | novel |
object | sofa/couch | 30 | base |
object | table | 31 | base |
object | television | 32 | base |
object | towel | 33 | base |
object | vacuum | 34 | base |
object | window | 35 | novel |
relation | looking_at | 0 | base |
relation | not_looking_at | 1 | base |
relation | unsure | 2 | novel |
relation | above | 3 | base |
relation | beneath | 4 | novel |
relation | in_front_of | 5 | base |
relation | behind | 6 | base |
relation | on_the_side_of | 7 | base |
relation | in | 8 | novel |
relation | carrying | 9 | base |
relation | covered_by | 10 | novel |
relation | drinking_from | 11 | base |
relation | eating | 12 | novel |
relation | have_it_on_the_back | 13 | base |
relation | holding | 14 | base |
relation | leaning_on | 15 | base |
relation | lying_on | 16 | base |
relation | not_contacting | 17 | novel |
relation | other_relationship | 18 | novel |
relation | sitting_on | 19 | base |
relation | standing_on | 20 | base |
relation | touching | 21 | base |
relation | twisting | 22 | base |
relation | wearing | 23 | base |
relation | wiping | 24 | novel |
relation | writing_on | 25 | base |
OvDSGG Action Genome Open-Vocabulary Split
This dataset repository contains the open-vocabulary category split used by OvDSGG for Action Genome experiments.
It does not redistribute Action Genome videos, frames, or full annotations. Users must obtain and process Action Genome separately, then use this split metadata to reproduce the OvDSGG open-vocabulary training/evaluation protocol.
Paper: https://huggingface.co/papers/2608.14835
Code: https://github.com/jhelsby/OvDSGG
Model checkpoints: https://huggingface.co/jhelsby/OvDSGG
Getting Action Genome
This repository provides only the OvDSGG open-vocabulary split metadata. To train or evaluate OvDSGG, download Action Genome separately, process it with the Action Genome Toolkit, and place the processed COCO-style annotation files from this folder in the annotations directory.
The expected dataset layout is:
action_genome/
annotations/
ag_train_coco_style.json
ag_test_coco_style.json
...
frames/
videos/
Usage
from datasets import load_dataset
dataset = load_dataset("jhelsby/ovdsgg-action-genome-split")
split = dataset["train"]
Each row has:
category_type:objectorrelationname: Action Genome category nameindex: zero-based index in the full OvDSGG Action Genome class listov_split:baseornovel
Example:
base_objects = [
row["name"]
for row in dataset["train"]
if row["category_type"] == "object" and row["ov_split"] == "base"
]
Split Summary
- Objects: 25 base, 11 novel, 36 total
- Relations: 18 base, 8 novel, 26 total
The split is generated by tools/propose_ag_split.py in the OvDSGG repository and is hardcoded in datasets/ag.py for model training and evaluation.
Citation
@misc{ovdsgg2026,
title={OvDSGG},
year={2026},
url={https://huggingface.co/papers/2608.14835}
}
- Downloads last month
- 25