Dataset Viewer
The dataset viewer is taking too long to fetch the data. Try to refresh this page.
Server-side error
Error code: ClientConnectionError
ClarusC64/false_absence_detection_v01
Dataset summary
This dataset tests whether models treat invisible entities as gone or still present.
In each sequence, a target leaves the camera view.
Some exits are real.
Some are false absences with clear evidence that the target remains in the container.
Goal
- check if models infer continued presence from indirect cues
- avoid treating every disappearance as an exit
- keep spatial grounding under occlusion and clutter
Key signals
absence_tag: present, still_present, left_sceneevidence_type: shadow, reflection, audio cue, motion trail, interaction trace, door state, physical constraint, nonefalse_absence_target: true when the model should infer βstill presentβtrap_flag: true when the sample is designed to lure models into assuming exit
Columns
sample_idβ unique id per frame samplesplitβ train, valid, evalmodalityβ videoscene_typeβ indoor_room, factory_line, corridor, sports_pitch, warehousesequence_idβ id for a temporal sequenceframe_indexβ index within the sequencetime_gapβ not used here (fixed gaps inside raw video)container_idβ id of the main containercontainer_boundsβ "x_min y_min x_max y_max"boundary_typeβ hard, soft, porouszone_idβ region id inside the containerzone_typeβ sofa, door, conveyor, chute, passage, turn_left, exit_door, left_flank, stands, robot_lane, intersection, dock_exittarget_entity_idβ tracked entity such as cat_01, crate_05, cart_02, ball_07, robot_11target_visibilityβ visible, partial, not_visibleabsence_tagβ present, still_present, left_sceneevidence_typeβ none, shadow, motion_trail, interaction_trace, audio_cue, door_state, reflection, crowd_reaction, physical_constraintfalse_absence_targetβ true if the model should infer continued presence from evidencetrap_flagβ true if the scene is designed as a false-absence traplabel_typeβ baseline, false_absence_case, true_exitdrift_riskβ low, medium, highcommentβ short human note
Example loading code
from datasets import load_dataset
ds = load_dataset("ClarusC64/false_absence_detection_v01")
row = ds["train"][1]
print(row["target_entity_id"], row["target_visibility"],
row["absence_tag"], row["evidence_type"], row["false_absence_target"])
- Downloads last month
- 37