| --- |
| pretty_name: EventActivityNet |
| tags: |
| - event-based-vision |
| - video-understanding |
| - activitynet |
| - hdf5 |
| size_categories: |
| - 1K<n<10K |
| --- |
| |
| # Dataset Card for EventActivityNet v1.0 |
|
|
| ## Dataset Summary |
|
|
| EventActivityNet v1.0 is a generated event voxel tensor dataset derived from ActivityNet videos and ActivityNet Captions annotations. It contains per-video HDF5 files with 5-bin event voxel tensors, release metadata, and three nested release scales: Large, Medium, and Small. |
|
|
| The dataset is designed for research on event-based video understanding, event voxel tensor representation learning, and caption-aligned activity modeling. |
|
|
| ## Dataset Details |
|
|
| | Field | Value | |
| |---|---| |
| | Dataset name | EventActivityNet | |
| | Version | v1.0 | |
| | Repository | `https://huggingface.co/datasets/IIS-CVL/EventActivityNet` | |
| | Data type | HDF5 event voxel tensors plus release manifests | |
| | Source lineage | ActivityNet / ActivityNet Captions | |
| | Source video lineage | non-interpolated/original-rate ActivityNet videos | |
| | HDF5 files | 3,263 | |
| | Total size | approximately 4.36 TB | |
| | Action classes | 200 | |
| | Event bins | 5 | |
| | Large train / validation | 2,316 / 947 | |
|
|
| ## Scale Statistics |
|
|
| | Scale | Videos | Hours | Train | Validation | Classes | Event-friendly | |
| |---|---:|---:|---:|---:|---:|---:| |
| | Large | 3,263 | 106.94 | 2,316 | 947 | 200 | 65.31% | |
| | Medium | 1,537 | 50.00 | 1,074 | 463 | 200 | 64.80% | |
| | Small | 667 | 20.00 | 473 | 194 | 200 | 64.62% | |
|
|
| Small is a strict subset of Medium, and Medium is a strict subset of Large. |
|
|
| ## Dataset Structure |
|
|
| Each ActivityNet video in the release corresponds to exactly one HDF5 file. Scale membership and train/validation assignment are manifest-based, so users can select Large, Medium, Small, train, or validation subsets without physically moving HDF5 files. |
|
|
| ## Source and Provenance |
|
|
| The Large release exactly matches the recovered original Large subset manifest. The subset was curated from ActivityNet Captions train and validation metadata after merging those splits before sampling. |
|
|
| Verified curation principles: |
|
|
| - seed `2025`; |
| - initial class-balanced sampling with `max(5, int(class_ratio * class_count))`; |
| - duration stratification using 33% and 66% quantile buckets; |
| - event-friendly enrichment using caption keywords or first-frame darkness. |
|
|
| The source video lineage is the non-interpolated/original-rate ActivityNet video lineage. Source FPS varies by video. |
|
|
| ## Generation Pipeline |
|
|
| The recovered generation implementation follows this call chain: |
|
|
| ```text |
| activitynet.sh |
| -> activitynet.py |
| -> mp4_to_h5.mp4_to_h5_stream() |
| -> data/v2v_core_esim_gpu.EventEmulatorGPU.video_to_voxel() |
| -> HDF5 writer |
| ``` |
|
|
| Confirmed generation properties: |
|
|
| - 5 event bins; |
| - source spatial resolution preserved; |
| - no learned V2V checkpoint required for HDF5 generation; |
| - `events` stored as `int16`; |
| - auxiliary index/count arrays stored as `int64` and `int32`. |
|
|
| Medium and Small are newly generated deterministic nested v1.0 release scales derived from Large. |
|
|
| ## Event-Friendly Definition |
|
|
| A video is event-friendly if either condition holds: |
|
|
| - a caption contains at least one keyword: `run`, `fast`, `sprint`, `night`, `dark`, `slow-motion`; |
| - the first frame has normalized mean brightness below `0.4`. |
|
|
| | Scale | Event-friendly videos | Caption-keyword matches | Dark-first-frame matches | Both keyword and dark | Neither trigger | |
| |---|---:|---:|---:|---:|---:| |
| | Large | 2,131 | 630 | 1,954 | 453 | 1,132 | |
| | Medium | 996 | 297 | 914 | 215 | 541 | |
| | Small | 431 | 118 | 396 | 83 | 236 | |
|
|
| ## Data Format |
|
|
| Each video is stored as one HDF5 file with: |
|
|
| - `events`: `(T, 5, H, W)`, `int16`; |
| - `voxel_event_start`: `(T,)`, `int64`; |
| - `voxel_event_count`: `(T,)`, `int32`. |
|
|
| `T`, `H`, `W`, and file size vary by video. See [DATASET_FORMAT.md](DATASET_FORMAT.md) for details. |
|
|
| ## Intended Uses |
|
|
| EventActivityNet is intended for: |
|
|
| - event-based video representation learning; |
| - activity recognition using generated event voxel tensors; |
| - event/video-language modeling with captions; |
| - benchmarking methods across nested dataset scales; |
| - research on event-friendly subsets of activity videos. |
|
|
| ## Out-of-Scope Uses |
|
|
| This dataset should not be used for: |
|
|
| - identifying people; |
| - biometric recognition; |
| - surveillance deployment; |
| - making consequential decisions about individuals; |
| - redistributing or using source-derived data in ways that violate ActivityNet or ActivityNet Captions terms. |
|
|
| ## Limitations |
|
|
| - The release contains generated event voxel tensors, not native sensor event streams. |
| - Source FPS varies by video. |
| - Medium and Small are deterministic nested v1.0 scales, not historical original subsets. |
| - The verified local class count is 200. Some ActivityNet references mention 203 classes, but the recovered release metadata and manifests for EventActivityNet v1.0 verify 200 action classes. |
| - The verified Large duration is 106.94 hours using the release duration field. Historical references to 107.3 hours should be treated as approximate for this recovered release. |
|
|
| ## Licensing and Citation |
|
|
| EventActivityNet is derived from ActivityNet / ActivityNet Captions. Source dataset terms, licenses, and citation obligations still apply. See [LICENSE_NOTES.md](LICENSE_NOTES.md). |
|
|
| If you use EventActivityNet v1.0, cite this dataset and the original ActivityNet / ActivityNet Captions sources. See [CITATION.cff](CITATION.cff). |
|
|
| ## Integrity Verification |
|
|
| Final technical validation confirmed: |
|
|
| - 3,263 valid HDF5 files; |
| - all files open successfully; |
| - zero truncated or unreadable files; |
| - zero remaining structural warnings; |
| - required datasets and dtypes are present in every file; |
| - Large split counts are 2,316 train and 947 validation; |
| - total release size is approximately 4.36 TB. |
|
|