SAM3
Collection
5 items
β’
Updated
β’
78
The information you provide will be collected, stored, processed and shared in accordance with the Meta Privacy Policy.
Log in or Sign Up to review the conditions and access this dataset content.
License each domain has its own License
SA-Co/VEval is an evaluation dataset comprising of 3 domains, each domain has a val and test split.
This Hugging Face dataset repo contains the following contents:
datasets/facebook/SACo-VEval/tree/main/
βββ annotation/
β βββ saco_veval_sav_test.json
β βββ saco_veval_sav_val.json
β βββ saco_veval_smartglasses_test.json
β βββ saco_veval_smartglasses_val.json
β βββ saco_veval_yt1b_test.json
β βββ saco_veval_yt1b_val.json
βββ media/
βββ saco_sg.tar.gz
βββ yt1b_start_end_time.json
saco_sg.tar.gz: the preprocessed JPEGImages for SA-Co/VEval - SmartGlassesyt1b_start_end_time.json: the Youtube video ids and the start and end time used in SA-Co/VEval - YT-Temporal-1BMore detail to prepare the complete SA-Co/VEval Dataset can be found in the SAM 3 Github.
The format is similar to the YTVIS format.
In the annotation json, e.g. saco_veval_sav_test.json there are 5 fields:
videos - id field abovecategories - id field belowvideos - id abovecategories - id abovenum_masklets > 0 it is a positive video-np pair, and the presenting masklets can be found in the annotations fieldnum_masklets = 0 it is a negative video-np pair, meaning no masklet presenting at alldata {
"info": info
"videos": [video]
"annotations": [annotation]
"categories": [category]
"video_np_pairs": [video_np_pair]
}
video {
"id": int
"video_name": str # e.g. sav_000000
"file_names": List[str]
"height": int
"width": width
"length": length
}
annotation {
"id": int
"segmentations": List[RLE]
"bboxes": List[List[int, int, int, int]]
"areas": List[int]
"iscrowd": int
"video_id": str
"height": int
"width": int
"category_id": int
"noun_phrase": str
}
category {
"id": int
"name": str
}
video_np_pair {
"id": int
"video_id": str
"category_id": int
"noun_phrase": str
"num_masklets" int
}
SAM 3 Github sam3/examples/saco_veval_vis_example.ipynb shows some examples of the data format and data visualization.