--- pretty_name: SimAct Video language: - en size_categories: - 100K/`: ```text data/ / train.jsonl validation.jsonl test.jsonl # only when available train_chunk_000.tar train_chunk_001.tar validation_chunk_000.tar test_chunk_000.tar # only when available train.done validation.done test.done # only when available ``` The tar files contain images at paths like: ```text data///images/_pre.jpg data///images/_post.jpg ``` The same relative paths are used in the JSONL `precon` and `postcon` fields. ## JSONL Schema Each split file is a JSON Lines file. Each line is one example with this schema: ```json { "dataset": "string", "split": "train | validation | test", "id": "string", "original_id": "string", "precon": "string", "postcon": "string", "source": "string", "raw_action": { "sentence": "string", "verb": ["string"], "noun": ["string"] } } ``` Field meanings: | Field | Type | Description | |---|---|---| | `dataset` | string | Dataset name used in this release, such as `fineaction` or `epic_kitchens_100`. | | `split` | string | Split name: `train`, `validation`, or `test`. | | `id` | string | Release-stable example id generated by this conversion, formatted as `__<8-digit-index>`. | | `original_id` | string | Original dataset/triplet id before remapping. Use this for tracing back to the source annotations. | | `precon` | string | Repository-relative path to the start-state image. | | `postcon` | string | Repository-relative path to the end-state image. | | `source` | string | Short description of the source annotation file or field used to build the action segment. | | `raw_action.sentence` | string | Natural-language action text from the source dataset when available; otherwise `""`. | | `raw_action.verb` | list[string] | Source verb label(s) when available; otherwise `[]`. Single-label datasets still use a list. | | `raw_action.noun` | list[string] | Source noun/object label(s) when available; otherwise `[]`. Single-label datasets still use a list. | `raw_action` preserves whatever the source dataset provides. Some datasets provide only a natural-language label, some provide verb/noun labels, and some provide both. Missing values are represented as an empty string for `sentence` and empty lists for `verb` or `noun`. Example row: ```json {"dataset":"hd_epic","split":"validation","id":"hd_epic_validation_00000000","original_id":"P01-20240202-110250-1","precon":"data/hd_epic/validation/images/hd_epic_validation_00000000_pre.jpg","postcon":"data/hd_epic/validation/images/hd_epic_validation_00000000_post.jpg","source":"HD_EPIC_Narrations.pkl narration + verbs/nouns lists","raw_action":{"sentence":"Open the upper cupboard by holding the handle of the cupboard with the left hand.","verb":["open","hold"],"noun":["upper cupboard","handle of cupboard"]}} ```