Datasets:
AVTime
avtime-longvale-pct100-v1 is a restartable archival release of full-video temporal-event
data. Each example contains one complete original video and one compact JSON
answer. The package provides a training split and a video-disjoint held-out
test split.
Label format
Each row in train.jsonl has exactly one videos entry and three messages.
The assistant target is:
{"events":[{"start_pct":0,"end_pct":12,"caption":"..."}]}
start_pct and end_pct are inclusive integer buckets from 0 through 99,
relative to the full original video duration. Every event has only
start_pct, end_pct, and caption.
Contents
- 56,917 training rows
- 300 held-out test rows
- 57,217 unique original videos
- 2173.31 GiB of original media before compression
- 1,294 independently extractable media archives
- 1 unusually large original video(s) stored as byte-identical parts
The release intentionally excludes historical event-window helper clips. They are redundant once each training episode is represented by one complete video.
Restore
First extract the metadata archive, then extract every media archive into the same destination:
for archive in archives/*.tar.zst; do
zstd -t "$archive"
tar -I zstd -xf "$archive"
done
python restore_split_media.py --root .
After extraction, train.jsonl and test.jsonl reference media with
package-relative paths under media/. The restore command is a no-op for
normal files and concatenates only the exceptional .parts videos without
transcoding or changing their bytes.
Source and redistribution notice
This release is derived from AVTime and LongVALE training data. It preserves no extra license grant for original video assets. It is public at the release owner's direction; users are responsible for complying with applicable upstream redistribution terms.
- Downloads last month
- 1,062