avery00 commited on
Commit
de7aac2
·
verified ·
1 Parent(s): 85c0543

Upload croissant.json

Browse files
Files changed (1) hide show
  1. croissant.json +104 -0
croissant.json ADDED
@@ -0,0 +1,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "@context": "https://w3id.org/croissant/context.jsonld",
3
+ "@type": "Dataset",
4
+ "name": "MomentSeeker",
5
+ "description": "A large-scale multi-modal benchmark for long video moment retrieval.",
6
+ "license": "https://huggingface.co/datasets/avery00/MomentSeeker/blob/main/LICENSE",
7
+ "creator": [
8
+ {
9
+ "name": "Huaying Yuan, Jian Ni"
10
+ }
11
+ ],
12
+ "distribution": [
13
+ {
14
+ "contentUrl": "https://huggingface.co/datasets/avery00/MomentSeeker/resolve/main/videos.tar.gz.part_aa",
15
+ "encodingFormat": "application/gzip"
16
+ },
17
+ {
18
+ "contentUrl": "https://huggingface.co/datasets/avery00/MomentSeeker/resolve/main/videos.tar.gz.part_ab",
19
+ "encodingFormat": "application/gzip"
20
+ },
21
+ {
22
+ "contentUrl": "https://huggingface.co/datasets/avery00/MomentSeeker/resolve/main/videos.tar.gz.part_ac",
23
+ "encodingFormat": "application/gzip"
24
+ },
25
+ {
26
+ "contentUrl": "https://huggingface.co/datasets/avery00/MomentSeeker/resolve/main/query_images.tar.gz",
27
+ "encodingFormat": "application/gzip"
28
+ },
29
+ {
30
+ "contentUrl": "https://huggingface.co/datasets/avery00/MomentSeeker/resolve/main/query_videos.tar.gz",
31
+ "encodingFormat": "application/gzip"
32
+ },
33
+ {
34
+ "contentUrl": "https://huggingface.co/datasets/avery00/MomentSeeker/resolve/main/t2v.json",
35
+ "encodingFormat": "application/json"
36
+ },
37
+ {
38
+ "contentUrl": "https://huggingface.co/datasets/avery00/MomentSeeker/resolve/main/ti2v.json",
39
+ "encodingFormat": "application/json"
40
+ },
41
+ {
42
+ "contentUrl": "https://huggingface.co/datasets/avery00/MomentSeeker/resolve/main/tv2v.json",
43
+ "encodingFormat": "application/json"
44
+ }
45
+ ],
46
+ "field": [
47
+ {
48
+ "name": "qry_text",
49
+ "description": "The textual query describing what to look for in the video.",
50
+ "dataType": "string"
51
+ },
52
+ {
53
+ "name": "qry_img_path",
54
+ "description": "Path to the query image, if applicable.",
55
+ "dataType": "string"
56
+ },
57
+ {
58
+ "name": "qry_video_path",
59
+ "description": "Path to the query video, if applicable.",
60
+ "dataType": "string"
61
+ },
62
+ {
63
+ "name": "src_video_path",
64
+ "description": "Path to the source video in which to locate the answer.",
65
+ "dataType": "string"
66
+ },
67
+ {
68
+ "name": "task",
69
+ "description": "Task type such as 'Description Location', 'Action Recognition', or 'Causal Reasoning'.",
70
+ "dataType": "string"
71
+ },
72
+ {
73
+ "name": "answering_time_interval",
74
+ "description": "A list of [start_time, end_time] in seconds specifying the ground truth temporal segment.",
75
+ "dataType": "array"
76
+ }
77
+ ],
78
+ "data": [
79
+ {
80
+ "qry_text": "The video shows a man playing a game of Connect Four with a woman, who wins the game.",
81
+ "qry_img_path": "",
82
+ "qry_video_path": "",
83
+ "src_video_path": "./videos/ego_79.mp4",
84
+ "task": "Description Location",
85
+ "answering_time_interval": [[415.0, 480.0]]
86
+ },
87
+ {
88
+ "qry_text": "Did the man and the woman in the picture embrace?",
89
+ "qry_img_path": "./query_images/movie101_77/frame_173.jpg",
90
+ "qry_video_path": "",
91
+ "src_video_path": "./videos/movie101_77.mp4",
92
+ "task": "Action Recognition",
93
+ "answering_time_interval": [[180, 198]]
94
+ },
95
+ {
96
+ "qry_text": "What happened to this window afterward?",
97
+ "qry_img_path": "",
98
+ "qry_video_path": "./query_videos/tomjerry_8/177.00_181.00.mp4",
99
+ "src_video_path": "./videos/tomjerry_8.mp4",
100
+ "task": "Causal Reasoning",
101
+ "answering_time_interval": [[181, 186]]
102
+ }
103
+ ]
104
+ }