SorrowTea Claude Sonnet 4.6 commited on
Commit
2b00b9c
·
1 Parent(s): 1bb8db5

Revert test.json to PB version and add validation set

Browse files

- test.json: 382/236/269 (removed sample.json queries)
- validation/: 300 queries from sample.json for local eval
- README: update counts and add test/validation split docs

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

README.md CHANGED
@@ -43,14 +43,20 @@ Unlike the protected version, PhotoBench gives you unrestricted access to the ra
43
 
44
  This dataset contains:
45
 
46
- - **Test queries** for 3 albums (English + Chinese)
 
47
  - **Raw images** for all 3 albums (available upon request; not included in this repository due to size)
48
 
49
- | Album | Images | Test Queries | Avg. GT per Query |
50
- |-------|--------|--------------|-------------------|
51
- | 1 | ~1,070 | 100 | ~4.5 |
52
- | 2 | ~1,470 | 100 | ~4.5 |
53
- | 3 | ~1,050 | 100 | ~4.5 |
 
 
 
 
 
54
 
55
  ---
56
 
@@ -58,7 +64,41 @@ This dataset contains:
58
 
59
  ### Test Queries (`albumN_test.json`)
60
 
61
- Each file is a JSON array of query objects:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
 
63
  ```json
64
  [
@@ -92,9 +132,9 @@ The raw images (`album1/`, `album2/`, `album3/`) contain the full-resolution ori
92
 
93
  ## How to Use
94
 
95
- ### 1. Download Test Queries
96
 
97
- The test query JSON files are available directly in this repository:
98
 
99
  ```bash
100
  # Via huggingface_hub CLI
@@ -103,6 +143,9 @@ huggingface-cli download SorrowTea/PhotoBench-Full-HF --repo-type dataset --loca
103
 
104
  Or browse and download individual files from the **Files** tab above.
105
 
 
 
 
106
  ### 2. Download Raw Images
107
 
108
  Raw images are distributed separately. Contact the authors for access, or prepare the images according to the album structure:
@@ -126,9 +169,36 @@ With the raw images and test queries, you can:
126
  - Design multi-step agent workflows
127
  - Evaluate with your own metrics
128
 
129
- ### 4. Submit to Leaderboard
 
 
130
 
131
- Prepare your predictions in the submission format and upload to the [PhotoBench Leaderboard](https://huggingface.co/spaces/SorrowTea/PhotoBench-Full-LearderBoard).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
132
 
133
  **Submission format:**
134
 
@@ -143,9 +213,13 @@ Prepare your predictions in the submission format and upload to the [PhotoBench
143
  ```
144
 
145
  Requirements:
146
- - `album_id`: "1", "2", or "3"
147
- - `query_en`: Must match the test query exactly
148
- - `pred`: Ordered list of predicted image filenames
 
 
 
 
149
 
150
  ---
151
 
 
43
 
44
  This dataset contains:
45
 
46
+ - **Test queries** for leaderboard submission (English + Chinese)
47
+ - **Validation queries** with released ground truth for local self-evaluation
48
  - **Raw images** for all 3 albums (available upon request; not included in this repository due to size)
49
 
50
+ | Album | Images | Test Queries | Validation Queries |
51
+ |-------|--------|--------------|--------------------|
52
+ | 1 | ~1,070 | 382 | 100 |
53
+ | 2 | ~1,470 | 236 | 100 |
54
+ | 3 | ~1,050 | 269 | 100 |
55
+ | **Total** | | **887** | **300** |
56
+
57
+ > **Note:**
58
+ > - Use **`albumN_test.json`** if you want to submit to the [PhotoBench Leaderboard](https://huggingface.co/spaces/SorrowTea/PhotoBench/). Ground truth is hidden and evaluated on the server.
59
+ > - Use **`albumN_validation.json`** if you want to evaluate your model locally. Ground truth is included in this file.
60
 
61
  ---
62
 
 
64
 
65
  ### Test Queries (`albumN_test.json`)
66
 
67
+ For leaderboard submission. Each file is a JSON array of query objects:
68
+
69
+ ```json
70
+ [
71
+ {
72
+ "query_cn": "摆满的书桌",
73
+ "query_en": "cluttered desk"
74
+ }
75
+ ]
76
+ ```
77
+
78
+ | Field | Type | Description |
79
+ |------------|--------|------------------------------------------|
80
+ | `query_cn` | string | Query text in Chinese |
81
+ | `query_en` | string | Query text in English (primary language) |
82
+
83
+ ### Validation Queries (`albumN_validation.json`)
84
+
85
+ For local self-evaluation. Each file is a JSON array of query objects with released ground truth:
86
+
87
+ ```json
88
+ [
89
+ {
90
+ "query_cn": "烧香的三姐妹",
91
+ "query_en": "three sisters offering incense",
92
+ "ground_truth": ["IMG_4906.JPG"]
93
+ }
94
+ ]
95
+ ```
96
+
97
+ | Field | Type | Description |
98
+ |----------------|----------|-----------------------------------------------|
99
+ | `query_cn` | string | Query text in Chinese |
100
+ | `query_en` | string | Query text in English (primary language) |
101
+ | `ground_truth` | string[] | List of correct image filenames for this query |
102
 
103
  ```json
104
  [
 
132
 
133
  ## How to Use
134
 
135
+ ### 1. Download Queries
136
 
137
+ Both test and validation JSON files are available directly in this repository:
138
 
139
  ```bash
140
  # Via huggingface_hub CLI
 
143
 
144
  Or browse and download individual files from the **Files** tab above.
145
 
146
+ - `test/albumN_test.json` — for leaderboard submission
147
+ - `validation/albumN_validation.json` — for local self-evaluation
148
+
149
  ### 2. Download Raw Images
150
 
151
  Raw images are distributed separately. Contact the authors for access, or prepare the images according to the album structure:
 
169
  - Design multi-step agent workflows
170
  - Evaluate with your own metrics
171
 
172
+ ### 4. Build the Submission File
173
+
174
+ The dataset provides one `albumN_test.json` per album. Before submitting, you must **combine all albums into a single JSON array** and add the `album_id` field to each query object:
175
 
176
+ **Step-by-step:**
177
+
178
+ 1. Load `album1_test.json`, `album2_test.json`, and `album3_test.json`.
179
+ 2. For each query object, add `"album_id": "1"` (or `"2"` / `"3"`).
180
+ 3. Add a `"pred"` field containing the ordered list of predicted image filenames.
181
+ 4. Merge all queries into one JSON array and save as `submission.json`.
182
+
183
+ **Example transformation:**
184
+
185
+ ```python
186
+ import json
187
+
188
+ submission = []
189
+ for album_id in ["1", "2", "3"]:
190
+ with open(f"album{album_id}_test.json") as f:
191
+ queries = json.load(f)
192
+ for q in queries:
193
+ submission.append({
194
+ "album_id": album_id,
195
+ "query_en": q["query_en"],
196
+ "pred": ["IMG_0001.JPG", "IMG_0002.JPG", ...] # your predictions
197
+ })
198
+
199
+ with open("submission.json", "w") as f:
200
+ json.dump(submission, f, indent=2)
201
+ ```
202
 
203
  **Submission format:**
204
 
 
213
  ```
214
 
215
  Requirements:
216
+ - `album_id`: `"1"`, `"2"`, or `"3"` (string).
217
+ - `query_en`: Must match the test query **exactly** (case-sensitive).
218
+ - `pred`: Ordered list of predicted image filenames. Order matters for NDCG.
219
+
220
+ ### 5. Submit to Leaderboard
221
+
222
+ Upload `submission.json` to the [PhotoBench Leaderboard](https://huggingface.co/spaces/SorrowTea/PhotoBench/).
223
 
224
  ---
225
 
data/test/album1_test.json CHANGED
@@ -7,6 +7,10 @@
7
  "query_cn": "紫毛衣女孩",
8
  "query_en": "girl in purple sweater"
9
  },
 
 
 
 
10
  {
11
  "query_cn": "猫在路边植物旁嗅探",
12
  "query_en": "cat sniffing near roadside plants"
@@ -15,10 +19,6 @@
15
  "query_cn": "我抱着虎斑猫",
16
  "query_en": "me holding a tabby cat"
17
  },
18
- {
19
- "query_cn": "三姐妹都敬一束香",
20
- "query_en": "three sisters offering incense"
21
- },
22
  {
23
  "query_cn": "粉色玫瑰和绣球花的精美花束",
24
  "query_en": "pink roses and hydrangea bouquet"
@@ -32,8 +32,8 @@
32
  "query_en": "best friend's funny face"
33
  },
34
  {
35
- "query_cn": "和欣怡一起洗手台自拍",
36
- "query_en": "bathroom selfie with Xinyi"
37
  },
38
  {
39
  "query_cn": "灰黑条纹猫享受被摸头",
@@ -67,10 +67,6 @@
67
  "query_cn": "上高铁前",
68
  "query_en": "before boarding the high-speed train"
69
  },
70
- {
71
- "query_cn": "北京站候车大厅人群",
72
- "query_en": "crowd in Beijing Station waiting hall"
73
- },
74
  {
75
  "query_cn": "北京到威海的绿皮火车",
76
  "query_en": "green train from Beijing to Weihai"
@@ -87,10 +83,6 @@
87
  "query_cn": "趵突泉牌坊",
88
  "query_en": "Baotu Spring archway"
89
  },
90
- {
91
- "query_cn": "趵突泉游览",
92
- "query_en": "Baotu Spring tour"
93
- },
94
  {
95
  "query_cn": "济南车站候车时的场景",
96
  "query_en": "waiting at Jinan Station"
@@ -120,16 +112,16 @@
120
  "query_en": "bronze artifacts"
121
  },
122
  {
123
- "query_cn": "酷似小猪的藏品",
124
- "query_en": "pig-like museum exhibit"
125
  },
126
  {
127
  "query_cn": "青绿色公鸡",
128
  "query_en": "green rooster statue"
129
  },
130
  {
131
- "query_cn": "青铜刀剑",
132
- "query_en": "bronze swords and knives"
133
  },
134
  {
135
  "query_cn": "清乾隆农书插图细节",
@@ -140,8 +132,8 @@
140
  "query_en": "green bronze rhinoceros box from Han Dynasty"
141
  },
142
  {
143
- "query_cn": "明代官员头饰工艺细节",
144
- "query_en": "Ming Dynasty official headwear craftsmanship details"
145
  },
146
  {
147
  "query_cn": "山东近代史展览侵略主题",
@@ -151,10 +143,6 @@
151
  "query_cn": "山东革命历史展板",
152
  "query_en": "Shandong revolutionary history display"
153
  },
154
- {
155
- "query_cn": "古代陶塑骑马雕像细节",
156
- "query_en": "ancient ceramic horse sculpture details"
157
- },
158
  {
159
  "query_cn": "紫晶特写",
160
  "query_en": "amethyst close-up"
@@ -171,10 +159,6 @@
171
  "query_cn": "浅蓝绿色釉彩花瓶,葫芦花纹超复杂",
172
  "query_en": "light blue-green vase with intricate gourd patterns"
173
  },
174
- {
175
- "query_cn": "绍兴古塔",
176
- "query_en": "Shaoxing ancient tower"
177
- },
178
  {
179
  "query_cn": "飞机上拍的蓝天",
180
  "query_en": "blue sky from the plane"
@@ -183,10 +167,6 @@
183
  "query_cn": "赤膊跑步哥",
184
  "query_en": "shirtless running guy"
185
  },
186
- {
187
- "query_cn": "台阶边的猫",
188
- "query_en": "cat by the steps"
189
- },
190
  {
191
  "query_cn": "和朋友在地铁里自拍",
192
  "query_en": "selfie with friends in the subway"
@@ -208,8 +188,8 @@
208
  "query_en": "summer night dinner in Shaoxing, 2025"
209
  },
210
  {
211
- "query_cn": "杨公堤超绝摆拍",
212
- "query_en": "Yang Gong Causeway posed photo"
213
  },
214
  {
215
  "query_cn": "湖边长椅阳光倒影",
@@ -247,6 +227,10 @@
247
  "query_cn": "银灰猫不屑的眼神",
248
  "query_en": "silver-gray cat's disdainful look"
249
  },
 
 
 
 
250
  {
251
  "query_cn": "尝试拍猫咪面部特写失败",
252
  "query_en": "failed attempt at cat face close-up"
@@ -259,10 +243,6 @@
259
  "query_cn": "猫咪窗台凝视窗外",
260
  "query_en": "cat staring out the window"
261
  },
262
- {
263
- "query_cn": "猫咪自我梳理",
264
- "query_en": "cat grooming itself"
265
- },
266
  {
267
  "query_cn": "小猫肉肉的爪子",
268
  "query_en": "kitten's chubby paws"
@@ -272,8 +252,8 @@
272
  "query_en": "A Polaroid of me holding the cat"
273
  },
274
  {
275
- "query_cn": "小猫睡觉",
276
- "query_en": "kitten sleeping"
277
  },
278
  {
279
  "query_cn": "飞机上疲惫的晨阳",
@@ -307,14 +287,6 @@
307
  "query_cn": "贵阳夏夜街景",
308
  "query_en": "summer night street view in Guiyang"
309
  },
310
- {
311
- "query_cn": "贵阳玩的时候在居民区迷路了",
312
- "query_en": "lost in a residential area while exploring Guiyang"
313
- },
314
- {
315
- "query_cn": "夜晚和朋友聊天的瞬间",
316
- "query_en": "chatting with friends at night"
317
- },
318
  {
319
  "query_cn": "在楼梯间看地图找路",
320
  "query_en": "checking the map in the stairwell"
@@ -323,18 +295,6 @@
323
  "query_cn": "猕猴拿着可乐瓶",
324
  "query_en": "monkey holding a Coke bottle"
325
  },
326
- {
327
- "query_cn": "夜晚和浩哥晨阳探访老城区",
328
- "query_en": "night visit to the old town with Hao and Chenyang"
329
- },
330
- {
331
- "query_cn": "遵义酒店里吃外卖",
332
- "query_en": "eating takeout in a Zunyi hotel"
333
- },
334
- {
335
- "query_cn": "岩洞探险",
336
- "query_en": "cave exploration"
337
- },
338
  {
339
  "query_cn": "岩洞内被偷拍",
340
  "query_en": "caught on camera inside the cave"
@@ -347,10 +307,6 @@
347
  "query_cn": "遵义会议陈列馆入口",
348
  "query_en": "entrance to the Zunyi Conference Exhibition Hall"
349
  },
350
- {
351
- "query_cn": "苟坝会议地图",
352
- "query_en": "map of Gouba Conference"
353
- },
354
  {
355
  "query_cn": "快出岩洞时摆拍",
356
  "query_en": "posing near the cave exit"
@@ -380,8 +336,8 @@
380
  "query_en": "cute green doll before boarding"
381
  },
382
  {
383
- "query_cn": "白猫安静趴着瞬间",
384
- "query_en": "white cat quietly lying down"
385
  },
386
  {
387
  "query_cn": "穿吊带的性感浩哥",
@@ -423,10 +379,6 @@
423
  "query_cn": "我竖中指",
424
  "query_en": "me flipping the bird"
425
  },
426
- {
427
- "query_cn": "和晨阳做手工",
428
- "query_en": "making crafts with Chenyang"
429
- },
430
  {
431
  "query_cn": "上海迪士尼梦想护照盖章",
432
  "query_en": "Shanghai Disneyland dream passport stamps"
@@ -439,6 +391,10 @@
439
  "query_cn": "排队迪士尼玩项目",
440
  "query_en": "waiting in line for Disneyland rides"
441
  },
 
 
 
 
442
  {
443
  "query_cn": "黛西",
444
  "query_en": "Daisy Duck"
@@ -447,10 +403,6 @@
447
  "query_cn": "朱迪警官的办公桌 迪士尼",
448
  "query_en": "Officer Judy's desk at Disneyland"
449
  },
450
- {
451
- "query_cn": "上海迪士尼疯狂动物城最佳警官海报",
452
- "query_en": "Zootopia best officer poster at Shanghai Disneyland"
453
- },
454
  {
455
  "query_cn": "疯狂动物城梦护照盖章",
456
  "query_en": "Zootopia dream passport stamps"
@@ -471,6 +423,10 @@
471
  "query_cn": "疯狂动物城牛局长",
472
  "query_en": "Chief Bogo from Zootopia"
473
  },
 
 
 
 
474
  {
475
  "query_cn": "迪士尼金黄热狗棒",
476
  "query_en": "golden hot dog at Disneyland"
@@ -495,26 +451,10 @@
495
  "query_cn": "自驾开车上高速",
496
  "query_en": "driving on the highway"
497
  },
498
- {
499
- "query_cn": "绍兴北站",
500
- "query_en": "Shaoxing North Station"
501
- },
502
  {
503
  "query_cn": "和朋友穿同款浅紫Polo衫",
504
  "query_en": "matching light purple polo shirts with friends"
505
  },
506
- {
507
- "query_cn": "寝室床上躺",
508
- "query_en": "lying on the dorm bed"
509
- },
510
- {
511
- "query_cn": "迪士尼项目结束后的系统抓拍",
512
- "query_en": "Disney ride system-captured photo"
513
- },
514
- {
515
- "query_cn": "厕所自拍",
516
- "query_en": "bathroom selfie"
517
- },
518
  {
519
  "query_cn": "学校午后阳光明媚",
520
  "query_en": "sunny afternoon at school"
@@ -523,6 +463,10 @@
523
  "query_cn": "学校的请假流程",
524
  "query_en": "school leave request process"
525
  },
 
 
 
 
526
  {
527
  "query_cn": "夏天和朋友喝冰沙",
528
  "query_en": "drinking smoothies with friends in summer"
@@ -539,18 +483,6 @@
539
  "query_cn": "军训和佳宁欣欣一起比耶",
540
  "query_en": "peace sign with Jianing and Xinxin during military training"
541
  },
542
- {
543
- "query_cn": "学校食堂的炸鸡饭",
544
- "query_en": "fried chicken rice at the school cafeteria"
545
- },
546
- {
547
- "query_cn": "我和晓彤",
548
- "query_en": "me and Xiaotong"
549
- },
550
- {
551
- "query_cn": "我按着狗头",
552
- "query_en": "me holding a dog's head"
553
- },
554
  {
555
  "query_cn": "飞机上化妆细节",
556
  "query_en": "makeup details on the plane"
@@ -564,17 +496,21 @@
564
  "query_en": "happy selfie on the plane"
565
  },
566
  {
567
- "query_cn": "庭院里的棕榈树下藏着的白猫",
568
- "query_en": "white cat hiding under the palm tree in the courtyard"
569
  },
570
  {
571
- "query_cn": "高空云层",
572
- "query_en": "clouds from high altitude"
573
  },
574
  {
575
  "query_cn": "秋田犬安静休息",
576
  "query_en": "Akita dog resting quietly"
577
  },
 
 
 
 
578
  {
579
  "query_cn": "机场落地取行李的男友",
580
  "query_en": "boyfriend picking up luggage after landing at the airport"
@@ -587,10 +523,6 @@
587
  "query_cn": "黄绿酱汁烤鸡",
588
  "query_en": "roast chicken with yellow-green sauce"
589
  },
590
- {
591
- "query_cn": "车上一起听歌",
592
- "query_en": "listening to music together in the car"
593
- },
594
  {
595
  "query_cn": "模糊比耶",
596
  "query_en": "blurry peace sign"
@@ -600,40 +532,24 @@
600
  "query_en": "phone connected to car to play music"
601
  },
602
  {
603
- "query_cn": "深圳的包容归属标语",
604
- "query_en": "Shenzhen slogan about inclusivity and belonging"
605
- },
606
- {
607
- "query_cn": "深圳湾帅照",
608
- "query_en": "cool photo at Shenzhen Bay"
609
- },
610
- {
611
- "query_cn": "光影很美的猫咪侧卧",
612
- "query_en": "beautifully lit cat lying sideways"
613
- },
614
- {
615
- "query_cn": "深圳湾沙滩上拍的男友",
616
- "query_en": "boyfriend on the beach at Shenzhen Bay"
617
  },
618
  {
619
- "query_cn": "晨阳在亲水平台边蹲着",
620
- "query_en": "Chen Yang was squatting at the edge of the promenade"
621
  },
622
  {
623
- "query_cn": "我的海边复古风打扮",
624
- "query_en": "my vintage seaside outfit"
625
  },
626
  {
627
  "query_cn": "深圳盐田港物流盛况",
628
  "query_en": "busy logistics scene at Shenzhen Yantian Port"
629
  },
630
  {
631
- "query_cn": "冷蓝色海滩",
632
- "query_en": "cold blue beach"
633
- },
634
- {
635
- "query_cn": "镜子前拍穿搭记录",
636
- "query_en": "mirror selfie of my outfit"
637
  },
638
  {
639
  "query_cn": "夜晚公园 大白鹅清理羽毛",
@@ -648,21 +564,17 @@
648
  "query_en": "trying on a kimono"
649
  },
650
  {
651
- "query_cn": "穿和服的自己",
652
- "query_en": "me wearing a kimono"
653
  },
654
  {
655
- "query_cn": "车里晓彤合影",
656
- "query_en": "car selfie with Xiaotong"
657
  },
658
  {
659
  "query_cn": "橘猫翻垃圾桶",
660
  "query_en": "orange cat rummaging through the trash"
661
  },
662
- {
663
- "query_cn": "白猫穿红衣",
664
- "query_en": "white cat in red clothes"
665
- },
666
  {
667
  "query_cn": "黑灰猫趴在花坛边,像探头一样",
668
  "query_en": "black-gray cat lying by the flower bed, peeking out"
@@ -675,10 +587,6 @@
675
  "query_cn": "下雨天路面上的落叶和花",
676
  "query_en": "fallen leaves and flowers on the rainy road"
677
  },
678
- {
679
- "query_cn": "开车经过收费站",
680
- "query_en": "driving through a toll booth"
681
- },
682
  {
683
  "query_cn": "操场上偷拍志浩被发现了",
684
  "query_en": "caught taking a candid photo of Zhihao on the field"
@@ -687,26 +595,14 @@
687
  "query_cn": "运动会开幕式等待出场",
688
  "query_en": "waiting to enter at the sports day opening ceremony"
689
  },
690
- {
691
- "query_cn": "运动会的天猫淘宝吉祥物",
692
- "query_en": "Taobao and Tmall mascots at the sports day"
693
- },
694
  {
695
  "query_cn": "图书馆的橘猫",
696
  "query_en": "orange cat at the library"
697
  },
698
- {
699
- "query_cn": "校园集市拍到的熊",
700
- "query_en": "bear spotted at the campus market"
701
- },
702
  {
703
  "query_cn": "非遗集市摄影器材展台",
704
  "query_en": "photography gear booth at the heritage market"
705
  },
706
- {
707
- "query_cn": "寝室吃的红油麻辣烫",
708
- "query_en": "spicy hotpot in the dorm"
709
- },
710
  {
711
  "query_cn": "炒面外卖",
712
  "query_en": "fried noodles delivery"
@@ -719,10 +615,6 @@
719
  "query_cn": "浩哥晚上户外玩手机",
720
  "query_en": "Hao playing on his phone outdoors at night"
721
  },
722
- {
723
- "query_cn": "拍到浩哥运动会出场",
724
- "query_en": "Hao at the sports event entrance"
725
- },
726
  {
727
  "query_cn": "麻辣烫",
728
  "query_en": "spicy hotpot"
@@ -731,14 +623,6 @@
731
  "query_cn": "手拿固体杨枝甘露",
732
  "query_en": "holding solid mango pomelo sago"
733
  },
734
- {
735
- "query_cn": "夜晚晨阳志浩争抢手机",
736
- "query_en": "Chenyang and Zhihao fighting over a phone at night"
737
- },
738
- {
739
- "query_cn": "厨房准备食材",
740
- "query_en": "preparing ingredients in the kitchen"
741
- },
742
  {
743
  "query_cn": "秋天街头吃冰糖水果串",
744
  "query_en": "eating candied fruit skewers on an autumn street"
@@ -767,10 +651,6 @@
767
  "query_cn": "厨房里做晚饭",
768
  "query_en": "making dinner in the kitchen"
769
  },
770
- {
771
- "query_cn": "自己做的捞汁海鲜",
772
- "query_en": "homemade seafood in sauce"
773
- },
774
  {
775
  "query_cn": "一桌丰盛的晚餐",
776
  "query_en": "a table of delicious dinner"
@@ -787,18 +667,14 @@
787
  "query_cn": "我在厨房",
788
  "query_en": "me in the kitchen"
789
  },
790
- {
791
- "query_cn": "猫咬植物茎杆",
792
- "query_en": "cat biting plant stems"
793
- },
794
- {
795
- "query_cn": "黑猫蜷缩在脚边的瞬间",
796
- "query_en": "black cat curled up by my feet"
797
- },
798
  {
799
  "query_cn": "学校秋景",
800
  "query_en": "autumn scenery at school"
801
  },
 
 
 
 
802
  {
803
  "query_cn": "街头煎饼卷制作过程",
804
  "query_en": "street pancake roll-making process"
@@ -811,10 +687,6 @@
811
  "query_cn": "杭州街边卷饼",
812
  "query_en": "rolled pancake on Hangzhou street"
813
  },
814
- {
815
- "query_cn": "橘猫躲在鞋盒缝隙里",
816
- "query_en": "orange cat hiding in a shoe box gap"
817
- },
818
  {
819
  "query_cn": "超市毛绒玩具价格对比",
820
  "query_en": "supermarket plush toy price comparison"
@@ -827,10 +699,6 @@
827
  "query_cn": "25年11月16号下午记录妆容的自拍",
828
  "query_en": "selfie documenting makeup on November 16, 2025, afternoon"
829
  },
830
- {
831
- "query_cn": "阳光下的宁静橘猫",
832
- "query_en": "peaceful orange cat in the sunlight"
833
- },
834
  {
835
  "query_cn": "和晓彤在复古梳妆台前合影",
836
  "query_en": "photo with Xiaotong at a vintage vanity"
@@ -919,26 +787,22 @@
919
  "query_cn": "展柜上的Kuromi毛绒玩具",
920
  "query_en": "Kuromi plush toys on display"
921
  },
922
- {
923
- "query_cn": "秋季校园集市",
924
- "query_en": "autumn campus market"
925
- },
926
- {
927
- "query_cn": "苹果官方店环境",
928
- "query_en": "Apple Store environment"
929
- },
930
  {
931
  "query_cn": "街头小吃辣味串串",
932
  "query_en": "spicy street skewers"
933
  },
934
  {
935
- "query_cn": "湖边夕阳下的宁静时光",
936
- "query_en": "peaceful sunset by the lake"
937
  },
938
  {
939
  "query_cn": "疯狂动物城电影票",
940
  "query_en": "Zootopia movie tickets"
941
  },
 
 
 
 
942
  {
943
  "query_cn": "麦当劳芝士汉堡",
944
  "query_en": "McDonald's cheeseburger"
@@ -983,10 +847,6 @@
983
  "query_cn": "男友偷亲我",
984
  "query_en": "boyfriend stealing a kiss"
985
  },
986
- {
987
- "query_cn": "金黄银杏",
988
- "query_en": "golden ginkgo"
989
- },
990
  {
991
  "query_cn": "绍兴秋日阳光下的金黄树林",
992
  "query_en": "golden forest in Shaoxing's autumn sunlight"
@@ -1000,8 +860,8 @@
1000
  "query_en": "rainbow in street fountain"
1001
  },
1002
  {
1003
- "query_cn": "银杏叶拼成爱心",
1004
- "query_en": "ginkgo leaves shaped into a heart"
1005
  },
1006
  {
1007
  "query_cn": "校园街中间躺着的猫猫",
@@ -1011,10 +871,6 @@
1011
  "query_cn": "健康早餐便携组合",
1012
  "query_en": "healthy portable breakfast combo"
1013
  },
1014
- {
1015
- "query_cn": "狸花闭眼享受被摸",
1016
- "query_en": "tabby cat enjoying being petted"
1017
- },
1018
  {
1019
  "query_cn": "在寝室追番",
1020
  "query_en": "watching anime in the dorm"
@@ -1028,12 +884,8 @@
1028
  "query_en": "cat under the dorm building"
1029
  },
1030
  {
1031
- "query_cn": "下午课上跟闺蜜展示新做的美甲",
1032
- "query_en": "showing new manicure to a friend during class"
1033
- },
1034
- {
1035
- "query_cn": "街边圣诞树",
1036
- "query_en": "street Christmas tree"
1037
  },
1038
  {
1039
  "query_cn": "吃鸡公煲",
@@ -1071,10 +923,6 @@
1071
  "query_cn": "记录绿鬣蜥静止在树枝上的细节",
1072
  "query_en": "details of a green iguana on a branch"
1073
  },
1074
- {
1075
- "query_cn": "蜥蜴在岩石上休息的细节",
1076
- "query_en": "lizard resting on a rock"
1077
- },
1078
  {
1079
  "query_cn": "巨嘴鸟",
1080
  "query_en": "toucan"
@@ -1083,10 +931,6 @@
1083
  "query_cn": "橙红狮头金鱼游动",
1084
  "query_en": "orange-red lionhead goldfish swimming"
1085
  },
1086
- {
1087
- "query_cn": "警觉的卷尾猴",
1088
- "query_en": "alert drongo monkey"
1089
- },
1090
  {
1091
  "query_cn": "金头狮面狨",
1092
  "query_en": "golden lion tamarin"
@@ -1107,10 +951,6 @@
1107
  "query_cn": "白色长毛猫四仰八叉",
1108
  "query_en": "white long-haired cat sprawled out"
1109
  },
1110
- {
1111
- "query_cn": "和晓薇吃川菜",
1112
- "query_en": "eating Sichuan food with Xiaowei"
1113
- },
1114
  {
1115
  "query_cn": "和朋友嘟嘴卖萌",
1116
  "query_en": "pouting with friends"
@@ -1119,17 +959,21 @@
1119
  "query_cn": "和朋友在绍兴柯桥自拍",
1120
  "query_en": "selfie with friends in Keqiao, Shaoxing"
1121
  },
 
 
 
 
1122
  {
1123
  "query_cn": "挠虎斑猫脖颈",
1124
  "query_en": "scratching a tabby cat's neck"
1125
  },
1126
  {
1127
- "query_cn": "在老旧社区孩子们玩器材",
1128
- "query_en": "kids' playground in an old neighborhood"
1129
  },
1130
  {
1131
- "query_cn": "自己、晓彤、宁宁、林林照片",
1132
- "query_en": "photos of me, Xiaotong, Ningning, and Linlin"
1133
  },
1134
  {
1135
  "query_cn": "我、刘佳宁、欣欣的照片",
@@ -1151,10 +995,6 @@
1151
  "query_cn": "自己、小李、佳宁、欣欣的照片",
1152
  "query_en": "photos of me, Xiao Li, Jianing, and Xinxin"
1153
  },
1154
- {
1155
- "query_cn": "浩哥、阳哥的照片",
1156
- "query_en": "photos of Haoge and Yangge"
1157
- },
1158
  {
1159
  "query_cn": "有阿宇和陈明宇在一起的照片",
1160
  "query_en": "photos with Ayu and Chen Mingyu"
@@ -1219,10 +1059,6 @@
1219
  "query_cn": "宁宁、李晓彤的照片",
1220
  "query_en": "photos of Ningning and Li Xiaotong"
1221
  },
1222
- {
1223
- "query_cn": "有我在内的照片",
1224
- "query_en": "photos including me"
1225
- },
1226
  {
1227
  "query_cn": "我、小李、刘佳宁、林可欣的照片",
1228
  "query_en": "photos of me, Xiao Li, Liu Jianing, and Lin Kexin"
@@ -1232,8 +1068,12 @@
1232
  "query_en": "photos of Yiyi"
1233
  },
1234
  {
1235
- "query_cn": "我、小李、佳宁、欣欣的照片",
1236
- "query_en": "photos of me, Xiao Li, Jianing, and Xinxin"
 
 
 
 
1237
  },
1238
  {
1239
  "query_cn": "我、小刘、林林的照片",
@@ -1243,10 +1083,6 @@
1243
  "query_cn": "自己、小李、小刘、可欣的照片",
1244
  "query_en": "photos of me, Xiao Li, Xiao Liu, and Kexin"
1245
  },
1246
- {
1247
- "query_cn": "小陈和阿宇的合照",
1248
- "query_en": "photos of Xiao Chen and Ayu together"
1249
- },
1250
  {
1251
  "query_cn": "有怡怡在内的照片",
1252
  "query_en": "photos with Yiyi"
@@ -1259,6 +1095,10 @@
1259
  "query_cn": "有小陈在内的照片",
1260
  "query_en": "photos with Xiao Chen"
1261
  },
 
 
 
 
1262
  {
1263
  "query_cn": "我、宁宁、欣欣的照片",
1264
  "query_en": "photos of me, Ningning, and Xinxin"
@@ -1267,6 +1107,10 @@
1267
  "query_cn": "自己、晓彤、刘佳宁、欣欣的照片",
1268
  "query_en": "photos of me, Xiaotong, Liu Jianing, and Xinxin"
1269
  },
 
 
 
 
1270
  {
1271
  "query_cn": "我、晓彤、佳宁、可欣的照片",
1272
  "query_en": "photos of me, Xiaotong, Jianing, and Kexin"
@@ -1279,10 +1123,6 @@
1279
  "query_cn": "欣欣的照片",
1280
  "query_en": "photos of Xinxin"
1281
  },
1282
- {
1283
- "query_cn": "有小赵在内的照片",
1284
- "query_en": "photos with Xiao Zhao"
1285
- },
1286
  {
1287
  "query_cn": "我、宁宁、林林的照片",
1288
  "query_en": "photos of me, Ningning, and Linlin"
@@ -1295,10 +1135,6 @@
1295
  "query_cn": "我、晓彤、小刘、林林的照片",
1296
  "query_en": "photos of me, Xiaotong, Xiao Liu, and Linlin"
1297
  },
1298
- {
1299
- "query_cn": "在天津市的照片",
1300
- "query_en": "photos in Tianjin"
1301
- },
1302
  {
1303
  "query_cn": "在秦淮区的照片",
1304
  "query_en": "photos in Qinhuai District"
@@ -1311,18 +1147,10 @@
1311
  "query_cn": "在深圳市的照片",
1312
  "query_en": "photos in Shenzhen"
1313
  },
1314
- {
1315
- "query_cn": "嘉兴市拍的",
1316
- "query_en": "photos taken in Jiaxing"
1317
- },
1318
  {
1319
  "query_cn": "北京市",
1320
  "query_en": "photos in Beijing"
1321
  },
1322
- {
1323
- "query_cn": "松江区拍的",
1324
- "query_en": "photos taken in Songjiang District"
1325
- },
1326
  {
1327
  "query_cn": "在观山的照片",
1328
  "query_en": "photos in Guanshan"
@@ -1347,26 +1175,14 @@
1347
  "query_cn": "广东省拍的",
1348
  "query_en": "photos in Guangdong"
1349
  },
1350
- {
1351
- "query_cn": "南京市拍的",
1352
- "query_en": "photos taken in Nanjing"
1353
- },
1354
  {
1355
  "query_cn": "建国门拍的",
1356
  "query_en": "photos taken at Jianguomen"
1357
  },
1358
- {
1359
- "query_cn": "海宁市",
1360
- "query_en": "photos in Haining"
1361
- },
1362
  {
1363
  "query_cn": "天桥区拍的",
1364
  "query_en": "photos taken in Tianqiao District"
1365
  },
1366
- {
1367
- "query_cn": "在盐田区的照片",
1368
- "query_en": "photos in Yantian District"
1369
- },
1370
  {
1371
  "query_cn": "红花岗区拍的",
1372
  "query_en": "photos taken in Honghuagang District"
@@ -1375,6 +1191,10 @@
1375
  "query_cn": "在建邺区的照片",
1376
  "query_en": "photos in Jianye District"
1377
  },
 
 
 
 
1378
  {
1379
  "query_cn": "长宁区",
1380
  "query_en": "photos in Changning District"
@@ -1387,10 +1207,6 @@
1387
  "query_cn": "徐汇区拍的",
1388
  "query_en": "photos taken in Xuhui District"
1389
  },
1390
- {
1391
- "query_cn": "崇文门",
1392
- "query_en": "photos at Chongwenmen"
1393
- },
1394
  {
1395
  "query_cn": "在岳阳的照片",
1396
  "query_en": "photos in Yueyang"
@@ -1403,6 +1219,10 @@
1403
  "query_cn": "南明区",
1404
  "query_en": "photos in Nanming District"
1405
  },
 
 
 
 
1406
  {
1407
  "query_cn": "东华门拍的",
1408
  "query_en": "photos taken at Donghuamen"
@@ -1411,10 +1231,6 @@
1411
  "query_cn": "新华路拍的",
1412
  "query_en": "photos taken on Xinhua Road"
1413
  },
1414
- {
1415
- "query_cn": "柯桥拍的",
1416
- "query_en": "photos taken in Keqiao"
1417
- },
1418
  {
1419
  "query_cn": "2025年和陈明宇的照片",
1420
  "query_en": "photos with Chen Mingyu in 2025"
@@ -1447,14 +1263,6 @@
1447
  "query_cn": "2025年中秋节的照片",
1448
  "query_en": "Mid-Autumn Festival photos from 2025"
1449
  },
1450
- {
1451
- "query_cn": "2025年春节的照片",
1452
- "query_en": "Chinese New Year photos from 2025"
1453
- },
1454
- {
1455
- "query_cn": "过2023年劳动节",
1456
- "query_en": "celebrating Labor Day in 2023"
1457
- },
1458
  {
1459
  "query_cn": "2025年清明节拍的",
1460
  "query_en": "photos taken during Qingming Festival in 2025"
@@ -1500,12 +1308,8 @@
1500
  "query_en": "photos taken on September 25, 2022"
1501
  },
1502
  {
1503
- "query_cn": "202510月6日拍的",
1504
- "query_en": "photos taken on October 6, 2025"
1505
- },
1506
- {
1507
- "query_cn": "2025年11月15日",
1508
- "query_en": "photos from November 15, 2025"
1509
  },
1510
  {
1511
  "query_cn": "2025年11月11日拍的",
@@ -1519,10 +1323,6 @@
1519
  "query_cn": "2023年春季拍的",
1520
  "query_en": "photos taken in spring 2023"
1521
  },
1522
- {
1523
- "query_cn": "2023年冬季的照片",
1524
- "query_en": "winter photos from 2023"
1525
- },
1526
  {
1527
  "query_cn": "2025年1月",
1528
  "query_en": "photos from January 2025"
@@ -1583,18 +1383,6 @@
1583
  "query_cn": "2025年冬季拍的",
1584
  "query_en": "photos taken in winter 2025"
1585
  },
1586
- {
1587
- "query_cn": "龙华寺牌楼",
1588
- "query_en": "Longhua Temple archway"
1589
- },
1590
- {
1591
- "query_cn": "贵阳夜晚步行街",
1592
- "query_en": "nighttime pedestrian street in Guiyang"
1593
- },
1594
- {
1595
- "query_cn": "迪士尼的难吃又贵的午饭",
1596
- "query_en": "expensive and bad lunch at Disneyland"
1597
- },
1598
  {
1599
  "query_cn": "赤膊跑步的邮递员",
1600
  "query_en": "shirtless running mailman"
@@ -1643,6 +1431,10 @@
1643
  "query_cn": "金头狮面狨 贵州省",
1644
  "query_en": "golden-headed lion tamarin in Guizhou"
1645
  },
 
 
 
 
1646
  {
1647
  "query_cn": "摆满的书桌 贵州省",
1648
  "query_en": "desk full of books in Guizhou"
@@ -1651,6 +1443,10 @@
1651
  "query_cn": "挠虎斑猫脖颈, 2018",
1652
  "query_en": "scratching a tabby cat's neck, 2018"
1653
  },
 
 
 
 
1654
  {
1655
  "query_cn": "2023年拍的 青铜器",
1656
  "query_en": "bronze artifacts, 2023"
@@ -1691,10 +1487,6 @@
1691
  "query_cn": "烟花, 7月",
1692
  "query_en": "fireworks, July"
1693
  },
1694
- {
1695
- "query_cn": "陪朋友化妆的瞬间, 2018",
1696
- "query_en": "helping a friend with makeup, 2018"
1697
- },
1698
  {
1699
  "query_cn": "2015年拍的 穿和服的自己",
1700
  "query_en": "me in a kimono, 2015"
@@ -1703,10 +1495,6 @@
1703
  "query_cn": "在贵州省拍的 展柜上的Kuromi毛绒玩具",
1704
  "query_en": "Kuromi plush toy on display in Guizhou"
1705
  },
1706
- {
1707
- "query_cn": "2015年1月 金黄银杏",
1708
- "query_en": "golden ginkgo trees, January 2015"
1709
- },
1710
  {
1711
  "query_cn": "尝试拍猫咪面部特写失败 贵州省",
1712
  "query_en": "failed attempt at a cat face close-up in Guizhou"
 
7
  "query_cn": "紫毛衣女孩",
8
  "query_en": "girl in purple sweater"
9
  },
10
+ {
11
+ "query_cn": "会稽山寺门",
12
+ "query_en": "temple gate at Kuaiji Mountain"
13
+ },
14
  {
15
  "query_cn": "猫在路边植物旁嗅探",
16
  "query_en": "cat sniffing near roadside plants"
 
19
  "query_cn": "我抱着虎斑猫",
20
  "query_en": "me holding a tabby cat"
21
  },
 
 
 
 
22
  {
23
  "query_cn": "粉色玫瑰和绣球花的精美花束",
24
  "query_en": "pink roses and hydrangea bouquet"
 
32
  "query_en": "best friend's funny face"
33
  },
34
  {
35
+ "query_cn": "陪朋友化妆瞬间",
36
+ "query_en": "helping a friend with makeup"
37
  },
38
  {
39
  "query_cn": "灰黑条纹猫享受被摸头",
 
67
  "query_cn": "上高铁前",
68
  "query_en": "before boarding the high-speed train"
69
  },
 
 
 
 
70
  {
71
  "query_cn": "北京到威海的绿皮火车",
72
  "query_en": "green train from Beijing to Weihai"
 
83
  "query_cn": "趵突泉牌坊",
84
  "query_en": "Baotu Spring archway"
85
  },
 
 
 
 
86
  {
87
  "query_cn": "济南车站候车时的场景",
88
  "query_en": "waiting at Jinan Station"
 
112
  "query_en": "bronze artifacts"
113
  },
114
  {
115
+ "query_cn": "和朋友吃干锅",
116
+ "query_en": "eating dry pot with friends"
117
  },
118
  {
119
  "query_cn": "青绿色公鸡",
120
  "query_en": "green rooster statue"
121
  },
122
  {
123
+ "query_cn": "济南泉城湖历史文化博展主题墙",
124
+ "query_en": "Jinan Quancheng Lake history and culture wall"
125
  },
126
  {
127
  "query_cn": "清乾隆农书插图细节",
 
132
  "query_en": "green bronze rhinoceros box from Han Dynasty"
133
  },
134
  {
135
+ "query_cn": "博物馆的大屏拍到我",
136
+ "query_en": "museum screen captured me"
137
  },
138
  {
139
  "query_cn": "山东近代史展览侵略主题",
 
143
  "query_cn": "山东革命历史展板",
144
  "query_en": "Shandong revolutionary history display"
145
  },
 
 
 
 
146
  {
147
  "query_cn": "紫晶特写",
148
  "query_en": "amethyst close-up"
 
159
  "query_cn": "浅蓝绿色釉彩花瓶,葫芦花纹超复杂",
160
  "query_en": "light blue-green vase with intricate gourd patterns"
161
  },
 
 
 
 
162
  {
163
  "query_cn": "飞机上拍的蓝天",
164
  "query_en": "blue sky from the plane"
 
167
  "query_cn": "赤膊跑步哥",
168
  "query_en": "shirtless running guy"
169
  },
 
 
 
 
170
  {
171
  "query_cn": "和朋友在地铁里自拍",
172
  "query_en": "selfie with friends in the subway"
 
188
  "query_en": "summer night dinner in Shaoxing, 2025"
189
  },
190
  {
191
+ "query_cn": "西湖清晨石桥",
192
+ "query_en": "stone bridge at West Lake in the morning"
193
  },
194
  {
195
  "query_cn": "湖边长椅阳光倒影",
 
227
  "query_cn": "银灰猫不屑的眼神",
228
  "query_en": "silver-gray cat's disdainful look"
229
  },
230
+ {
231
+ "query_cn": "人工荷花",
232
+ "query_en": "artificial lotus flower"
233
+ },
234
  {
235
  "query_cn": "尝试拍猫咪面部特写失败",
236
  "query_en": "failed attempt at cat face close-up"
 
243
  "query_cn": "猫咪窗台凝视窗外",
244
  "query_en": "cat staring out the window"
245
  },
 
 
 
 
246
  {
247
  "query_cn": "小猫肉肉的爪子",
248
  "query_en": "kitten's chubby paws"
 
252
  "query_en": "A Polaroid of me holding the cat"
253
  },
254
  {
255
+ "query_cn": "杭州机场出发",
256
+ "query_en": "departing from Hangzhou airport"
257
  },
258
  {
259
  "query_cn": "飞机上疲惫的晨阳",
 
287
  "query_cn": "贵阳夏夜街景",
288
  "query_en": "summer night street view in Guiyang"
289
  },
 
 
 
 
 
 
 
 
290
  {
291
  "query_cn": "在楼梯间看地图找路",
292
  "query_en": "checking the map in the stairwell"
 
295
  "query_cn": "猕猴拿着可乐瓶",
296
  "query_en": "monkey holding a Coke bottle"
297
  },
 
 
 
 
 
 
 
 
 
 
 
 
298
  {
299
  "query_cn": "岩洞内被偷拍",
300
  "query_en": "caught on camera inside the cave"
 
307
  "query_cn": "遵义会议陈列馆入口",
308
  "query_en": "entrance to the Zunyi Conference Exhibition Hall"
309
  },
 
 
 
 
310
  {
311
  "query_cn": "快出岩洞时摆拍",
312
  "query_en": "posing near the cave exit"
 
336
  "query_en": "cute green doll before boarding"
337
  },
338
  {
339
+ "query_cn": "暖阳下橘猫",
340
+ "query_en": "orange cat in the warm sun"
341
  },
342
  {
343
  "query_cn": "穿吊带的性感浩哥",
 
379
  "query_cn": "我竖中指",
380
  "query_en": "me flipping the bird"
381
  },
 
 
 
 
382
  {
383
  "query_cn": "上海迪士尼梦想护照盖章",
384
  "query_en": "Shanghai Disneyland dream passport stamps"
 
391
  "query_cn": "排队迪士尼玩项目",
392
  "query_en": "waiting in line for Disneyland rides"
393
  },
394
+ {
395
+ "query_cn": "迪士尼的难吃又贵的午饭",
396
+ "query_en": "expensive and bad lunch at Disneyland"
397
+ },
398
  {
399
  "query_cn": "黛西",
400
  "query_en": "Daisy Duck"
 
403
  "query_cn": "朱迪警官的办公桌 迪士尼",
404
  "query_en": "Officer Judy's desk at Disneyland"
405
  },
 
 
 
 
406
  {
407
  "query_cn": "疯狂动物城梦护照盖章",
408
  "query_en": "Zootopia dream passport stamps"
 
423
  "query_cn": "疯狂动物城牛局长",
424
  "query_en": "Chief Bogo from Zootopia"
425
  },
426
+ {
427
+ "query_cn": "梦想护照 漫威",
428
+ "query_en": "Marvel dream passport stamps"
429
+ },
430
  {
431
  "query_cn": "迪士尼金黄热狗棒",
432
  "query_en": "golden hot dog at Disneyland"
 
451
  "query_cn": "自驾开车上高速",
452
  "query_en": "driving on the highway"
453
  },
 
 
 
 
454
  {
455
  "query_cn": "和朋友穿同款浅紫Polo衫",
456
  "query_en": "matching light purple polo shirts with friends"
457
  },
 
 
 
 
 
 
 
 
 
 
 
 
458
  {
459
  "query_cn": "学校午后阳光明媚",
460
  "query_en": "sunny afternoon at school"
 
463
  "query_cn": "学校的请假流程",
464
  "query_en": "school leave request process"
465
  },
466
+ {
467
+ "query_cn": "和同学穿制服并肩坐",
468
+ "query_en": "sitting side by side in uniforms with classmates"
469
+ },
470
  {
471
  "query_cn": "夏天和朋友喝冰沙",
472
  "query_en": "drinking smoothies with friends in summer"
 
483
  "query_cn": "军训和佳宁欣欣一起比耶",
484
  "query_en": "peace sign with Jianing and Xinxin during military training"
485
  },
 
 
 
 
 
 
 
 
 
 
 
 
486
  {
487
  "query_cn": "飞机上化妆细节",
488
  "query_en": "makeup details on the plane"
 
496
  "query_en": "happy selfie on the plane"
497
  },
498
  {
499
+ "query_cn": "地铁车门前自拍",
500
+ "query_en": "selfie in front of the subway door"
501
  },
502
  {
503
+ "query_cn": "庭院里的棕榈树下藏着的白猫",
504
+ "query_en": "white cat hiding under the palm tree in the courtyard"
505
  },
506
  {
507
  "query_cn": "秋田犬安静休息",
508
  "query_en": "Akita dog resting quietly"
509
  },
510
+ {
511
+ "query_cn": "深圳机场登机口停机坪",
512
+ "query_en": "Shenzhen airport tarmac at the boarding gate"
513
+ },
514
  {
515
  "query_cn": "机场落地取行李的男友",
516
  "query_en": "boyfriend picking up luggage after landing at the airport"
 
523
  "query_cn": "黄绿酱汁烤鸡",
524
  "query_en": "roast chicken with yellow-green sauce"
525
  },
 
 
 
 
526
  {
527
  "query_cn": "模糊比耶",
528
  "query_en": "blurry peace sign"
 
532
  "query_en": "phone connected to car to play music"
533
  },
534
  {
535
+ "query_cn": "旅途匆忙感",
536
+ "query_en": "feeling rushed during the trip"
 
 
 
 
 
 
 
 
 
 
 
 
537
  },
538
  {
539
+ "query_cn": "深圳南山区夜景天际线",
540
+ "query_en": "Shenzhen Nanshan District skyline at night"
541
  },
542
  {
543
+ "query_cn": "深圳湾帅照",
544
+ "query_en": "cool photo at Shenzhen Bay"
545
  },
546
  {
547
  "query_cn": "深圳盐田港物流盛况",
548
  "query_en": "busy logistics scene at Shenzhen Yantian Port"
549
  },
550
  {
551
+ "query_cn": "柔弱的小猫",
552
+ "query_en": "delicate little cat"
 
 
 
 
553
  },
554
  {
555
  "query_cn": "夜晚公园 大白鹅清理羽毛",
 
564
  "query_en": "trying on a kimono"
565
  },
566
  {
567
+ "query_cn": "日式场景约拍 俯视",
568
+ "query_en": "Japanese-style photoshoot from above"
569
  },
570
  {
571
+ "query_cn": "穿自己",
572
+ "query_en": "me wearing a kimono"
573
  },
574
  {
575
  "query_cn": "橘猫翻垃圾桶",
576
  "query_en": "orange cat rummaging through the trash"
577
  },
 
 
 
 
578
  {
579
  "query_cn": "黑灰猫趴在花坛边,像探头一样",
580
  "query_en": "black-gray cat lying by the flower bed, peeking out"
 
587
  "query_cn": "下雨天路面上的落叶和花",
588
  "query_en": "fallen leaves and flowers on the rainy road"
589
  },
 
 
 
 
590
  {
591
  "query_cn": "操场上偷拍志浩被发现了",
592
  "query_en": "caught taking a candid photo of Zhihao on the field"
 
595
  "query_cn": "运动会开幕式等待出场",
596
  "query_en": "waiting to enter at the sports day opening ceremony"
597
  },
 
 
 
 
598
  {
599
  "query_cn": "图书馆的橘猫",
600
  "query_en": "orange cat at the library"
601
  },
 
 
 
 
602
  {
603
  "query_cn": "非遗集市摄影器材展台",
604
  "query_en": "photography gear booth at the heritage market"
605
  },
 
 
 
 
606
  {
607
  "query_cn": "炒面外卖",
608
  "query_en": "fried noodles delivery"
 
615
  "query_cn": "浩哥晚上户外玩手机",
616
  "query_en": "Hao playing on his phone outdoors at night"
617
  },
 
 
 
 
618
  {
619
  "query_cn": "麻辣烫",
620
  "query_en": "spicy hotpot"
 
623
  "query_cn": "手拿固体杨枝甘露",
624
  "query_en": "holding solid mango pomelo sago"
625
  },
 
 
 
 
 
 
 
 
626
  {
627
  "query_cn": "秋天街头吃冰糖水果串",
628
  "query_en": "eating candied fruit skewers on an autumn street"
 
651
  "query_cn": "厨房里做晚饭",
652
  "query_en": "making dinner in the kitchen"
653
  },
 
 
 
 
654
  {
655
  "query_cn": "一桌丰盛的晚餐",
656
  "query_en": "a table of delicious dinner"
 
667
  "query_cn": "我在厨房",
668
  "query_en": "me in the kitchen"
669
  },
 
 
 
 
 
 
 
 
670
  {
671
  "query_cn": "学校秋景",
672
  "query_en": "autumn scenery at school"
673
  },
674
+ {
675
+ "query_cn": "我的北面冲锋衣",
676
+ "query_en": "my north-facing jacket"
677
+ },
678
  {
679
  "query_cn": "街头煎饼卷制作过程",
680
  "query_en": "street pancake roll-making process"
 
687
  "query_cn": "杭州街边卷饼",
688
  "query_en": "rolled pancake on Hangzhou street"
689
  },
 
 
 
 
690
  {
691
  "query_cn": "超市毛绒玩具价格对比",
692
  "query_en": "supermarket plush toy price comparison"
 
699
  "query_cn": "25年11月16号下午记录妆容的自拍",
700
  "query_en": "selfie documenting makeup on November 16, 2025, afternoon"
701
  },
 
 
 
 
702
  {
703
  "query_cn": "和晓彤在复古梳妆台前合影",
704
  "query_en": "photo with Xiaotong at a vintage vanity"
 
787
  "query_cn": "展柜上的Kuromi毛绒玩具",
788
  "query_en": "Kuromi plush toys on display"
789
  },
 
 
 
 
 
 
 
 
790
  {
791
  "query_cn": "街头小吃辣味串串",
792
  "query_en": "spicy street skewers"
793
  },
794
  {
795
+ "query_cn": "MINISO毛绒玩具陈列柜",
796
+ "query_en": "MINISO plush toy display"
797
  },
798
  {
799
  "query_cn": "疯狂动物城电影票",
800
  "query_en": "Zootopia movie tickets"
801
  },
802
+ {
803
+ "query_cn": "疯狂动物城2片头画面",
804
+ "query_en": "Zootopia 2 opening scene"
805
+ },
806
  {
807
  "query_cn": "麦当劳芝士汉堡",
808
  "query_en": "McDonald's cheeseburger"
 
847
  "query_cn": "男友偷亲我",
848
  "query_en": "boyfriend stealing a kiss"
849
  },
 
 
 
 
850
  {
851
  "query_cn": "绍兴秋日阳光下的金黄树林",
852
  "query_en": "golden forest in Shaoxing's autumn sunlight"
 
860
  "query_en": "rainbow in street fountain"
861
  },
862
  {
863
+ "query_cn": "香草味可乐",
864
+ "query_en": "vanilla cola"
865
  },
866
  {
867
  "query_cn": "校园街中间躺着的猫猫",
 
871
  "query_cn": "健康早餐便携组合",
872
  "query_en": "healthy portable breakfast combo"
873
  },
 
 
 
 
874
  {
875
  "query_cn": "在寝室追番",
876
  "query_en": "watching anime in the dorm"
 
884
  "query_en": "cat under the dorm building"
885
  },
886
  {
887
+ "query_cn": "拿外卖回寝室自拍",
888
+ "query_en": "selfie with takeout back in the dorm"
 
 
 
 
889
  },
890
  {
891
  "query_cn": "吃鸡公煲",
 
923
  "query_cn": "记录绿鬣蜥静止在树枝上的细节",
924
  "query_en": "details of a green iguana on a branch"
925
  },
 
 
 
 
926
  {
927
  "query_cn": "巨嘴鸟",
928
  "query_en": "toucan"
 
931
  "query_cn": "橙红狮头金鱼游动",
932
  "query_en": "orange-red lionhead goldfish swimming"
933
  },
 
 
 
 
934
  {
935
  "query_cn": "金头狮面狨",
936
  "query_en": "golden lion tamarin"
 
951
  "query_cn": "白色长毛猫四仰八叉",
952
  "query_en": "white long-haired cat sprawled out"
953
  },
 
 
 
 
954
  {
955
  "query_cn": "和朋友嘟嘴卖萌",
956
  "query_en": "pouting with friends"
 
959
  "query_cn": "和朋友在绍兴柯桥自拍",
960
  "query_en": "selfie with friends in Keqiao, Shaoxing"
961
  },
962
+ {
963
+ "query_cn": "冬天和闺蜜贴贴",
964
+ "query_en": "cuddling with my bestie in winter"
965
+ },
966
  {
967
  "query_cn": "挠虎斑猫脖颈",
968
  "query_en": "scratching a tabby cat's neck"
969
  },
970
  {
971
+ "query_cn": "夜晚街头灰黑条纹猫",
972
+ "query_en": "gray-black striped cat on the street at night"
973
  },
974
  {
975
+ "query_cn": "在老旧社区孩子们玩器材",
976
+ "query_en": "kids' playground in an old neighborhood"
977
  },
978
  {
979
  "query_cn": "我、刘佳宁、欣欣的照片",
 
995
  "query_cn": "自己、小李、佳宁、欣欣的照片",
996
  "query_en": "photos of me, Xiao Li, Jianing, and Xinxin"
997
  },
 
 
 
 
998
  {
999
  "query_cn": "有阿宇和陈明宇在一起的照片",
1000
  "query_en": "photos with Ayu and Chen Mingyu"
 
1059
  "query_cn": "宁宁、李晓彤的照片",
1060
  "query_en": "photos of Ningning and Li Xiaotong"
1061
  },
 
 
 
 
1062
  {
1063
  "query_cn": "我、小李、刘佳宁、林可欣的照片",
1064
  "query_en": "photos of me, Xiao Li, Liu Jianing, and Lin Kexin"
 
1068
  "query_en": "photos of Yiyi"
1069
  },
1070
  {
1071
+ "query_cn": "有陈明宇在内的照片",
1072
+ "query_en": "photos with Chen Mingyu"
1073
+ },
1074
+ {
1075
+ "query_cn": "我、李晓彤、宁宁、欣欣的照片",
1076
+ "query_en": "photos of me, Li Xiaotong, Ningning, and Xinxin"
1077
  },
1078
  {
1079
  "query_cn": "我、小刘、林林的照片",
 
1083
  "query_cn": "自己、小李、小刘、可欣的照片",
1084
  "query_en": "photos of me, Xiao Li, Xiao Liu, and Kexin"
1085
  },
 
 
 
 
1086
  {
1087
  "query_cn": "有怡怡在内的照片",
1088
  "query_en": "photos with Yiyi"
 
1095
  "query_cn": "有小陈在内的照片",
1096
  "query_en": "photos with Xiao Chen"
1097
  },
1098
+ {
1099
+ "query_cn": "有周晓薇在内的照片",
1100
+ "query_en": "photos with Zhou Xiaowei"
1101
+ },
1102
  {
1103
  "query_cn": "我、宁宁、欣欣的照片",
1104
  "query_en": "photos of me, Ningning, and Xinxin"
 
1107
  "query_cn": "自己、晓彤、刘佳宁、欣欣的照片",
1108
  "query_en": "photos of me, Xiaotong, Liu Jianing, and Xinxin"
1109
  },
1110
+ {
1111
+ "query_cn": "彤彤的照片",
1112
+ "query_en": "photos of Tongtong"
1113
+ },
1114
  {
1115
  "query_cn": "我、晓彤、佳宁、可欣的照片",
1116
  "query_en": "photos of me, Xiaotong, Jianing, and Kexin"
 
1123
  "query_cn": "欣欣的照片",
1124
  "query_en": "photos of Xinxin"
1125
  },
 
 
 
 
1126
  {
1127
  "query_cn": "我、宁宁、林林的照片",
1128
  "query_en": "photos of me, Ningning, and Linlin"
 
1135
  "query_cn": "我、晓彤、小刘、林林的照片",
1136
  "query_en": "photos of me, Xiaotong, Xiao Liu, and Linlin"
1137
  },
 
 
 
 
1138
  {
1139
  "query_cn": "在秦淮区的照片",
1140
  "query_en": "photos in Qinhuai District"
 
1147
  "query_cn": "在深圳市的照片",
1148
  "query_en": "photos in Shenzhen"
1149
  },
 
 
 
 
1150
  {
1151
  "query_cn": "北京市",
1152
  "query_en": "photos in Beijing"
1153
  },
 
 
 
 
1154
  {
1155
  "query_cn": "在观山的照片",
1156
  "query_en": "photos in Guanshan"
 
1175
  "query_cn": "广东省拍的",
1176
  "query_en": "photos in Guangdong"
1177
  },
 
 
 
 
1178
  {
1179
  "query_cn": "建国门拍的",
1180
  "query_en": "photos taken at Jianguomen"
1181
  },
 
 
 
 
1182
  {
1183
  "query_cn": "天桥区拍的",
1184
  "query_en": "photos taken in Tianqiao District"
1185
  },
 
 
 
 
1186
  {
1187
  "query_cn": "红花岗区拍的",
1188
  "query_en": "photos taken in Honghuagang District"
 
1191
  "query_cn": "在建邺区的照片",
1192
  "query_en": "photos in Jianye District"
1193
  },
1194
+ {
1195
+ "query_cn": "在苏州市的照片",
1196
+ "query_en": "photos in Suzhou"
1197
+ },
1198
  {
1199
  "query_cn": "长宁区",
1200
  "query_en": "photos in Changning District"
 
1207
  "query_cn": "徐汇区拍的",
1208
  "query_en": "photos taken in Xuhui District"
1209
  },
 
 
 
 
1210
  {
1211
  "query_cn": "在岳阳的照片",
1212
  "query_en": "photos in Yueyang"
 
1219
  "query_cn": "南明区",
1220
  "query_en": "photos in Nanming District"
1221
  },
1222
+ {
1223
+ "query_cn": "东城区",
1224
+ "query_en": "photos in Dongcheng District"
1225
+ },
1226
  {
1227
  "query_cn": "东华门拍的",
1228
  "query_en": "photos taken at Donghuamen"
 
1231
  "query_cn": "新华路拍的",
1232
  "query_en": "photos taken on Xinhua Road"
1233
  },
 
 
 
 
1234
  {
1235
  "query_cn": "2025年和陈明宇的照片",
1236
  "query_en": "photos with Chen Mingyu in 2025"
 
1263
  "query_cn": "2025年中秋节的照片",
1264
  "query_en": "Mid-Autumn Festival photos from 2025"
1265
  },
 
 
 
 
 
 
 
 
1266
  {
1267
  "query_cn": "2025年清明节拍的",
1268
  "query_en": "photos taken during Qingming Festival in 2025"
 
1308
  "query_en": "photos taken on September 25, 2022"
1309
  },
1310
  {
1311
+ "query_cn": "20236月6日拍的",
1312
+ "query_en": "photos taken on June 6, 2023"
 
 
 
 
1313
  },
1314
  {
1315
  "query_cn": "2025年11月11日拍的",
 
1323
  "query_cn": "2023年春季拍的",
1324
  "query_en": "photos taken in spring 2023"
1325
  },
 
 
 
 
1326
  {
1327
  "query_cn": "2025年1月",
1328
  "query_en": "photos from January 2025"
 
1383
  "query_cn": "2025年冬季拍的",
1384
  "query_en": "photos taken in winter 2025"
1385
  },
 
 
 
 
 
 
 
 
 
 
 
 
1386
  {
1387
  "query_cn": "赤膊跑步的邮递员",
1388
  "query_en": "shirtless running mailman"
 
1431
  "query_cn": "金头狮面狨 贵州省",
1432
  "query_en": "golden-headed lion tamarin in Guizhou"
1433
  },
1434
+ {
1435
+ "query_cn": "朱迪和尼克, 2011",
1436
+ "query_en": "Judy and Nick, 2011"
1437
+ },
1438
  {
1439
  "query_cn": "摆满的书桌 贵州省",
1440
  "query_en": "desk full of books in Guizhou"
 
1443
  "query_cn": "挠虎斑猫脖颈, 2018",
1444
  "query_en": "scratching a tabby cat's neck, 2018"
1445
  },
1446
+ {
1447
+ "query_cn": "2020年拍的 夜晚和朋友聊天的瞬间",
1448
+ "query_en": "chatting with friends at night, 2020"
1449
+ },
1450
  {
1451
  "query_cn": "2023年拍的 青铜器",
1452
  "query_en": "bronze artifacts, 2023"
 
1487
  "query_cn": "烟花, 7月",
1488
  "query_en": "fireworks, July"
1489
  },
 
 
 
 
1490
  {
1491
  "query_cn": "2015年拍的 穿和服的自己",
1492
  "query_en": "me in a kimono, 2015"
 
1495
  "query_cn": "在贵州省拍的 展柜上的Kuromi毛绒玩具",
1496
  "query_en": "Kuromi plush toy on display in Guizhou"
1497
  },
 
 
 
 
1498
  {
1499
  "query_cn": "尝试拍猫咪面部特写失败 贵州省",
1500
  "query_en": "failed attempt at a cat face close-up in Guizhou"
data/test/album2_test.json CHANGED
@@ -16,8 +16,8 @@
16
  "query_en": "three fancy cocktails closeup"
17
  },
18
  {
19
- "query_cn": "普陀海岸",
20
- "query_en": "Putuo Mountain coast"
21
  },
22
  {
23
  "query_cn": "有肉的沙拉",
@@ -31,14 +31,6 @@
31
  "query_cn": "黑芝麻味的甜品",
32
  "query_en": "black sesame dessert"
33
  },
34
- {
35
- "query_cn": "傍晚开车过桥看江面",
36
- "query_en": "driving over bridge at sunset"
37
- },
38
- {
39
- "query_cn": "朋友聚会碰杯庆祝",
40
- "query_en": "friends toasting at party"
41
- },
42
  {
43
  "query_cn": "麻辣炒蛙诱人瞬间",
44
  "query_en": "spicy frog stir-fry moment"
@@ -63,10 +55,6 @@
63
  "query_cn": "曼谷街头广告牌",
64
  "query_en": "Bangkok street billboards"
65
  },
66
- {
67
- "query_cn": "艺术工作室墙面创意装饰",
68
- "query_en": "art studio wall decor"
69
- },
70
  {
71
  "query_cn": "普吉府绿色小公交车",
72
  "query_en": "green minibus in Phuket"
@@ -84,8 +72,8 @@
84
  "query_en": "Bangkok temple at night"
85
  },
86
  {
87
- "query_cn": "瓶窑镇遇到的无人车",
88
- "query_en": "driverless car in Pingyao"
89
  },
90
  {
91
  "query_cn": "长沙坡子街糖油粑粑和坨坨",
@@ -99,22 +87,10 @@
99
  "query_cn": "捡到的完美枫叶",
100
  "query_en": "perfect maple leaf found"
101
  },
102
- {
103
- "query_cn": "动作超可爱的瓷俑",
104
- "query_en": "cute ceramic figurine"
105
- },
106
  {
107
  "query_cn": "冬日瓶窑镇 我摆pose 结果男朋友对焦对到簸箕上去了",
108
  "query_en": "Pingyao winter me posing but focus on dustpan"
109
  },
110
- {
111
- "query_cn": "和男朋友的对戒",
112
- "query_en": "matching rings with boyfriend"
113
- },
114
- {
115
- "query_cn": "卡通小鹿雕塑旁的巧克力冰棒",
116
- "query_en": "chocolate popsicle by cartoon deer statue"
117
- },
118
  {
119
  "query_cn": "2024跨年热闹氛围",
120
  "query_en": "2024 New Year celebration vibes"
@@ -124,12 +100,12 @@
124
  "query_en": "West Lake night reflections"
125
  },
126
  {
127
- "query_cn": "擀面皮",
128
- "query_en": "handmade noodles"
129
  },
130
  {
131
- "query_cn": "干锅菜特写加V字手势",
132
- "query_en": "dry pot dish with peace sign"
133
  },
134
  {
135
  "query_cn": "日式烧鸟",
@@ -139,10 +115,6 @@
139
  "query_cn": "自己煮果酱",
140
  "query_en": "homemade jam"
141
  },
142
- {
143
- "query_cn": "跨年夜 杭州",
144
- "query_en": "New Year’s Eve Hangzhou"
145
- },
146
  {
147
  "query_cn": "山元山顺顺火锅排队进度",
148
  "query_en": "Shanyuan Shunshun hotpot queue"
@@ -151,18 +123,10 @@
151
  "query_cn": "夜晚街头和男朋友合影,我俩都穿深色衣服那张",
152
  "query_en": "night street photo with boyfriend in dark outfits"
153
  },
154
- {
155
- "query_cn": "夜晚 艺术灯光装置 梦幻",
156
- "query_en": "night art light installation dreamy"
157
- },
158
  {
159
  "query_cn": "亲手包饺子",
160
  "query_en": "handmade dumplings"
161
  },
162
- {
163
- "query_cn": "西湖木船上看水道风光",
164
- "query_en": "West Lake boat ride view"
165
- },
166
  {
167
  "query_cn": "夜晚樱花",
168
  "query_en": "cherry blossoms at night"
@@ -179,18 +143,10 @@
179
  "query_cn": "夜晚放的烟花",
180
  "query_en": "fireworks at night"
181
  },
182
- {
183
- "query_cn": "烧烤食材准备细节",
184
- "query_en": "bbq prep details"
185
- },
186
  {
187
  "query_cn": "2023武汉演唱会现场",
188
  "query_en": "2023 Wuhan concert"
189
  },
190
- {
191
- "query_cn": "春天黄昏樱花满街道",
192
- "query_en": "spring sunset cherry blossoms street"
193
- },
194
  {
195
  "query_cn": "西湖区春日阴天",
196
  "query_en": "West Lake spring cloudy day"
@@ -199,18 +155,6 @@
199
  "query_cn": "男友带着一大束玫瑰来地铁站找我",
200
  "query_en": "boyfriend met me at subway with roses"
201
  },
202
- {
203
- "query_cn": "杭州庆春路地铁站黄昏",
204
- "query_en": "Hangzhou Qingchun Road subway sunset"
205
- },
206
- {
207
- "query_cn": "男朋友拿我手机自拍的合照",
208
- "query_en": "boyfriend selfie with me on my phone"
209
- },
210
- {
211
- "query_cn": "我寝室里倒腾的御姐风发型",
212
- "query_en": "me in dorm trying edgy hairstyle"
213
- },
214
  {
215
  "query_cn": "手作珠宝店华丽的装饰",
216
  "query_en": "fancy handmade jewelry shop decor"
@@ -224,12 +168,12 @@
224
  "query_en": "subway window selfie"
225
  },
226
  {
227
- "query_cn": "肥胖短香蕉",
228
- "query_en": "short chubby banana"
229
  },
230
  {
231
- "query_cn": "和男朋友的合照,我戴太阳项链那几张",
232
- "query_en": "me and boyfriend pics with sun necklace"
233
  },
234
  {
235
  "query_cn": "杭州夜晚无人机灯光秀",
@@ -251,18 +195,10 @@
251
  "query_cn": "仙气飘飘的湖面",
252
  "query_en": "dreamy lake surface"
253
  },
254
- {
255
- "query_cn": "小龙虾配啤酒",
256
- "query_en": "crawfish and beer"
257
- },
258
  {
259
  "query_cn": "小熊生日蛋糕",
260
  "query_en": "bear birthday cake"
261
  },
262
- {
263
- "query_cn": "无人机摆成齐天大圣的瞬间",
264
- "query_en": "drone forming Monkey King moment"
265
- },
266
  {
267
  "query_cn": "投篮挑战成绩",
268
  "query_en": "basketball challenge score"
@@ -271,10 +207,6 @@
271
  "query_cn": "男友商场电梯里的搂着我合影",
272
  "query_en": "boyfriend hugging me in mall elevator selfie"
273
  },
274
- {
275
- "query_cn": "和男朋友玩双人游戏",
276
- "query_en": "playing co-op games with boyfriend"
277
- },
278
  {
279
  "query_cn": "男朋友把我拍的超级呆的照片",
280
  "query_en": "super goofy pic boyfriend took of me"
@@ -287,6 +219,10 @@
287
  "query_cn": "黑神话悟空艺术展 大海报",
288
  "query_en": "Black Myth Wukong art exhibit poster"
289
  },
 
 
 
 
290
  {
291
  "query_cn": "黑神话展里,游戏第二章,戴狐狸皮的书生",
292
  "query_en": "Black Myth chapter 2 fox scholar"
@@ -296,8 +232,8 @@
296
  "query_en": "Black Myth Wukong exhibit philosophy text"
297
  },
298
  {
299
- "query_cn": "青提蛋糕",
300
- "query_en": "green grape cake"
301
  },
302
  {
303
  "query_cn": "土地庙雕像",
@@ -307,45 +243,25 @@
307
  "query_cn": "黑神话 四姐设定画像",
308
  "query_en": "Black Myth Four Sisters concept art"
309
  },
310
- {
311
- "query_cn": "黑神话 四姐等身比例雕塑",
312
- "query_en": "Black Myth Four Sisters life-size statue"
313
- },
314
  {
315
  "query_cn": "黑神话悟空艺术展原画集封面",
316
  "query_en": "Black Myth Wukong artbook cover"
317
  },
318
  {
319
- "query_cn": "黑神话 黄风大圣设定图",
320
- "query_en": "Black Myth Yellow Wind Demon concept art"
321
- },
322
- {
323
- "query_cn": "悟空雕塑细节",
324
- "query_en": "Wukong statue details"
325
- },
326
- {
327
- "query_cn": "22岁生日庆祝",
328
- "query_en": "22nd birthday celebration"
329
  },
330
  {
331
  "query_cn": "男朋友装作要拿金箍棒",
332
  "query_en": "boyfriend pretending to grab golden staff"
333
  },
334
- {
335
- "query_cn": "红色燃葫芦 游戏道具实体版",
336
- "query_en": "red gourd game prop replica"
337
- },
338
  {
339
  "query_cn": "我打台球时的专注瞬间",
340
  "query_en": "focused moment playing pool"
341
  },
342
  {
343
- "query_cn": "喂绵羊吃东西瞬间",
344
- "query_en": "feeding sheep moment"
345
- },
346
- {
347
- "query_cn": "男朋友学孙悟空打坐",
348
- "query_en": "boyfriend meditating like Sun Wukong"
349
  },
350
  {
351
  "query_cn": "安吉五月下午的花卉和饮品",
@@ -356,20 +272,8 @@
356
  "query_en": "two squatting grilling oysters"
357
  },
358
  {
359
- "query_cn": "拱墅区河滨",
360
- "query_en": "Gongshu riverside"
361
- },
362
- {
363
- "query_cn": "五月下午的安桥港",
364
- "query_en": "Anqiao Port May afternoon"
365
- },
366
- {
367
- "query_cn": "手工雕塑上色前",
368
- "query_en": "handmade sculpture before painting"
369
- },
370
- {
371
- "query_cn": "可可粉可颂",
372
- "query_en": "cocoa croissant"
373
  },
374
  {
375
  "query_cn": "复古咖啡店门面",
@@ -391,10 +295,6 @@
391
  "query_cn": "我戴黑色口罩站在街边",
392
  "query_en": "me in black mask on street"
393
  },
394
- {
395
- "query_cn": "韩国入境卡填写参考",
396
- "query_en": "Korean entry card example"
397
- },
398
  {
399
  "query_cn": "我穿白T恤唱K",
400
  "query_en": "me in white T-shirt singing karaoke"
@@ -411,10 +311,6 @@
411
  "query_cn": "韩国传统血肠和猪内脏美食",
412
  "query_en": "Korean blood sausage and pork offal"
413
  },
414
- {
415
- "query_cn": "首尔的正宗韩式辣炒年糕",
416
- "query_en": "authentic spicy tteokbokki in Seoul"
417
- },
418
  {
419
  "query_cn": "韩国街头的adidas鞋和包",
420
  "query_en": "adidas shoes and bags on Korean street"
@@ -427,14 +323,6 @@
427
  "query_cn": "2023首尔演唱会氛围",
428
  "query_en": "2023 Seoul concert vibes"
429
  },
430
- {
431
- "query_cn": "演唱会应援热烈瞬间",
432
- "query_en": "concert fan support moments"
433
- },
434
- {
435
- "query_cn": "520浪漫火锅晚餐",
436
- "query_en": "520 romantic hotpot dinner"
437
- },
438
  {
439
  "query_cn": "和男朋友互送的礼物",
440
  "query_en": "gifts exchanged with boyfriend"
@@ -447,6 +335,10 @@
447
  "query_cn": "去听脱口秀",
448
  "query_en": "attending stand-up comedy"
449
  },
 
 
 
 
450
  {
451
  "query_cn": "我的穿搭 红色耳钉",
452
  "query_en": "my outfit red earrings"
@@ -459,18 +351,10 @@
459
  "query_cn": "专注看娃娃机里的布偶熊",
460
  "query_en": "focused on claw machine teddy bear"
461
  },
462
- {
463
- "query_cn": "杭州香积寺建筑��城市巧妙融合",
464
- "query_en": "Hangzhou Xiangji Temple blending with city"
465
- },
466
  {
467
  "query_cn": "手握应援灯棒",
468
  "query_en": "holding a lightstick"
469
  },
470
- {
471
- "query_cn": "杭州湖滨商圈超大拉布布",
472
- "query_en": "Hangzhou Lakeside huge banner"
473
- },
474
  {
475
  "query_cn": "2025年初夏杭州的合影",
476
  "query_en": "early summer 2025 Hangzhou group photo"
@@ -491,10 +375,6 @@
491
  "query_cn": "和明哥在商场",
492
  "query_en": "with Ming at mall"
493
  },
494
- {
495
- "query_cn": "杭州夜晚停车场雨后抓拍合照",
496
- "query_en": "rainy night parking lot photo with boyfriend in Hangzhou"
497
- },
498
  {
499
  "query_cn": "夜晚拱墅亚运雕塑",
500
  "query_en": "Gongshu Asian Games sculpture at night"
@@ -511,33 +391,21 @@
511
  "query_cn": "吃自助辣味贻贝空盘了",
512
  "query_en": "empty plates after spicy mussel buffet"
513
  },
514
- {
515
- "query_cn": "径山镇绿道散步",
516
- "query_en": "Jingshan greenway walk"
517
- },
518
  {
519
  "query_cn": "我和男朋友在地铁站合照",
520
  "query_en": "subway selfie with boyfriend"
521
  },
522
- {
523
- "query_cn": "傍晚义乌钟楼",
524
- "query_en": "Yiwu clock tower at dusk"
525
- },
526
- {
527
- "query_cn": "和男朋友地铁上的合照",
528
- "query_en": "subway photo with boyfriend"
529
- },
530
  {
531
  "query_cn": "大悦城动漫展卡通立板",
532
  "query_en": "Joy City anime expo cutouts"
533
  },
534
  {
535
- "query_cn": "用餐后自己的丑照",
536
- "query_en": "ugly selfie after eating"
537
  },
538
  {
539
- "query_cn": "我和男朋友亲密靠在一起",
540
- "query_en": "me and boyfriend cuddling"
541
  },
542
  {
543
  "query_cn": "和明哥在公交车上",
@@ -551,22 +419,10 @@
551
  "query_cn": "和明哥在义乌街头闲逛",
552
  "query_en": "me and Ming strolling Yiwu streets"
553
  },
554
- {
555
- "query_cn": "撒辣椒粉的水果拼盘",
556
- "query_en": "fruit platter with chili powder"
557
- },
558
- {
559
- "query_cn": "我挑发饰时的专注瞬间",
560
- "query_en": "me focused picking hair accessories"
561
- },
562
  {
563
  "query_cn": "和明哥傍晚亲密合影",
564
  "query_en": "me and Ming evening closeup"
565
  },
566
- {
567
- "query_cn": "我和男朋友包KTV间",
568
- "query_en": "me and boyfriend renting KTV room"
569
- },
570
  {
571
  "query_cn": "北京夜晚央视大楼灯光",
572
  "query_en": "Beijing night CCTV building lights"
@@ -575,6 +431,10 @@
575
  "query_cn": "上好色的手工雕塑",
576
  "query_en": "hand-painted sculpture with vibrant colors"
577
  },
 
 
 
 
578
  {
579
  "query_cn": "朋友聚餐吃咖喱和小龙虾",
580
  "query_en": "friends dinner with curry and crayfish"
@@ -583,10 +443,6 @@
583
  "query_cn": "远距离拍的 武汉演唱会舞台鞠躬瞬间",
584
  "query_en": "distant shot Wuhan concert bowing moment"
585
  },
586
- {
587
- "query_cn": "义乌车站清晨候车,我状态巨差的照片",
588
- "query_en": "Yiwu station morning bad photo of me"
589
- },
590
  {
591
  "query_cn": "杭州黄昏街道罕见的粉色晚霞",
592
  "query_en": "Hangzhou sunset pink sky street"
@@ -599,18 +455,10 @@
599
  "query_cn": "自己穿浅米色T恤挑衣服",
600
  "query_en": "me in beige T-shirt picking clothes"
601
  },
602
- {
603
- "query_cn": "自己侧身试一件深灰色衣服",
604
- "query_en": "me sideways trying dark gray outfit"
605
- },
606
  {
607
  "query_cn": "和明哥在儿童游乐区玩耍",
608
  "query_en": "me and Ming playing in kids area"
609
  },
610
- {
611
- "query_cn": "男朋友拍的我拍饮品的瞬间",
612
- "query_en": "boyfriend caught me photographing drinks"
613
- },
614
  {
615
  "query_cn": "试穿一件浅蓝色衣服",
616
  "query_en": "trying on light blue outfit"
@@ -623,10 +471,6 @@
623
  "query_cn": "男朋友捏我的脸",
624
  "query_en": "boyfriend pinching my face"
625
  },
626
- {
627
- "query_cn": "饰品店挑选项链",
628
- "query_en": "picking necklaces at jewelry shop"
629
- },
630
  {
631
  "query_cn": "亲亲",
632
  "query_en": "kissing"
@@ -644,8 +488,8 @@
644
  "query_en": "double ice cream at mall"
645
  },
646
  {
647
- "query_cn": "明哥和我穿情侣装",
648
- "query_en": "Ming and me couple outfit selfie"
649
  },
650
  {
651
  "query_cn": "2025年夏天在上海的亲密时光",
@@ -687,10 +531,6 @@
687
  "query_cn": "演唱会 满天彩带",
688
  "query_en": "concert confetti everywhere"
689
  },
690
- {
691
- "query_cn": "西湖夜游的游船",
692
- "query_en": "West Lake night boat ride"
693
- },
694
  {
695
  "query_cn": "万圣节街头鬼脸面具互动",
696
  "query_en": "Halloween street mask interaction"
@@ -700,41 +540,17 @@
700
  "query_en": "eating hairy crab"
701
  },
702
  {
703
- "query_cn": "我霸道总裁式搂住男友",
704
- "query_en": "me hugging boyfriend like a boss"
705
- },
706
- {
707
- "query_cn": "我摆着奥特曼姿势",
708
- "query_en": "me posing like Ultraman"
709
- },
710
- {
711
- "query_cn": "车内休息的温馨时刻",
712
- "query_en": "cozy car moment"
713
- },
714
- {
715
- "query_cn": "圣诞节前的精致饮品",
716
- "query_en": "fancy drink before Christmas"
717
  },
718
  {
719
  "query_cn": "超大落叶遮住我的脸",
720
  "query_en": "giant leaf covering my face"
721
  },
722
- {
723
- "query_cn": "自己穿米色羽绒服装酷",
724
- "query_en": "me in beige puffer looking cool"
725
- },
726
  {
727
  "query_cn": "我和明哥冬天穿羽绒服的照片",
728
  "query_en": "me and Ming in winter puffer"
729
  },
730
- {
731
- "query_cn": "夕阳下的电线杆和农田",
732
- "query_en": "sunset power lines and fields"
733
- },
734
- {
735
- "query_cn": "宁波夜晚赛博朋克风过街天桥",
736
- "query_en": "Ningbo cyberpunk night bridge"
737
- },
738
  {
739
  "query_cn": "乡村傍晚的宁静景色",
740
  "query_en": "peaceful countryside evening"
@@ -763,6 +579,14 @@
763
  "query_cn": "厦门环岛路的宁静黄昏",
764
  "query_en": "Xiamen Island Road quiet dusk"
765
  },
 
 
 
 
 
 
 
 
766
  {
767
  "query_cn": "沙滩露营地",
768
  "query_en": "beach campsite"
@@ -783,10 +607,6 @@
783
  "query_cn": "夜晚棕榈树,像加州一样",
784
  "query_en": "night palm trees like California"
785
  },
786
- {
787
- "query_cn": "鼓浪屿远眺城市天际线",
788
- "query_en": "Gulangyu city skyline view"
789
- },
790
  {
791
  "query_cn": "丁达尔现象",
792
  "query_en": "Tyndall effect"
@@ -847,18 +667,10 @@
847
  "query_cn": "宁波市",
848
  "query_en": "Ningbo"
849
  },
850
- {
851
- "query_cn": "在钱塘的照片",
852
- "query_en": "Qiantang photos"
853
- },
854
  {
855
  "query_cn": "在新虹的照片",
856
  "query_en": "Xinhong photos"
857
  },
858
- {
859
- "query_cn": "在滨江区的照片",
860
- "query_en": "Binjiang District photos"
861
- },
862
  {
863
  "query_cn": "舟山市",
864
  "query_en": "Zhoushan"
@@ -875,10 +687,6 @@
875
  "query_cn": "北京市拍的",
876
  "query_en": "Beijing photos"
877
  },
878
- {
879
- "query_cn": "西湖",
880
- "query_en": "West Lake"
881
- },
882
  {
883
  "query_cn": "咸阳市",
884
  "query_en": "Xianyang"
@@ -947,14 +755,14 @@
947
  "query_cn": "2025年7月男朋友和我的合照",
948
  "query_en": "July 2025 boyfriend and me selfie"
949
  },
950
- {
951
- "query_cn": "2025年4月 自己的照片",
952
- "query_en": "April 2025 my photos"
953
- },
954
  {
955
  "query_cn": "2025年5月 明哥的照片",
956
  "query_en": "May 2025 Ming's photos"
957
  },
 
 
 
 
958
  {
959
  "query_cn": "在金华市拍的有男朋友的照片",
960
  "query_en": "Jinhua City photos with boyfriend"
@@ -964,16 +772,8 @@
964
  "query_en": "December 2025 my photos"
965
  },
966
  {
967
- "query_cn": "2024的照片",
968
- "query_en": "Fall 2024 my photos"
969
- },
970
- {
971
- "query_cn": "2025年夏季 明哥的照片",
972
- "query_en": "Summer 2025 Ming's photos"
973
- },
974
- {
975
- "query_cn": "2025年12月我和男朋友的合照",
976
- "query_en": "December 2025 me and boyfriend selfie"
977
  },
978
  {
979
  "query_cn": "2025年10月明哥和自己的合照",
@@ -987,6 +787,14 @@
987
  "query_cn": "过2023年国庆节",
988
  "query_en": "2023 National Day"
989
  },
 
 
 
 
 
 
 
 
990
  {
991
  "query_cn": "2025年端午节拍的",
992
  "query_en": "2025 Dragon Boat Festival photos"
@@ -1011,18 +819,14 @@
1011
  "query_cn": "过2025年元旦",
1012
  "query_en": "2025 New Year's Day"
1013
  },
1014
- {
1015
- "query_cn": "2023年12月17日的照片",
1016
- "query_en": "December 17, 2023 photos"
1017
- },
1018
- {
1019
- "query_cn": "2024年3月1日的照片",
1020
- "query_en": "March 1, 2024 photos"
1021
- },
1022
  {
1023
  "query_cn": "2025年5月14日拍的",
1024
  "query_en": "May 14, 2025 photos"
1025
  },
 
 
 
 
1026
  {
1027
  "query_cn": "2022年9月16日拍的",
1028
  "query_en": "September 16, 2022 photos"
@@ -1031,58 +835,18 @@
1031
  "query_cn": "2022年上半年",
1032
  "query_en": "first half of 2022"
1033
  },
1034
- {
1035
- "query_cn": "2022年11月拍的",
1036
- "query_en": "November 2022 photos"
1037
- },
1038
- {
1039
- "query_cn": "2022年10月的照片",
1040
- "query_en": "October 2022 photos"
1041
- },
1042
- {
1043
- "query_cn": "2024年上半年拍的",
1044
- "query_en": "first half of 2024 photos"
1045
- },
1046
  {
1047
  "query_cn": "2023年9月拍的",
1048
  "query_en": "September 2023 photos"
1049
  },
1050
- {
1051
- "query_cn": "2023年4月的照片",
1052
- "query_en": "April 2023 photos"
1053
- },
1054
  {
1055
  "query_cn": "2024年11月的照片",
1056
  "query_en": "November 2024 photos"
1057
  },
1058
- {
1059
- "query_cn": "圣诞节夜晚的自拍",
1060
- "query_en": "Christmas night selfie"
1061
- },
1062
- {
1063
- "query_cn": "保俶塔黄昏",
1064
- "query_en": "Baoshi Tower at dusk"
1065
- },
1066
- {
1067
- "query_cn": "电影院明哥比V",
1068
- "query_en": "cinema Ming doing peace sign"
1069
- },
1070
- {
1071
- "query_cn": "北京夜晚央视大楼后门扫雪",
1072
- "query_en": "Beijing night snow clearing behind CCTV building"
1073
- },
1074
  {
1075
  "query_cn": "手作珠宝店的废弃工具箱",
1076
  "query_en": "abandoned toolbox at handmade jewelry shop"
1077
  },
1078
- {
1079
- "query_cn": "黑神话悟空展的清洁工拖地",
1080
- "query_en": "cleaner mopping at Black Myth Wukong exhibit"
1081
- },
1082
- {
1083
- "query_cn": "远山倒影的湖边野餐垫",
1084
- "query_en": "picnic mat by lake with mountain reflection"
1085
- },
1086
  {
1087
  "query_cn": "披萨肉夹馍配芥末酱",
1088
  "query_en": "pizza roujiamo with mustard sauce"
@@ -1099,14 +863,6 @@
1099
  "query_cn": "珠宝店柜台下的电线",
1100
  "query_en": "wires under jewelry store counter"
1101
  },
1102
- {
1103
- "query_cn": "血肠摊位的旧木凳",
1104
- "query_en": "old wooden stool at blood sausage stall"
1105
- },
1106
- {
1107
- "query_cn": "双人游戏时的手机充电线",
1108
- "query_en": "phone charger during two-player game"
1109
- },
1110
  {
1111
  "query_cn": "跨年烟花下的垃圾桶",
1112
  "query_en": "trash can under New Year fireworks"
@@ -1115,22 +871,10 @@
1115
  "query_cn": "鼓浪屿老建筑的排水管",
1116
  "query_en": "drainpipe on old Gulangyu building"
1117
  },
1118
- {
1119
- "query_cn": "披萨肉夹馍的包装纸",
1120
- "query_en": "pizza roujiamo wrapper"
1121
- },
1122
  {
1123
  "query_cn": "艺术展角落的清洁车",
1124
  "query_en": "cleaning cart in art exhibit corner"
1125
  },
1126
- {
1127
- "query_cn": "炒蛙锅底的油渍",
1128
- "query_en": "oil stains in frog hotpot"
1129
- },
1130
- {
1131
- "query_cn": "饮品照片的反光",
1132
- "query_en": "drink photo glare"
1133
- },
1134
  {
1135
  "query_cn": "泰式炒面的塑料盒盖",
1136
  "query_en": "plastic lid of Thai stir-fried noodles"
@@ -1139,10 +883,6 @@
1139
  "query_cn": "星巴克的旧杯套",
1140
  "query_en": "old Starbucks cup sleeve"
1141
  },
1142
- {
1143
- "query_cn": "在韩国拍的 用餐后自己的丑照",
1144
- "query_en": "ugly selfie after meal in Korea"
1145
- },
1146
  {
1147
  "query_cn": "带点血色的牛排, 2019年5月",
1148
  "query_en": "bloody steak, May 2019"
@@ -1151,6 +891,10 @@
1151
  "query_cn": "圣诞节前的精致饮品 韩国",
1152
  "query_en": "fancy Christmas drink in Korea"
1153
  },
 
 
 
 
1154
  {
1155
  "query_cn": "在韩国拍的 夜晚 艺术灯光装置 梦幻",
1156
  "query_en": "dreamy night art light installation in Korea"
@@ -1159,10 +903,6 @@
1159
  "query_cn": "远山倒影 冷色调, 2020年7月",
1160
  "query_en": "distant mountain reflection, cool tones, July 2020"
1161
  },
1162
- {
1163
- "query_cn": "在泰国拍的 精致小量火锅菜",
1164
- "query_en": "fancy mini hotpot in Thailand"
1165
- },
1166
  {
1167
  "query_cn": "碰杯瞬间, 2017",
1168
  "query_en": "cheers moment, 2017"
@@ -1183,14 +923,6 @@
1183
  "query_cn": "手工雕塑上色前, 2020",
1184
  "query_en": "hand-painted sculpture before coloring, 2020"
1185
  },
1186
- {
1187
- "query_cn": "亲手包饺子 福建省",
1188
- "query_en": "handmade dumplings, Fujian"
1189
- },
1190
- {
1191
- "query_cn": "我打台球时的专注瞬间, 2020年10月",
1192
- "query_en": "focused moment playing pool, October 2020"
1193
- },
1194
  {
1195
  "query_cn": "和明哥在商场, 11月",
1196
  "query_en": "me and Ming in mall, November"
 
16
  "query_en": "three fancy cocktails closeup"
17
  },
18
  {
19
+ "query_cn": "山间雾气笼罩的险峻山脊",
20
+ "query_en": "misty mountain ridge"
21
  },
22
  {
23
  "query_cn": "有肉的沙拉",
 
31
  "query_cn": "黑芝麻味的甜品",
32
  "query_en": "black sesame dessert"
33
  },
 
 
 
 
 
 
 
 
34
  {
35
  "query_cn": "麻辣炒蛙诱人瞬间",
36
  "query_en": "spicy frog stir-fry moment"
 
55
  "query_cn": "曼谷街头广告牌",
56
  "query_en": "Bangkok street billboards"
57
  },
 
 
 
 
58
  {
59
  "query_cn": "普吉府绿色小公交车",
60
  "query_en": "green minibus in Phuket"
 
72
  "query_en": "Bangkok temple at night"
73
  },
74
  {
75
+ "query_cn": "保俶塔黄昏",
76
+ "query_en": "Baoshi Tower at dusk"
77
  },
78
  {
79
  "query_cn": "长沙坡子街糖油粑粑和坨坨",
 
87
  "query_cn": "捡到的完美枫叶",
88
  "query_en": "perfect maple leaf found"
89
  },
 
 
 
 
90
  {
91
  "query_cn": "冬日瓶窑镇 我摆pose 结果男朋友对焦对到簸箕上去了",
92
  "query_en": "Pingyao winter me posing but focus on dustpan"
93
  },
 
 
 
 
 
 
 
 
94
  {
95
  "query_cn": "2024跨年热闹氛围",
96
  "query_en": "2024 New Year celebration vibes"
 
100
  "query_en": "West Lake night reflections"
101
  },
102
  {
103
+ "query_cn": "我包的手工饺子",
104
+ "query_en": "dumplings I made"
105
  },
106
  {
107
+ "query_cn": "做饺子馅",
108
+ "query_en": "making dumpling filling"
109
  },
110
  {
111
  "query_cn": "日式烧鸟",
 
115
  "query_cn": "自己煮果酱",
116
  "query_en": "homemade jam"
117
  },
 
 
 
 
118
  {
119
  "query_cn": "山元山顺顺火锅排队进度",
120
  "query_en": "Shanyuan Shunshun hotpot queue"
 
123
  "query_cn": "夜晚街头和男朋友合影,我俩都穿深色衣服那张",
124
  "query_en": "night street photo with boyfriend in dark outfits"
125
  },
 
 
 
 
126
  {
127
  "query_cn": "亲手包饺子",
128
  "query_en": "handmade dumplings"
129
  },
 
 
 
 
130
  {
131
  "query_cn": "夜晚樱花",
132
  "query_en": "cherry blossoms at night"
 
143
  "query_cn": "夜晚放的烟花",
144
  "query_en": "fireworks at night"
145
  },
 
 
 
 
146
  {
147
  "query_cn": "2023武汉演唱会现场",
148
  "query_en": "2023 Wuhan concert"
149
  },
 
 
 
 
150
  {
151
  "query_cn": "西湖区春日阴天",
152
  "query_en": "West Lake spring cloudy day"
 
155
  "query_cn": "男友带着一大束玫瑰来地铁站找我",
156
  "query_en": "boyfriend met me at subway with roses"
157
  },
 
 
 
 
 
 
 
 
 
 
 
 
158
  {
159
  "query_cn": "手作珠宝店华丽的装饰",
160
  "query_en": "fancy handmade jewelry shop decor"
 
168
  "query_en": "subway window selfie"
169
  },
170
  {
171
+ "query_cn": "电影院明哥比V",
172
+ "query_en": "cinema Ming doing peace sign"
173
  },
174
  {
175
+ "query_cn": "肥胖短香蕉",
176
+ "query_en": "short chubby banana"
177
  },
178
  {
179
  "query_cn": "杭州夜晚无人机灯光秀",
 
195
  "query_cn": "仙气飘飘的湖面",
196
  "query_en": "dreamy lake surface"
197
  },
 
 
 
 
198
  {
199
  "query_cn": "小熊生日蛋糕",
200
  "query_en": "bear birthday cake"
201
  },
 
 
 
 
202
  {
203
  "query_cn": "投篮挑战成绩",
204
  "query_en": "basketball challenge score"
 
207
  "query_cn": "男友商场电梯里的搂着我合影",
208
  "query_en": "boyfriend hugging me in mall elevator selfie"
209
  },
 
 
 
 
210
  {
211
  "query_cn": "男朋友把我拍的超级呆的照片",
212
  "query_en": "super goofy pic boyfriend took of me"
 
219
  "query_cn": "黑神话悟空艺术展 大海报",
220
  "query_en": "Black Myth Wukong art exhibit poster"
221
  },
222
+ {
223
+ "query_cn": "海底捞生日布置",
224
+ "query_en": "Haidilao birthday setup"
225
+ },
226
  {
227
  "query_cn": "黑神话展里,游戏第二章,戴狐狸皮的书生",
228
  "query_en": "Black Myth chapter 2 fox scholar"
 
232
  "query_en": "Black Myth Wukong exhibit philosophy text"
233
  },
234
  {
235
+ "query_cn": "八戒",
236
+ "query_en": "Pigsy"
237
  },
238
  {
239
  "query_cn": "土地庙雕像",
 
243
  "query_cn": "黑神话 四姐设定画像",
244
  "query_en": "Black Myth Four Sisters concept art"
245
  },
 
 
 
 
246
  {
247
  "query_cn": "黑神话悟空艺术展原画集封面",
248
  "query_en": "Black Myth Wukong artbook cover"
249
  },
250
  {
251
+ "query_cn": "金箍",
252
+ "query_en": "golden hoop"
 
 
 
 
 
 
 
 
253
  },
254
  {
255
  "query_cn": "男朋友装作要拿金箍棒",
256
  "query_en": "boyfriend pretending to grab golden staff"
257
  },
 
 
 
 
258
  {
259
  "query_cn": "我打台球时的专注瞬间",
260
  "query_en": "focused moment playing pool"
261
  },
262
  {
263
+ "query_cn": "我背带上挂着泡泡玛特玩偶",
264
+ "query_en": "Pop Mart figure on my bag strap"
 
 
 
 
265
  },
266
  {
267
  "query_cn": "安吉五月下午的花卉和饮品",
 
272
  "query_en": "two squatting grilling oysters"
273
  },
274
  {
275
+ "query_cn": "朝天门吃火锅",
276
+ "query_en": "hotpot at Chaotianmen"
 
 
 
 
 
 
 
 
 
 
 
 
277
  },
278
  {
279
  "query_cn": "复古咖啡店门面",
 
295
  "query_cn": "我戴黑色口罩站在街边",
296
  "query_en": "me in black mask on street"
297
  },
 
 
 
 
298
  {
299
  "query_cn": "我穿白T恤唱K",
300
  "query_en": "me in white T-shirt singing karaoke"
 
311
  "query_cn": "韩国传统血肠和猪内脏美食",
312
  "query_en": "Korean blood sausage and pork offal"
313
  },
 
 
 
 
314
  {
315
  "query_cn": "韩国街头的adidas鞋和包",
316
  "query_en": "adidas shoes and bags on Korean street"
 
323
  "query_cn": "2023首尔演唱会氛围",
324
  "query_en": "2023 Seoul concert vibes"
325
  },
 
 
 
 
 
 
 
 
326
  {
327
  "query_cn": "和男朋友互送的礼物",
328
  "query_en": "gifts exchanged with boyfriend"
 
335
  "query_cn": "去听脱口秀",
336
  "query_en": "attending stand-up comedy"
337
  },
338
+ {
339
+ "query_cn": "男朋友和自己在镜子前的合影,我没看着他那张",
340
+ "query_en": "mirror selfie with boyfriend, I’m not looking at him"
341
+ },
342
  {
343
  "query_cn": "我的穿搭 红色耳钉",
344
  "query_en": "my outfit red earrings"
 
351
  "query_cn": "专注看娃娃机里的布偶熊",
352
  "query_en": "focused on claw machine teddy bear"
353
  },
 
 
 
 
354
  {
355
  "query_cn": "手握应援灯棒",
356
  "query_en": "holding a lightstick"
357
  },
 
 
 
 
358
  {
359
  "query_cn": "2025年初夏杭州的合影",
360
  "query_en": "early summer 2025 Hangzhou group photo"
 
375
  "query_cn": "和明哥在商场",
376
  "query_en": "with Ming at mall"
377
  },
 
 
 
 
378
  {
379
  "query_cn": "夜晚拱墅亚运雕塑",
380
  "query_en": "Gongshu Asian Games sculpture at night"
 
391
  "query_cn": "吃自助辣味贻贝空盘了",
392
  "query_en": "empty plates after spicy mussel buffet"
393
  },
 
 
 
 
394
  {
395
  "query_cn": "我和男朋友在地铁站合照",
396
  "query_en": "subway selfie with boyfriend"
397
  },
 
 
 
 
 
 
 
 
398
  {
399
  "query_cn": "大悦城动漫展卡通立板",
400
  "query_en": "Joy City anime expo cutouts"
401
  },
402
  {
403
+ "query_cn": "杭州柯南展活动时间地点",
404
+ "query_en": "Hangzhou Conan exhibition details"
405
  },
406
  {
407
+ "query_cn": "用餐后自己的丑照",
408
+ "query_en": "ugly selfie after eating"
409
  },
410
  {
411
  "query_cn": "和明哥在公交车上",
 
419
  "query_cn": "和明哥在义乌街头闲逛",
420
  "query_en": "me and Ming strolling Yiwu streets"
421
  },
 
 
 
 
 
 
 
 
422
  {
423
  "query_cn": "和明哥傍晚亲密合影",
424
  "query_en": "me and Ming evening closeup"
425
  },
 
 
 
 
426
  {
427
  "query_cn": "北京夜晚央视大楼灯光",
428
  "query_en": "Beijing night CCTV building lights"
 
431
  "query_cn": "上好色的手工雕塑",
432
  "query_en": "hand-painted sculpture with vibrant colors"
433
  },
434
+ {
435
+ "query_cn": "双份冰淇淋",
436
+ "query_en": "double ice cream"
437
+ },
438
  {
439
  "query_cn": "朋友聚餐吃咖喱和小龙虾",
440
  "query_en": "friends dinner with curry and crayfish"
 
443
  "query_cn": "远距离拍的 武汉演唱会舞台鞠躬瞬间",
444
  "query_en": "distant shot Wuhan concert bowing moment"
445
  },
 
 
 
 
446
  {
447
  "query_cn": "杭州黄昏街道罕见的粉色晚霞",
448
  "query_en": "Hangzhou sunset pink sky street"
 
455
  "query_cn": "自己穿浅米色T恤挑衣服",
456
  "query_en": "me in beige T-shirt picking clothes"
457
  },
 
 
 
 
458
  {
459
  "query_cn": "和明哥在儿童游乐区玩耍",
460
  "query_en": "me and Ming playing in kids area"
461
  },
 
 
 
 
462
  {
463
  "query_cn": "试穿一件浅蓝色衣服",
464
  "query_en": "trying on light blue outfit"
 
471
  "query_cn": "男朋友捏我的脸",
472
  "query_en": "boyfriend pinching my face"
473
  },
 
 
 
 
474
  {
475
  "query_cn": "亲亲",
476
  "query_en": "kissing"
 
488
  "query_en": "double ice cream at mall"
489
  },
490
  {
491
+ "query_cn": "自己在家放松的样子",
492
+ "query_en": "me relaxing at home"
493
  },
494
  {
495
  "query_cn": "2025年夏天在上海的亲密时光",
 
531
  "query_cn": "演唱会 满天彩带",
532
  "query_en": "concert confetti everywhere"
533
  },
 
 
 
 
534
  {
535
  "query_cn": "万圣节街头鬼脸面具互动",
536
  "query_en": "Halloween street mask interaction"
 
540
  "query_en": "eating hairy crab"
541
  },
542
  {
543
+ "query_cn": "街头小贩卖糖葫芦,车后边插得跟孔雀开屏一样",
544
+ "query_en": "street vendor selling sugar-coated hawthorn, peacock-like display"
 
 
 
 
 
 
 
 
 
 
 
 
545
  },
546
  {
547
  "query_cn": "超大落叶遮住我的脸",
548
  "query_en": "giant leaf covering my face"
549
  },
 
 
 
 
550
  {
551
  "query_cn": "我和明哥冬天穿羽绒服的照片",
552
  "query_en": "me and Ming in winter puffer"
553
  },
 
 
 
 
 
 
 
 
554
  {
555
  "query_cn": "乡村傍晚的宁静景色",
556
  "query_en": "peaceful countryside evening"
 
579
  "query_cn": "厦门环岛路的宁静黄昏",
580
  "query_en": "Xiamen Island Road quiet dusk"
581
  },
582
+ {
583
+ "query_cn": "披萨肉夹馍",
584
+ "query_en": "pizza meat sandwich"
585
+ },
586
+ {
587
+ "query_cn": "鼓浪屿风光",
588
+ "query_en": "Gulangyu scenery"
589
+ },
590
  {
591
  "query_cn": "沙滩露营地",
592
  "query_en": "beach campsite"
 
607
  "query_cn": "夜晚棕榈树,像加州一样",
608
  "query_en": "night palm trees like California"
609
  },
 
 
 
 
610
  {
611
  "query_cn": "丁达尔现象",
612
  "query_en": "Tyndall effect"
 
667
  "query_cn": "宁波市",
668
  "query_en": "Ningbo"
669
  },
 
 
 
 
670
  {
671
  "query_cn": "在新虹的照片",
672
  "query_en": "Xinhong photos"
673
  },
 
 
 
 
674
  {
675
  "query_cn": "舟山市",
676
  "query_en": "Zhoushan"
 
687
  "query_cn": "北京市拍的",
688
  "query_en": "Beijing photos"
689
  },
 
 
 
 
690
  {
691
  "query_cn": "咸阳市",
692
  "query_en": "Xianyang"
 
755
  "query_cn": "2025年7月男朋友和我的合照",
756
  "query_en": "July 2025 boyfriend and me selfie"
757
  },
 
 
 
 
758
  {
759
  "query_cn": "2025年5月 明哥的照片",
760
  "query_en": "May 2025 Ming's photos"
761
  },
762
+ {
763
+ "query_cn": "2024年12月 我的照片",
764
+ "query_en": "December 2024 my photos"
765
+ },
766
  {
767
  "query_cn": "在金华市拍的有男朋友的照片",
768
  "query_en": "Jinhua City photos with boyfriend"
 
772
  "query_en": "December 2025 my photos"
773
  },
774
  {
775
+ "query_cn": "2025明哥的照片",
776
+ "query_en": "Winter 2025 Ming's photos"
 
 
 
 
 
 
 
 
777
  },
778
  {
779
  "query_cn": "2025年10月明哥和自己的合照",
 
787
  "query_cn": "过2023年国庆节",
788
  "query_en": "2023 National Day"
789
  },
790
+ {
791
+ "query_cn": "2025年劳动节的照片",
792
+ "query_en": "2025 Labor Day photos"
793
+ },
794
+ {
795
+ "query_cn": "2025年国庆节拍的",
796
+ "query_en": "2025 National Day photos"
797
+ },
798
  {
799
  "query_cn": "2025年端午节拍的",
800
  "query_en": "2025 Dragon Boat Festival photos"
 
819
  "query_cn": "过2025年元旦",
820
  "query_en": "2025 New Year's Day"
821
  },
 
 
 
 
 
 
 
 
822
  {
823
  "query_cn": "2025年5月14日拍的",
824
  "query_en": "May 14, 2025 photos"
825
  },
826
+ {
827
+ "query_cn": "2024年5月23日拍的",
828
+ "query_en": "May 23, 2024 photos"
829
+ },
830
  {
831
  "query_cn": "2022年9月16日拍的",
832
  "query_en": "September 16, 2022 photos"
 
835
  "query_cn": "2022年上半年",
836
  "query_en": "first half of 2022"
837
  },
 
 
 
 
 
 
 
 
 
 
 
 
838
  {
839
  "query_cn": "2023年9月拍的",
840
  "query_en": "September 2023 photos"
841
  },
 
 
 
 
842
  {
843
  "query_cn": "2024年11月的照片",
844
  "query_en": "November 2024 photos"
845
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
846
  {
847
  "query_cn": "手作珠宝店的废弃工具箱",
848
  "query_en": "abandoned toolbox at handmade jewelry shop"
849
  },
 
 
 
 
 
 
 
 
850
  {
851
  "query_cn": "披萨肉夹馍配芥末酱",
852
  "query_en": "pizza roujiamo with mustard sauce"
 
863
  "query_cn": "珠宝店柜台下的电线",
864
  "query_en": "wires under jewelry store counter"
865
  },
 
 
 
 
 
 
 
 
866
  {
867
  "query_cn": "跨年烟花下的垃圾桶",
868
  "query_en": "trash can under New Year fireworks"
 
871
  "query_cn": "鼓浪屿老建筑的排水管",
872
  "query_en": "drainpipe on old Gulangyu building"
873
  },
 
 
 
 
874
  {
875
  "query_cn": "艺术展角落的清洁车",
876
  "query_en": "cleaning cart in art exhibit corner"
877
  },
 
 
 
 
 
 
 
 
878
  {
879
  "query_cn": "泰式炒面的塑料盒盖",
880
  "query_en": "plastic lid of Thai stir-fried noodles"
 
883
  "query_cn": "星巴克的旧杯套",
884
  "query_en": "old Starbucks cup sleeve"
885
  },
 
 
 
 
886
  {
887
  "query_cn": "带点血色的牛排, 2019年5月",
888
  "query_en": "bloody steak, May 2019"
 
891
  "query_cn": "圣诞节前的精致饮品 韩国",
892
  "query_en": "fancy Christmas drink in Korea"
893
  },
894
+ {
895
+ "query_cn": "在浙江省拍的 武功山云海日出",
896
+ "query_en": "Wugong Mountain sunrise sea of clouds, Zhejiang"
897
+ },
898
  {
899
  "query_cn": "在韩国拍的 夜晚 艺术灯光装置 梦幻",
900
  "query_en": "dreamy night art light installation in Korea"
 
903
  "query_cn": "远山倒影 冷色调, 2020年7月",
904
  "query_en": "distant mountain reflection, cool tones, July 2020"
905
  },
 
 
 
 
906
  {
907
  "query_cn": "碰杯瞬间, 2017",
908
  "query_en": "cheers moment, 2017"
 
923
  "query_cn": "手工雕塑上色前, 2020",
924
  "query_en": "hand-painted sculpture before coloring, 2020"
925
  },
 
 
 
 
 
 
 
 
926
  {
927
  "query_cn": "和明哥在商场, 11月",
928
  "query_en": "me and Ming in mall, November"
data/test/album3_test.json CHANGED
@@ -3,6 +3,10 @@
3
  "query_cn": "明明带着圆框眼镜",
4
  "query_en": "Mingming wearing round glasses"
5
  },
 
 
 
 
6
  {
7
  "query_cn": "明明在水幕墙前比V",
8
  "query_en": "Mingming posing with V sign by water curtain"
@@ -35,10 +39,6 @@
35
  "query_cn": "明明专注拼图的时刻",
36
  "query_en": "Mingming focused on puzzle"
37
  },
38
- {
39
- "query_cn": "给宝宝喂药",
40
- "query_en": "giving baby medicine"
41
- },
42
  {
43
  "query_cn": "火灾现场评估",
44
  "query_en": "fire scene assessment"
@@ -87,14 +87,6 @@
87
  "query_cn": "河北影视基地家庭游",
88
  "query_en": "Hebei film studio family trip"
89
  },
90
- {
91
- "query_cn": "空中花园乐园导览图",
92
- "query_en": "sky garden park map"
93
- },
94
- {
95
- "query_cn": "老爸与戏曲演员互动",
96
- "query_en": "dad interacting with opera actor"
97
- },
98
  {
99
  "query_cn": "室内游船",
100
  "query_en": "indoor boat ride"
@@ -120,8 +112,8 @@
120
  "query_en": "dad casually sitting with statue"
121
  },
122
  {
123
- "query_cn": "妈妈和父亲在桥上合照",
124
- "query_en": "mom and dad photo on bridge"
125
  },
126
  {
127
  "query_cn": "乳腺癌病理报告",
@@ -159,6 +151,10 @@
159
  "query_cn": "家里养的小兔子",
160
  "query_en": "pet rabbit at home"
161
  },
 
 
 
 
162
  {
163
  "query_cn": "大榕树前的合影",
164
  "query_en": "group photo by big banyan tree"
@@ -183,18 +179,10 @@
183
  "query_cn": "自己穿黑色夹克的仪式感",
184
  "query_en": "me in black jacket formal vibe"
185
  },
186
- {
187
- "query_cn": "婚礼现场和好友合影",
188
- "query_en": "wedding group photo with friends"
189
- },
190
  {
191
  "query_cn": "婚礼新人走红毯",
192
  "query_en": "wedding couple walking red carpet"
193
  },
194
- {
195
- "query_cn": "木勺搅拌蛋液情况",
196
- "query_en": "wooden spoon stirring eggs"
197
- },
198
  {
199
  "query_cn": "简易厨房做小煎饼",
200
  "query_en": "making mini pancakes in kitchen"
@@ -231,14 +219,6 @@
231
  "query_cn": "亲子采摘樱桃",
232
  "query_en": "parent-child cherry picking"
233
  },
234
- {
235
- "query_cn": "南戴河索道",
236
- "query_en": "Nandaihe cable car"
237
- },
238
- {
239
- "query_cn": "大头儿子小头爸爸的沙雕",
240
- "query_en": "Big Head Son and Small Head Dad sand sculpture"
241
- },
242
  {
243
  "query_cn": "孩子边采摘边吃",
244
  "query_en": "kid eating while picking fruit"
@@ -247,10 +227,6 @@
247
  "query_cn": "孩子像青蛙一样趴在床上",
248
  "query_en": "kid lying on bed like a frog"
249
  },
250
- {
251
- "query_cn": "小宝在水族馆",
252
- "query_en": "Xiaobao at the aquarium"
253
- },
254
  {
255
  "query_cn": "孩子骑小马",
256
  "query_en": "kid riding pony"
@@ -263,10 +239,6 @@
263
  "query_cn": "孩子和红色的熊大",
264
  "query_en": "kid with red Bear Big"
265
  },
266
- {
267
- "query_cn": "家里拖地日常",
268
- "query_en": "mopping floor at home"
269
- },
270
  {
271
  "query_cn": "长颈恐龙模型",
272
  "query_en": "long-neck dinosaur model"
@@ -275,10 +247,6 @@
275
  "query_cn": "剑龙",
276
  "query_en": "stegosaurus"
277
  },
278
- {
279
- "query_cn": "两个孩子的手环牵在我身上",
280
- "query_en": "two kids' wristbands holding onto me"
281
- },
282
  {
283
  "query_cn": "亲子游乐场骑矮马",
284
  "query_en": "pony ride at family amusement park"
@@ -287,10 +255,6 @@
287
  "query_cn": "电饭煲里的黑暗美食",
288
  "query_en": "weird food in rice cooker"
289
  },
290
- {
291
- "query_cn": "手工面团兔子",
292
- "query_en": "handmade dough bunny"
293
- },
294
  {
295
  "query_cn": "烘焙面糊搅拌过程",
296
  "query_en": "mixing baking batter"
@@ -308,25 +272,17 @@
308
  "query_en": "handmade dinosaur buns"
309
  },
310
  {
311
- "query_cn": "脉动瓶塞面糊里",
312
- "query_en": "bottle cap in batter"
313
  },
314
  {
315
  "query_cn": "没头发的娃娃",
316
  "query_en": "bald doll"
317
  },
318
- {
319
- "query_cn": "孩子们与恐龙模型",
320
- "query_en": "kids with dinosaur models"
321
- },
322
  {
323
  "query_cn": "商场里孩子跟艾莎的合照",
324
  "query_en": "kid with Elsa at mall"
325
  },
326
- {
327
- "query_cn": "孩子专注绘画",
328
- "query_en": "kid focused on drawing"
329
- },
330
  {
331
  "query_cn": "绿色恐龙破蛋而出雕塑",
332
  "query_en": "green dinosaur hatching sculpture"
@@ -335,18 +291,10 @@
335
  "query_cn": "孔雀开屏",
336
  "query_en": "peacock spreading feathers"
337
  },
338
- {
339
- "query_cn": "满米酸奶店环境记录",
340
- "query_en": "Manmi yogurt shop environment"
341
- },
342
  {
343
  "query_cn": "满米酸奶小料自选",
344
  "query_en": "Manmi yogurt toppings"
345
  },
346
- {
347
- "query_cn": "厨房里的三兄弟",
348
- "query_en": "three brothers in the kitchen"
349
- },
350
  {
351
  "query_cn": "手拿益生菌胶原蛋白肽",
352
  "query_en": "holding probiotic collagen peptides"
@@ -355,14 +303,6 @@
355
  "query_cn": "酸奶店菜单拍照",
356
  "query_en": "photo of yogurt shop menu"
357
  },
358
- {
359
- "query_cn": "自己在上海店铺内的邋遢打扮",
360
- "query_en": "me looking messy in Shanghai store"
361
- },
362
- {
363
- "query_cn": "采摘番茄",
364
- "query_en": "picking tomatoes"
365
- },
366
  {
367
  "query_cn": "厚切炒酸奶促销活动",
368
  "query_en": "thick-cut frozen yogurt promo"
@@ -371,10 +311,6 @@
371
  "query_cn": "打包切好的炒酸奶",
372
  "query_en": "packed frozen yogurt slices"
373
  },
374
- {
375
- "query_cn": "顶呱呱炸鸡店菜单",
376
- "query_en": "Ding Guagua fried chicken menu"
377
- },
378
  {
379
  "query_cn": "毛怪鲜果茶店内环境",
380
  "query_en": "Moguai fruit tea shop interior"
@@ -383,10 +319,6 @@
383
  "query_cn": "三峡大坝北岸纪念碑",
384
  "query_en": "Three Gorges Dam north bank monument"
385
  },
386
- {
387
- "query_cn": "宜昌观景平台团队合影",
388
- "query_en": "Yichang viewing platform group photo"
389
- },
390
  {
391
  "query_cn": "宜昌三峡大坝全景照片",
392
  "query_en": "Yichang Three Gorges Dam panorama"
@@ -395,10 +327,6 @@
395
  "query_cn": "三峡大坝晨雾中的重工业奇观",
396
  "query_en": "Three Gorges Dam in morning mist"
397
  },
398
- {
399
- "query_cn": "水坝的机械装置连绵至天际",
400
- "query_en": "dam machinery stretching to the horizon"
401
- },
402
  {
403
  "query_cn": "水果冷藏柜",
404
  "query_en": "fruit refrigeration display"
@@ -411,6 +339,10 @@
411
  "query_cn": "暴富厚切炒酸奶菜单拍照",
412
  "query_en": "Baofu thick-cut frozen yogurt menu photo"
413
  },
 
 
 
 
414
  {
415
  "query_cn": "摊主夹炒酸奶瞬间",
416
  "query_en": "vendor scooping frozen yogurt"
@@ -427,10 +359,6 @@
427
  "query_cn": "厚切炒酸奶扫码购买",
428
  "query_en": "scan QR to buy thick-cut frozen yogurt"
429
  },
430
- {
431
- "query_cn": "蒲记板面",
432
- "query_en": "Puji noodles"
433
- },
434
  {
435
  "query_cn": "街头炒酸奶价格",
436
  "query_en": "street frozen yogurt prices"
@@ -439,14 +367,6 @@
439
  "query_cn": "牛春花店内装修",
440
  "query_en": "Niu Chunhua shop interior"
441
  },
442
- {
443
- "query_cn": "牛春花门脸样式参考",
444
- "query_en": "Niu Chunhua storefront design reference"
445
- },
446
- {
447
- "query_cn": "餐厅卤味食材展示",
448
- "query_en": "restaurant marinated food display"
449
- },
450
  {
451
  "query_cn": "一头牛板面点餐体验",
452
  "query_en": "Yitou Noodles ordering experience"
@@ -459,10 +379,6 @@
459
  "query_cn": "小雪在秋千旁玩耍",
460
  "query_en": "Xiaoxue playing by the swing"
461
  },
462
- {
463
- "query_cn": "专注玩烟花的孩子",
464
- "query_en": "kid focused on sparklers"
465
- },
466
  {
467
  "query_cn": "一家四口湖边露营",
468
  "query_en": "family of four camping by the lake"
@@ -483,6 +399,10 @@
483
  "query_cn": "小雪尝试化妆的瞬间",
484
  "query_en": "Xiaoxue trying makeup"
485
  },
 
 
 
 
486
  {
487
  "query_cn": "军事展览 明明 合影",
488
  "query_en": "military exhibition photo with Mingming"
@@ -499,10 +419,6 @@
499
  "query_cn": "餐厅调料区布置",
500
  "query_en": "restaurant condiment area setup"
501
  },
502
- {
503
- "query_cn": "确认车钥匙细节",
504
- "query_en": "checking car key details"
505
- },
506
  {
507
  "query_cn": "检查汽车仪表盘状态",
508
  "query_en": "inspecting car dashboard"
@@ -515,10 +431,6 @@
515
  "query_cn": "售水机会员卡使用说明",
516
  "query_en": "water dispenser membership card instructions"
517
  },
518
- {
519
- "query_cn": "团队专注工作时刻",
520
- "query_en": "team focused at work"
521
- },
522
  {
523
  "query_cn": "显卡驱动故障排查",
524
  "query_en": "graphics card driver troubleshooting"
@@ -527,22 +439,18 @@
527
  "query_cn": "孩子生日许愿时刻",
528
  "query_en": "child making a birthday wish"
529
  },
530
- {
531
- "query_cn": "孕婴店促销活动记录",
532
- "query_en": "baby store promo event record"
533
- },
534
  {
535
  "query_cn": "核对货物包装箱编号",
536
  "query_en": "verifying package box numbers"
537
  },
538
- {
539
- "query_cn": "历史数据对比分析",
540
- "query_en": "historical data comparison analysis"
541
- },
542
  {
543
  "query_cn": "语音转写任务进展",
544
  "query_en": "voice transcription progress"
545
  },
 
 
 
 
546
  {
547
  "query_cn": "包装车间贴标作业",
548
  "query_en": "labeling in packaging workshop"
@@ -560,8 +468,8 @@
560
  "query_en": "adjust screen resolution settings"
561
  },
562
  {
563
- "query_cn": "三峡大坝黄昏观景",
564
- "query_en": "Three Gorges Dam sunset view"
565
  },
566
  {
567
  "query_cn": "新郎手持捧花",
@@ -572,8 +480,8 @@
572
  "query_en": "groom wedding speech on stage"
573
  },
574
  {
575
- "query_cn": "复古小火车亲子游",
576
- "query_en": "vintage train family trip"
577
  },
578
  {
579
  "query_cn": "婚礼现场两代人合影",
@@ -591,14 +499,18 @@
591
  "query_cn": "国航飞机 停机坪",
592
  "query_en": "Air China plane on tarmac"
593
  },
594
- {
595
- "query_cn": "越南长廊里我的游客照",
596
- "query_en": "my tourist photo in Vietnam corridor"
597
- },
598
  {
599
  "query_cn": "婚礼现场亲友交流",
600
  "query_en": "wedding guests chatting"
601
  },
 
 
 
 
 
 
 
 
602
  {
603
  "query_cn": "2018葆婴高峰会嘟嘟车宣传",
604
  "query_en": "2018 baby care summit tuk-tuk promo"
@@ -619,10 +531,6 @@
619
  "query_cn": "乘客与幼鹿近距离接触",
620
  "query_en": "passengers interacting with fawn"
621
  },
622
- {
623
- "query_cn": "清迈入境",
624
- "query_en": "Chiang Mai immigration"
625
- },
626
  {
627
  "query_cn": "车内禁止吸烟提醒",
628
  "query_en": "no smoking sign in car"
@@ -636,8 +544,8 @@
636
  "query_en": "wild boar on zoo road"
637
  },
638
  {
639
- "query_cn": "清迈动物园夜间部落表演",
640
- "query_en": "Chiang Mai zoo night tribal performance"
641
  },
642
  {
643
  "query_cn": "非洲象亚洲象对比",
@@ -655,22 +563,10 @@
655
  "query_cn": "清迈传统舞蹈演员",
656
  "query_en": "Chiang Mai traditional dancers"
657
  },
658
- {
659
- "query_cn": "清迈大棚餐厅",
660
- "query_en": "Chiang Mai greenhouse restaurant"
661
- },
662
  {
663
  "query_cn": "骑象过江",
664
  "query_en": "elephant crossing river"
665
  },
666
- {
667
- "query_cn": "儿童血液检验结果保存",
668
- "query_en": "child blood test results saved"
669
- },
670
- {
671
- "query_cn": "CRP结果",
672
- "query_en": "CRP results"
673
- },
674
  {
675
  "query_cn": "小乐的照片",
676
  "query_en": "Xiaole's photo"
@@ -692,12 +588,12 @@
692
  "query_en": "Xiaobao and Mingming's photo"
693
  },
694
  {
695
- "query_cn": "自己、大宝的照片",
696
- "query_en": "me, Xiaobao, and Dabao's photo"
697
  },
698
  {
699
- "query_cn": "大宝张晓莉、小宝、王建国的照片",
700
- "query_en": "Da Bao, Zhang Xiaoli, Xiao Bao, Wang Jianguo photos"
701
  },
702
  {
703
  "query_cn": "我、雪儿、明明的照片",
@@ -715,50 +611,22 @@
715
  "query_cn": "有小宝和母亲在一起的照片",
716
  "query_en": "photos of Xiao Bao with mom"
717
  },
718
- {
719
- "query_cn": "自己、小雪、小明的照片",
720
- "query_en": "me, Xiaoxue, Xiaoming photos"
721
- },
722
  {
723
  "query_cn": "有强子在内的照片",
724
  "query_en": "photos with Qiangzi"
725
  },
726
- {
727
- "query_cn": "明明、张晓莉、小乐、父亲的照片",
728
- "query_en": "Mingming, Zhang Xiaoli, Xiaole, dad photos"
729
- },
730
- {
731
- "query_cn": "有明明在内的照片",
732
- "query_en": "photos with Mingming"
733
- },
734
  {
735
  "query_cn": "我、老婆的照片",
736
  "query_en": "me, wife photos"
737
  },
738
  {
739
- "query_cn": "有父在内的照片",
740
- "query_en": "photos with dad"
741
- },
742
- {
743
- "query_cn": "有自己在内的照片",
744
- "query_en": "photos with me"
745
- },
746
- {
747
- "query_cn": "自己、小宝、小明的照片",
748
- "query_en": "me, Xiao Bao, Xiaoming photos"
749
- },
750
- {
751
- "query_cn": "有张晓莉在内的照片",
752
- "query_en": "photos with Zhang Xiaoli"
753
  },
754
  {
755
  "query_cn": "侄子的照片",
756
  "query_en": "nephew photos"
757
  },
758
- {
759
- "query_cn": "乐乐和小明的合照",
760
- "query_en": "Lele and Xiaoming group photo"
761
- },
762
  {
763
  "query_cn": "小明、张晓莉、乐乐、爸爸的照片",
764
  "query_en": "Xiaoming, Zhang Xiaoli, Lele, dad photos"
@@ -771,10 +639,6 @@
771
  "query_cn": "有乐乐在内的照片",
772
  "query_en": "photos with Lele"
773
  },
774
- {
775
- "query_cn": "有侄子在内的照片",
776
- "query_en": "photos with nephew"
777
- },
778
  {
779
  "query_cn": "雪儿的照片",
780
  "query_en": "Xue'er photos"
@@ -783,22 +647,10 @@
783
  "query_cn": "父亲的照片",
784
  "query_en": "dad photos"
785
  },
786
- {
787
- "query_cn": "妈的照片",
788
- "query_en": "mom photos"
789
- },
790
- {
791
- "query_cn": "大宝、妈、爸爸的照片",
792
- "query_en": "Da Bao, mom, dad photos"
793
- },
794
  {
795
  "query_cn": "有小宝在内的照片",
796
  "query_en": "photos with Xiao Bao"
797
  },
798
- {
799
- "query_cn": "有大宝和小雪在一起的照片",
800
- "query_en": "photos of Da Bao with Xiaoxue"
801
- },
802
  {
803
  "query_cn": "乐乐和自己的合照",
804
  "query_en": "Lele and me group photo"
@@ -807,22 +659,10 @@
807
  "query_cn": "自己、小乐的照片",
808
  "query_en": "me, Xiaole photos"
809
  },
810
- {
811
- "query_cn": "有小乐和自己在一起的照片",
812
- "query_en": "photos of Xiaole with me"
813
- },
814
- {
815
- "query_cn": "自己、雪儿、明明的照片",
816
- "query_en": "me, Xue'er, Mingming photos"
817
- },
818
  {
819
  "query_cn": "有爸爸在内的照片",
820
  "query_en": "photos with dad"
821
  },
822
- {
823
- "query_cn": "我、大宝、小乐的照片",
824
- "query_en": "me, Da Bao, Xiaole photos"
825
- },
826
  {
827
  "query_cn": "大宝和小雪的合照",
828
  "query_en": "Da Bao and Xiaoxue group photo"
@@ -835,10 +675,6 @@
835
  "query_cn": "有母亲在内的照片",
836
  "query_en": "photos with mom"
837
  },
838
- {
839
- "query_cn": "有明明和自己在一起的照片",
840
- "query_en": "photos of Mingming with me"
841
- },
842
  {
843
  "query_cn": "张晓莉的照片",
844
  "query_en": "Zhang Xiaoli photos"
@@ -847,10 +683,6 @@
847
  "query_cn": "我、小明、小宝的照片",
848
  "query_en": "me, Xiaoming, Xiao Bao photos"
849
  },
850
- {
851
- "query_cn": "大宝、妈、王建国的照片",
852
- "query_en": "Da Bao, mom, Wang Jianguo photos"
853
- },
854
  {
855
  "query_cn": "有大宝和妈在一起的照片",
856
  "query_en": "photos of Da Bao with mom"
@@ -863,26 +695,10 @@
863
  "query_cn": "在馆陶县的照片",
864
  "query_en": "photos in Guantao County"
865
  },
866
- {
867
- "query_cn": "嘉定区",
868
- "query_en": "Jiading District"
869
- },
870
  {
871
  "query_cn": "新村",
872
  "query_en": "Xincun"
873
  },
874
- {
875
- "query_cn": "在虹桥镇的照片",
876
- "query_en": "photos in Hongqiao Town"
877
- },
878
- {
879
- "query_cn": "在上海市浦东新区的照片",
880
- "query_en": "photos in Pudong, Shanghai"
881
- },
882
- {
883
- "query_cn": "在夷陵区的照片",
884
- "query_en": "photos in Yiling District"
885
- },
886
  {
887
  "query_cn": "山东省",
888
  "query_en": "Shandong photos"
@@ -919,10 +735,6 @@
919
  "query_cn": "天竺镇拍的",
920
  "query_en": "Tianzhu photos"
921
  },
922
- {
923
- "query_cn": "在广平县的照片",
924
- "query_en": "Guangping County photos"
925
- },
926
  {
927
  "query_cn": "柏乡县",
928
  "query_en": "Baixiang County pics"
@@ -931,10 +743,6 @@
931
  "query_cn": "新乡市",
932
  "query_en": "Xinxiang photos"
933
  },
934
- {
935
- "query_cn": "七宝",
936
- "query_en": "Qibao pics"
937
- },
938
  {
939
  "query_cn": "赵县",
940
  "query_en": "Zhao County photos"
@@ -947,14 +755,6 @@
947
  "query_cn": "在丛台区的照片",
948
  "query_en": "Congtai District photos"
949
  },
950
- {
951
- "query_cn": "澳门路",
952
- "query_en": "Macau Road pics"
953
- },
954
- {
955
- "query_cn": "安徽省",
956
- "query_en": "Anhui photos"
957
- },
958
  {
959
  "query_cn": "信都区",
960
  "query_en": "Xindu District pics"
@@ -967,14 +767,14 @@
967
  "query_cn": "普陀区",
968
  "query_en": "Putuo District pics"
969
  },
970
- {
971
- "query_cn": "秦皇岛市拍的",
972
- "query_en": "Qinhuangdao photos"
973
- },
974
  {
975
  "query_cn": "在北京市的照片",
976
  "query_en": "Beijing photos"
977
  },
 
 
 
 
978
  {
979
  "query_cn": "在邢台市的照片",
980
  "query_en": "Xingtai photos"
@@ -999,10 +799,6 @@
999
  "query_cn": "在裕华区拍的张晓莉、王建国的照片",
1000
  "query_en": "Yuhua District photos Zhang Xiaoli, Wang Jianguo"
1001
  },
1002
- {
1003
- "query_cn": "在永年拍的我、小乐的照片",
1004
- "query_en": "Yongnian photos me, Xiaole"
1005
- },
1006
  {
1007
  "query_cn": "2019年和爸爸的照片",
1008
  "query_en": "2019 photos with dad"
@@ -1011,10 +807,6 @@
1011
  "query_cn": "在河北省拍的有强子的照片",
1012
  "query_en": "Hebei photos with Qiangzi"
1013
  },
1014
- {
1015
- "query_cn": "在石家庄市拍的大宝、母亲的照片",
1016
- "query_en": "Shijiazhuang photos Dabao, mom"
1017
- },
1018
  {
1019
  "query_cn": "2018年9月 大宝的照片",
1020
  "query_en": "September 2018 photos with Dabao"
@@ -1035,10 +827,6 @@
1035
  "query_cn": "在普陀区拍的有自己的照片",
1036
  "query_en": "Putuo District photos of me"
1037
  },
1038
- {
1039
- "query_cn": "在复兴区拍的有小宝的照片",
1040
- "query_en": "Fuxing District photos Xiaobao"
1041
- },
1042
  {
1043
  "query_cn": "在限隆拍的自己、老婆的照片",
1044
  "query_en": "Xianlong photos me, wife"
@@ -1047,6 +835,10 @@
1047
  "query_cn": "在保定市拍的有自己的照片",
1048
  "query_en": "Baoding photos of me"
1049
  },
 
 
 
 
1050
  {
1051
  "query_cn": "2022年秋季大宝和我的合照",
1052
  "query_en": "Fall 2022 photos Dabao and me"
@@ -1063,14 +855,6 @@
1063
  "query_cn": "2018年12月和小乐的照片",
1064
  "query_en": "December 2018 photos with Xiaole"
1065
  },
1066
- {
1067
- "query_cn": "2017年中秋节的照片",
1068
- "query_en": "2017 Mid-Autumn Festival photos"
1069
- },
1070
- {
1071
- "query_cn": "过2022年国庆节",
1072
- "query_en": "2022 National Day"
1073
- },
1074
  {
1075
  "query_cn": "2022年清明节拍的",
1076
  "query_en": "2022 Qingming Festival"
@@ -1083,10 +867,6 @@
1083
  "query_cn": "2023年清明节拍的",
1084
  "query_en": "2023 Qingming Festival"
1085
  },
1086
- {
1087
- "query_cn": "2023年春节的照片",
1088
- "query_en": "2023 Chinese New Year photos"
1089
- },
1090
  {
1091
  "query_cn": "过2018年国庆节",
1092
  "query_en": "2018 National Day"
@@ -1123,10 +903,6 @@
1123
  "query_cn": "2018年10月16日的照片",
1124
  "query_en": "October 16, 2018 photos"
1125
  },
1126
- {
1127
- "query_cn": "2023年1月23日拍的",
1128
- "query_en": "January 23, 2023"
1129
- },
1130
  {
1131
  "query_cn": "2019年1月9日",
1132
  "query_en": "January 9, 2019"
@@ -1151,18 +927,10 @@
1151
  "query_cn": "2022年7月",
1152
  "query_en": "July 2022"
1153
  },
1154
- {
1155
- "query_cn": "2019年9月的照片",
1156
- "query_en": "September 2019 photos"
1157
- },
1158
  {
1159
  "query_cn": "2020年3月拍的",
1160
  "query_en": "March 2020"
1161
  },
1162
- {
1163
- "query_cn": "2020年2月",
1164
- "query_en": "February 2020"
1165
- },
1166
  {
1167
  "query_cn": "2023年3月",
1168
  "query_en": "March 2023"
@@ -1172,8 +940,8 @@
1172
  "query_en": "March 2022"
1173
  },
1174
  {
1175
- "query_cn": "2019夏季拍的",
1176
- "query_en": "summer 2019"
1177
  },
1178
  {
1179
  "query_cn": "2022年4月拍的",
@@ -1183,10 +951,6 @@
1183
  "query_cn": "2020年上半年拍的",
1184
  "query_en": "early 2020"
1185
  },
1186
- {
1187
- "query_cn": "2018年5月的照片",
1188
- "query_en": "May 2018 photos"
1189
- },
1190
  {
1191
  "query_cn": "2019年春季拍的",
1192
  "query_en": "spring 2019"
@@ -1207,10 +971,6 @@
1207
  "query_cn": "2022年春季",
1208
  "query_en": "spring 2022"
1209
  },
1210
- {
1211
- "query_cn": "野外与水牛互动",
1212
- "query_en": "wild buffalo interaction outdoors"
1213
- },
1214
  {
1215
  "query_cn": "水族馆海豚训练员喂食",
1216
  "query_en": "aquarium dolphin trainer feeding"
@@ -1219,10 +979,6 @@
1219
  "query_cn": "厨房三兄弟切洋葱比赛",
1220
  "query_en": "kitchen brothers onion cutting contest"
1221
  },
1222
- {
1223
- "query_cn": "给宝宝喂药用滴管",
1224
- "query_en": "baby medicine dropper feeding"
1225
- },
1226
  {
1227
  "query_cn": "三峡大坝北岸路灯夜景",
1228
  "query_en": "Three Gorges Dam north bank night lights"
@@ -1231,18 +987,10 @@
1231
  "query_cn": "水族馆海豚跃出水面",
1232
  "query_en": "aquarium dolphin jumping out of water"
1233
  },
1234
- {
1235
- "query_cn": "厨房三兄弟叠碗挑战",
1236
- "query_en": "kitchen brothers bowl stacking challenge"
1237
- },
1238
  {
1239
  "query_cn": "木勺搅拌蛋液慢动作",
1240
  "query_en": "wooden spoon stirring eggs slow motion"
1241
  },
1242
- {
1243
- "query_cn": "2014年4月 孩子们与卡通兔子互动",
1244
- "query_en": "April 2014 kids with cartoon bunny"
1245
- },
1246
  {
1247
  "query_cn": "孩子参加小军训, 9月",
1248
  "query_en": "kids mini military training, September"
@@ -1251,6 +999,10 @@
1251
  "query_cn": "2018年2月 孩子一个人喂鸟",
1252
  "query_en": "February 2018 kid feeding birds alone"
1253
  },
 
 
 
 
1254
  {
1255
  "query_cn": "在曼谷拍的 和老婆做泰国当地的水灯",
1256
  "query_en": "Bangkok with wife making Thai lanterns"
@@ -1296,12 +1048,8 @@
1296
  "query_en": "Shanghai feeding birds with kid"
1297
  },
1298
  {
1299
- "query_cn": "老爸潇洒跟雕塑坐一起, 7月份",
1300
- "query_en": "dad sitting cool with statue July"
1301
- },
1302
- {
1303
- "query_cn": "清朝官服表演秀, 2013",
1304
- "query_en": "Qing dynasty costume show 2013"
1305
  },
1306
  {
1307
  "query_cn": "动物园野猪走到马路上了 河北省",
@@ -1311,14 +1059,14 @@
1311
  "query_cn": "水坝的机械装置连绵至天际, 2012年旅游",
1312
  "query_en": "dam machinery stretching to horizon 2012 trip"
1313
  },
1314
- {
1315
- "query_cn": "在上海拍的 婚礼新郎台上致辞",
1316
- "query_en": "Shanghai groom wedding speech on stage"
1317
- },
1318
  {
1319
  "query_cn": "新人紧握婚纱裙摆 上海婚礼",
1320
  "query_en": "bride holding wedding dress train Shanghai"
1321
  },
 
 
 
 
1322
  {
1323
  "query_cn": "2020年2月 孩子展示玩具水果套装",
1324
  "query_en": "February 2020 kid toy fruit set"
@@ -1326,9 +1074,5 @@
1326
  {
1327
  "query_cn": "在湖北省拍的 婚礼现场和好友合影",
1328
  "query_en": "Hubei wedding group photo with friends"
1329
- },
1330
- {
1331
- "query_cn": "在湖北省拍的 复古小火车亲子游",
1332
- "query_en": "Hubei vintage train family trip"
1333
  }
1334
  ]
 
3
  "query_cn": "明明带着圆框眼镜",
4
  "query_en": "Mingming wearing round glasses"
5
  },
6
+ {
7
+ "query_cn": "颐和园游览路线规划",
8
+ "query_en": "Summer Palace tour route plan"
9
+ },
10
  {
11
  "query_cn": "明明在水幕墙前比V",
12
  "query_en": "Mingming posing with V sign by water curtain"
 
39
  "query_cn": "明明专注拼图的时刻",
40
  "query_en": "Mingming focused on puzzle"
41
  },
 
 
 
 
42
  {
43
  "query_cn": "火灾现场评估",
44
  "query_en": "fire scene assessment"
 
87
  "query_cn": "河北影视基地家庭游",
88
  "query_en": "Hebei film studio family trip"
89
  },
 
 
 
 
 
 
 
 
90
  {
91
  "query_cn": "室内游船",
92
  "query_en": "indoor boat ride"
 
112
  "query_en": "dad casually sitting with statue"
113
  },
114
  {
115
+ "query_cn": "妈妈的红围巾",
116
+ "query_en": "mom's red scarf"
117
  },
118
  {
119
  "query_cn": "乳腺癌病理报告",
 
151
  "query_cn": "家里养的小兔子",
152
  "query_en": "pet rabbit at home"
153
  },
154
+ {
155
+ "query_cn": "冬日街头孩子玩雪",
156
+ "query_en": "kids playing in snow on winter street"
157
+ },
158
  {
159
  "query_cn": "大榕树前的合影",
160
  "query_en": "group photo by big banyan tree"
 
179
  "query_cn": "自己穿黑色夹克的仪式感",
180
  "query_en": "me in black jacket formal vibe"
181
  },
 
 
 
 
182
  {
183
  "query_cn": "婚礼新人走红毯",
184
  "query_en": "wedding couple walking red carpet"
185
  },
 
 
 
 
186
  {
187
  "query_cn": "简易厨房做小煎饼",
188
  "query_en": "making mini pancakes in kitchen"
 
219
  "query_cn": "亲子采摘樱桃",
220
  "query_en": "parent-child cherry picking"
221
  },
 
 
 
 
 
 
 
 
222
  {
223
  "query_cn": "孩子边采摘边吃",
224
  "query_en": "kid eating while picking fruit"
 
227
  "query_cn": "孩子像青蛙一样趴在床上",
228
  "query_en": "kid lying on bed like a frog"
229
  },
 
 
 
 
230
  {
231
  "query_cn": "孩子骑小马",
232
  "query_en": "kid riding pony"
 
239
  "query_cn": "孩子和红色的熊大",
240
  "query_en": "kid with red Bear Big"
241
  },
 
 
 
 
242
  {
243
  "query_cn": "长颈恐龙模型",
244
  "query_en": "long-neck dinosaur model"
 
247
  "query_cn": "剑龙",
248
  "query_en": "stegosaurus"
249
  },
 
 
 
 
250
  {
251
  "query_cn": "亲子游乐场骑矮马",
252
  "query_en": "pony ride at family amusement park"
 
255
  "query_cn": "电饭煲里的黑暗美食",
256
  "query_en": "weird food in rice cooker"
257
  },
 
 
 
 
258
  {
259
  "query_cn": "烘焙面糊搅拌过程",
260
  "query_en": "mixing baking batter"
 
272
  "query_en": "handmade dinosaur buns"
273
  },
274
  {
275
+ "query_cn": "一床的娃娃",
276
+ "query_en": "bed full of dolls"
277
  },
278
  {
279
  "query_cn": "没头发的娃娃",
280
  "query_en": "bald doll"
281
  },
 
 
 
 
282
  {
283
  "query_cn": "商场里孩子跟艾莎的合照",
284
  "query_en": "kid with Elsa at mall"
285
  },
 
 
 
 
286
  {
287
  "query_cn": "绿色恐龙破蛋而出雕塑",
288
  "query_en": "green dinosaur hatching sculpture"
 
291
  "query_cn": "孔雀开屏",
292
  "query_en": "peacock spreading feathers"
293
  },
 
 
 
 
294
  {
295
  "query_cn": "满米酸奶小料自选",
296
  "query_en": "Manmi yogurt toppings"
297
  },
 
 
 
 
298
  {
299
  "query_cn": "手拿益生菌胶原蛋白肽",
300
  "query_en": "holding probiotic collagen peptides"
 
303
  "query_cn": "酸奶店菜单拍照",
304
  "query_en": "photo of yogurt shop menu"
305
  },
 
 
 
 
 
 
 
 
306
  {
307
  "query_cn": "厚切炒酸奶促销活动",
308
  "query_en": "thick-cut frozen yogurt promo"
 
311
  "query_cn": "打包切好的炒酸奶",
312
  "query_en": "packed frozen yogurt slices"
313
  },
 
 
 
 
314
  {
315
  "query_cn": "毛怪鲜果茶店内环境",
316
  "query_en": "Moguai fruit tea shop interior"
 
319
  "query_cn": "三峡大坝北岸纪念碑",
320
  "query_en": "Three Gorges Dam north bank monument"
321
  },
 
 
 
 
322
  {
323
  "query_cn": "宜昌三峡大坝全景照片",
324
  "query_en": "Yichang Three Gorges Dam panorama"
 
327
  "query_cn": "三峡大坝晨雾中的重工业奇观",
328
  "query_en": "Three Gorges Dam in morning mist"
329
  },
 
 
 
 
330
  {
331
  "query_cn": "水果冷藏柜",
332
  "query_en": "fruit refrigeration display"
 
339
  "query_cn": "暴富厚切炒酸奶菜单拍照",
340
  "query_en": "Baofu thick-cut frozen yogurt menu photo"
341
  },
342
+ {
343
+ "query_cn": "炒酸奶块冷柜陈列",
344
+ "query_en": "frozen yogurt chunks in freezer"
345
+ },
346
  {
347
  "query_cn": "摊主夹炒酸奶瞬间",
348
  "query_en": "vendor scooping frozen yogurt"
 
359
  "query_cn": "厚切炒酸奶扫码购买",
360
  "query_en": "scan QR to buy thick-cut frozen yogurt"
361
  },
 
 
 
 
362
  {
363
  "query_cn": "街头炒酸奶价格",
364
  "query_en": "street frozen yogurt prices"
 
367
  "query_cn": "牛春花店内装修",
368
  "query_en": "Niu Chunhua shop interior"
369
  },
 
 
 
 
 
 
 
 
370
  {
371
  "query_cn": "一头牛板面点餐体验",
372
  "query_en": "Yitou Noodles ordering experience"
 
379
  "query_cn": "小雪在秋千旁玩耍",
380
  "query_en": "Xiaoxue playing by the swing"
381
  },
 
 
 
 
382
  {
383
  "query_cn": "一家四口湖边露营",
384
  "query_en": "family of four camping by the lake"
 
399
  "query_cn": "小雪尝试化妆的瞬间",
400
  "query_en": "Xiaoxue trying makeup"
401
  },
402
+ {
403
+ "query_cn": "核销卡券的二维码",
404
+ "query_en": "QR code for coupon redemption"
405
+ },
406
  {
407
  "query_cn": "军事展览 明明 合影",
408
  "query_en": "military exhibition photo with Mingming"
 
419
  "query_cn": "餐厅调料区布置",
420
  "query_en": "restaurant condiment area setup"
421
  },
 
 
 
 
422
  {
423
  "query_cn": "检查汽车仪表盘状态",
424
  "query_en": "inspecting car dashboard"
 
431
  "query_cn": "售水机会员卡使用说明",
432
  "query_en": "water dispenser membership card instructions"
433
  },
 
 
 
 
434
  {
435
  "query_cn": "显卡驱动故障排查",
436
  "query_en": "graphics card driver troubleshooting"
 
439
  "query_cn": "孩子生日许愿时刻",
440
  "query_en": "child making a birthday wish"
441
  },
 
 
 
 
442
  {
443
  "query_cn": "核对货物包装箱编号",
444
  "query_en": "verifying package box numbers"
445
  },
 
 
 
 
446
  {
447
  "query_cn": "语音转写任务进展",
448
  "query_en": "voice transcription progress"
449
  },
450
+ {
451
+ "query_cn": "垃圾分类标准记录",
452
+ "query_en": "trash sorting standards record"
453
+ },
454
  {
455
  "query_cn": "包装车间贴标作业",
456
  "query_en": "labeling in packaging workshop"
 
468
  "query_en": "adjust screen resolution settings"
469
  },
470
  {
471
+ "query_cn": "满载汽车的渡轮",
472
+ "query_en": "ferry loaded with cars"
473
  },
474
  {
475
  "query_cn": "新郎手持捧花",
 
480
  "query_en": "groom wedding speech on stage"
481
  },
482
  {
483
+ "query_cn": "水族馆鲨鱼动��",
484
+ "query_en": "shark movements at aquarium"
485
  },
486
  {
487
  "query_cn": "婚礼现场两代人合影",
 
499
  "query_cn": "国航飞机 停机坪",
500
  "query_en": "Air China plane on tarmac"
501
  },
 
 
 
 
502
  {
503
  "query_cn": "婚礼现场亲友交流",
504
  "query_en": "wedding guests chatting"
505
  },
506
+ {
507
+ "query_cn": "妻子参加2018保婴峰会",
508
+ "query_en": "wife at 2018 baby care summit"
509
+ },
510
+ {
511
+ "query_cn": "夜晚机场湿润停机坪",
512
+ "query_en": "wet tarmac at night airport"
513
+ },
514
  {
515
  "query_cn": "2018葆婴高峰会嘟嘟车宣传",
516
  "query_en": "2018 baby care summit tuk-tuk promo"
 
531
  "query_cn": "乘客与幼鹿近距离接触",
532
  "query_en": "passengers interacting with fawn"
533
  },
 
 
 
 
534
  {
535
  "query_cn": "车内禁止吸烟提醒",
536
  "query_en": "no smoking sign in car"
 
544
  "query_en": "wild boar on zoo road"
545
  },
546
  {
547
+ "query_cn": "清迈森林骑象的照片 装裱起来",
548
+ "query_en": "framed photo of elephant ride in Chiang Mai forest"
549
  },
550
  {
551
  "query_cn": "非洲象亚洲象对比",
 
563
  "query_cn": "清迈传统舞蹈演员",
564
  "query_en": "Chiang Mai traditional dancers"
565
  },
 
 
 
 
566
  {
567
  "query_cn": "骑象过江",
568
  "query_en": "elephant crossing river"
569
  },
 
 
 
 
 
 
 
 
570
  {
571
  "query_cn": "小乐的照片",
572
  "query_en": "Xiaole's photo"
 
588
  "query_en": "Xiaobao and Mingming's photo"
589
  },
590
  {
591
+ "query_cn": "小母亲、爸爸的照片",
592
+ "query_en": "Xiaoming, mom, and dad's photo"
593
  },
594
  {
595
+ "query_cn": "自己、小宝、大宝的照片",
596
+ "query_en": "me, Xiaobao, and Dabao's photo"
597
  },
598
  {
599
  "query_cn": "我、雪儿、明明的照片",
 
611
  "query_cn": "有小宝和母亲在一起的照片",
612
  "query_en": "photos of Xiao Bao with mom"
613
  },
 
 
 
 
614
  {
615
  "query_cn": "有强子在内的照片",
616
  "query_en": "photos with Qiangzi"
617
  },
 
 
 
 
 
 
 
 
618
  {
619
  "query_cn": "我、老婆的照片",
620
  "query_en": "me, wife photos"
621
  },
622
  {
623
+ "query_cn": "亲的照片",
624
+ "query_en": "mom photos"
 
 
 
 
 
 
 
 
 
 
 
 
625
  },
626
  {
627
  "query_cn": "侄子的照片",
628
  "query_en": "nephew photos"
629
  },
 
 
 
 
630
  {
631
  "query_cn": "小明、张晓莉、乐乐、爸爸的照片",
632
  "query_en": "Xiaoming, Zhang Xiaoli, Lele, dad photos"
 
639
  "query_cn": "有乐乐在内的照片",
640
  "query_en": "photos with Lele"
641
  },
 
 
 
 
642
  {
643
  "query_cn": "雪儿的照片",
644
  "query_en": "Xue'er photos"
 
647
  "query_cn": "父亲的照片",
648
  "query_en": "dad photos"
649
  },
 
 
 
 
 
 
 
 
650
  {
651
  "query_cn": "有小宝在内的照片",
652
  "query_en": "photos with Xiao Bao"
653
  },
 
 
 
 
654
  {
655
  "query_cn": "乐乐和自己的合照",
656
  "query_en": "Lele and me group photo"
 
659
  "query_cn": "自己、小乐的照片",
660
  "query_en": "me, Xiaole photos"
661
  },
 
 
 
 
 
 
 
 
662
  {
663
  "query_cn": "有爸爸在内的照片",
664
  "query_en": "photos with dad"
665
  },
 
 
 
 
666
  {
667
  "query_cn": "大宝和小雪的合照",
668
  "query_en": "Da Bao and Xiaoxue group photo"
 
675
  "query_cn": "有母亲在内的照片",
676
  "query_en": "photos with mom"
677
  },
 
 
 
 
678
  {
679
  "query_cn": "张晓莉的照片",
680
  "query_en": "Zhang Xiaoli photos"
 
683
  "query_cn": "我、小明、小宝的照片",
684
  "query_en": "me, Xiaoming, Xiao Bao photos"
685
  },
 
 
 
 
686
  {
687
  "query_cn": "有大宝和妈在一起的照片",
688
  "query_en": "photos of Da Bao with mom"
 
695
  "query_cn": "在馆陶县的照片",
696
  "query_en": "photos in Guantao County"
697
  },
 
 
 
 
698
  {
699
  "query_cn": "新村",
700
  "query_en": "Xincun"
701
  },
 
 
 
 
 
 
 
 
 
 
 
 
702
  {
703
  "query_cn": "山东省",
704
  "query_en": "Shandong photos"
 
735
  "query_cn": "天竺镇拍的",
736
  "query_en": "Tianzhu photos"
737
  },
 
 
 
 
738
  {
739
  "query_cn": "柏乡县",
740
  "query_en": "Baixiang County pics"
 
743
  "query_cn": "新乡市",
744
  "query_en": "Xinxiang photos"
745
  },
 
 
 
 
746
  {
747
  "query_cn": "赵县",
748
  "query_en": "Zhao County photos"
 
755
  "query_cn": "在丛台区的照片",
756
  "query_en": "Congtai District photos"
757
  },
 
 
 
 
 
 
 
 
758
  {
759
  "query_cn": "信都区",
760
  "query_en": "Xindu District pics"
 
767
  "query_cn": "普陀区",
768
  "query_en": "Putuo District pics"
769
  },
 
 
 
 
770
  {
771
  "query_cn": "在北京市的照片",
772
  "query_en": "Beijing photos"
773
  },
774
+ {
775
+ "query_cn": "嘉兴拍的",
776
+ "query_en": "Jiaxing photos"
777
+ },
778
  {
779
  "query_cn": "在邢台市的照片",
780
  "query_en": "Xingtai photos"
 
799
  "query_cn": "在裕华区拍的张晓莉、王建国的照片",
800
  "query_en": "Yuhua District photos Zhang Xiaoli, Wang Jianguo"
801
  },
 
 
 
 
802
  {
803
  "query_cn": "2019年和爸爸的照片",
804
  "query_en": "2019 photos with dad"
 
807
  "query_cn": "在河北省拍的有强子的照片",
808
  "query_en": "Hebei photos with Qiangzi"
809
  },
 
 
 
 
810
  {
811
  "query_cn": "2018年9月 大宝的照片",
812
  "query_en": "September 2018 photos with Dabao"
 
827
  "query_cn": "在普陀区拍的有自己的照片",
828
  "query_en": "Putuo District photos of me"
829
  },
 
 
 
 
830
  {
831
  "query_cn": "在限隆拍的自己、老婆的照片",
832
  "query_en": "Xianlong photos me, wife"
 
835
  "query_cn": "在保定市拍的有自己的照片",
836
  "query_en": "Baoding photos of me"
837
  },
838
+ {
839
+ "query_cn": "2023年4月和小明的照片",
840
+ "query_en": "April 2023 photos with Xiaoming"
841
+ },
842
  {
843
  "query_cn": "2022年秋季大宝和我的合照",
844
  "query_en": "Fall 2022 photos Dabao and me"
 
855
  "query_cn": "2018年12月和小乐的照片",
856
  "query_en": "December 2018 photos with Xiaole"
857
  },
 
 
 
 
 
 
 
 
858
  {
859
  "query_cn": "2022年清明节拍的",
860
  "query_en": "2022 Qingming Festival"
 
867
  "query_cn": "2023年清明节拍的",
868
  "query_en": "2023 Qingming Festival"
869
  },
 
 
 
 
870
  {
871
  "query_cn": "过2018年国庆节",
872
  "query_en": "2018 National Day"
 
903
  "query_cn": "2018年10月16日的照片",
904
  "query_en": "October 16, 2018 photos"
905
  },
 
 
 
 
906
  {
907
  "query_cn": "2019年1月9日",
908
  "query_en": "January 9, 2019"
 
927
  "query_cn": "2022年7月",
928
  "query_en": "July 2022"
929
  },
 
 
 
 
930
  {
931
  "query_cn": "2020年3月拍的",
932
  "query_en": "March 2020"
933
  },
 
 
 
 
934
  {
935
  "query_cn": "2023年3月",
936
  "query_en": "March 2023"
 
940
  "query_en": "March 2022"
941
  },
942
  {
943
+ "query_cn": "201710月",
944
+ "query_en": "October 2017"
945
  },
946
  {
947
  "query_cn": "2022年4月拍的",
 
951
  "query_cn": "2020年上半年拍的",
952
  "query_en": "early 2020"
953
  },
 
 
 
 
954
  {
955
  "query_cn": "2019年春季拍的",
956
  "query_en": "spring 2019"
 
971
  "query_cn": "2022年春季",
972
  "query_en": "spring 2022"
973
  },
 
 
 
 
974
  {
975
  "query_cn": "水族馆海豚训练员喂食",
976
  "query_en": "aquarium dolphin trainer feeding"
 
979
  "query_cn": "厨房三兄弟切洋葱比赛",
980
  "query_en": "kitchen brothers onion cutting contest"
981
  },
 
 
 
 
982
  {
983
  "query_cn": "三峡大坝北岸路灯夜景",
984
  "query_en": "Three Gorges Dam north bank night lights"
 
987
  "query_cn": "水族馆海豚跃出水面",
988
  "query_en": "aquarium dolphin jumping out of water"
989
  },
 
 
 
 
990
  {
991
  "query_cn": "木勺搅拌蛋液慢动作",
992
  "query_en": "wooden spoon stirring eggs slow motion"
993
  },
 
 
 
 
994
  {
995
  "query_cn": "孩子参加小军训, 9月",
996
  "query_en": "kids mini military training, September"
 
999
  "query_cn": "2018年2月 孩子一个人喂鸟",
1000
  "query_en": "February 2018 kid feeding birds alone"
1001
  },
1002
+ {
1003
+ "query_cn": "2024年拍的 三峡水利工程模型",
1004
+ "query_en": "2024 Three Gorges Dam model"
1005
+ },
1006
  {
1007
  "query_cn": "在曼谷拍的 和老婆做泰国当地的水灯",
1008
  "query_en": "Bangkok with wife making Thai lanterns"
 
1048
  "query_en": "Shanghai feeding birds with kid"
1049
  },
1050
  {
1051
+ "query_cn": "婚礼现场亲友交流 湖北省",
1052
+ "query_en": "wedding family chatting Hubei"
 
 
 
 
1053
  },
1054
  {
1055
  "query_cn": "动物园野猪走到马路上了 河北省",
 
1059
  "query_cn": "水坝的机械装置连绵至天际, 2012年旅游",
1060
  "query_en": "dam machinery stretching to horizon 2012 trip"
1061
  },
 
 
 
 
1062
  {
1063
  "query_cn": "新人紧握婚纱裙摆 上海婚礼",
1064
  "query_en": "bride holding wedding dress train Shanghai"
1065
  },
1066
+ {
1067
+ "query_cn": "在湖北省拍的 办公环境整洁展示",
1068
+ "query_en": "Hubei clean office environment display"
1069
+ },
1070
  {
1071
  "query_cn": "2020年2月 孩子展示玩具水果套装",
1072
  "query_en": "February 2020 kid toy fruit set"
 
1074
  {
1075
  "query_cn": "在湖北省拍的 婚礼现场和好友合影",
1076
  "query_en": "Hubei wedding group photo with friends"
 
 
 
 
1077
  }
1078
  ]
data/validation/album1_validation.json ADDED
@@ -0,0 +1,1893 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "query_cn": "车底下的小猫",
4
+ "query_en": "cat under the car",
5
+ "ground_truth": [
6
+ "IMG_5970.JPG",
7
+ "IMG_7259.JPG"
8
+ ],
9
+ "ground_truth_count": 2,
10
+ "Location": "cognitive",
11
+ "Time": null,
12
+ "Person": null,
13
+ "Object": "cognitive",
14
+ "Concept": null,
15
+ "Genre": null,
16
+ "Source": "V"
17
+ },
18
+ {
19
+ "query_cn": "三姐妹都敬一束香",
20
+ "query_en": "three sisters offering incense",
21
+ "ground_truth": [
22
+ "IMG_4906.JPG"
23
+ ],
24
+ "ground_truth_count": 1,
25
+ "Location": null,
26
+ "Time": null,
27
+ "Person": "cognitive",
28
+ "Object": "cognitive",
29
+ "Concept": null,
30
+ "Genre": null,
31
+ "Source": "VF"
32
+ },
33
+ {
34
+ "query_cn": "龙华寺牌楼",
35
+ "query_en": "Longhua Temple archway",
36
+ "ground_truth": [],
37
+ "ground_truth_count": 0,
38
+ "Location": "fact",
39
+ "Time": null,
40
+ "Person": null,
41
+ "Object": null,
42
+ "Concept": null,
43
+ "Genre": null,
44
+ "Source": "V"
45
+ },
46
+ {
47
+ "query_cn": "和欣怡一起的洗手台自拍",
48
+ "query_en": "bathroom selfie with Xinyi",
49
+ "ground_truth": [
50
+ "IMG_5914.JPG",
51
+ "IMG_5916.JPG",
52
+ "IMG_5924.JPG",
53
+ "IMG_5926.JPG"
54
+ ],
55
+ "ground_truth_count": 4,
56
+ "Location": "cognitive",
57
+ "Time": null,
58
+ "Person": "cognitive",
59
+ "Object": null,
60
+ "Concept": null,
61
+ "Genre": "cognitive",
62
+ "Source": "VF"
63
+ },
64
+ {
65
+ "query_cn": "北京站候车大厅人群",
66
+ "query_en": "crowd in Beijing Station waiting hall",
67
+ "ground_truth": [
68
+ "IMG_1142.JPG",
69
+ "IMG_1143.JPG"
70
+ ],
71
+ "ground_truth_count": 2,
72
+ "Location": "fact",
73
+ "Time": null,
74
+ "Person": null,
75
+ "Object": "cognitive",
76
+ "Concept": null,
77
+ "Genre": null,
78
+ "Source": "VM"
79
+ },
80
+ {
81
+ "query_cn": "趵突泉游览",
82
+ "query_en": "Baotu Spring tour",
83
+ "ground_truth": [
84
+ "IMG_1191.JPG",
85
+ "IMG_1192.JPG",
86
+ "IMG_1193.JPG",
87
+ "IMG_1194.JPG",
88
+ "IMG_1195.JPG"
89
+ ],
90
+ "ground_truth_count": 5,
91
+ "Location": "cognitive",
92
+ "Time": null,
93
+ "Person": null,
94
+ "Object": null,
95
+ "Concept": null,
96
+ "Genre": null,
97
+ "Source": "VM"
98
+ },
99
+ {
100
+ "query_cn": "酷似小猪的藏品",
101
+ "query_en": "pig-like museum exhibit",
102
+ "ground_truth": [
103
+ "IMG_1350.JPG",
104
+ "IMG_1353.JPG",
105
+ "IMG_1369.JPG"
106
+ ],
107
+ "ground_truth_count": 3,
108
+ "Location": null,
109
+ "Time": null,
110
+ "Person": null,
111
+ "Object": "cognitive",
112
+ "Concept": null,
113
+ "Genre": null,
114
+ "Source": "V"
115
+ },
116
+ {
117
+ "query_cn": "青铜刀剑",
118
+ "query_en": "bronze swords and knives",
119
+ "ground_truth": [
120
+ "IMG_1357.JPG",
121
+ "IMG_1358.JPG"
122
+ ],
123
+ "ground_truth_count": 2,
124
+ "Location": null,
125
+ "Time": null,
126
+ "Person": null,
127
+ "Object": "fact",
128
+ "Concept": null,
129
+ "Genre": null,
130
+ "Source": "V"
131
+ },
132
+ {
133
+ "query_cn": "明代官员头饰工艺细节",
134
+ "query_en": "Ming Dynasty official headwear craftsmanship details",
135
+ "ground_truth": [
136
+ "IMG_1379.JPG"
137
+ ],
138
+ "ground_truth_count": 1,
139
+ "Location": null,
140
+ "Time": "cognitive",
141
+ "Person": null,
142
+ "Object": "cognitive",
143
+ "Concept": null,
144
+ "Genre": null,
145
+ "Source": "V"
146
+ },
147
+ {
148
+ "query_cn": "古代陶塑骑马雕像细节",
149
+ "query_en": "ancient ceramic horse sculpture details",
150
+ "ground_truth": [
151
+ "IMG_1365.JPG"
152
+ ],
153
+ "ground_truth_count": 1,
154
+ "Location": null,
155
+ "Time": "cognitive",
156
+ "Person": null,
157
+ "Object": "cognitive",
158
+ "Concept": null,
159
+ "Genre": null,
160
+ "Source": "V"
161
+ },
162
+ {
163
+ "query_cn": "绍兴古塔",
164
+ "query_en": "Shaoxing ancient tower",
165
+ "ground_truth": [
166
+ "IMG_6225.JPG"
167
+ ],
168
+ "ground_truth_count": 1,
169
+ "Location": "fact",
170
+ "Time": null,
171
+ "Person": null,
172
+ "Object": null,
173
+ "Concept": null,
174
+ "Genre": null,
175
+ "Source": "VM"
176
+ },
177
+ {
178
+ "query_cn": "台阶边的猫",
179
+ "query_en": "cat by the steps",
180
+ "ground_truth": [
181
+ "IMG_1044.JPG",
182
+ "IMG_1045.JPG",
183
+ "IMG_7974.JPG",
184
+ "IMG_7976.JPG",
185
+ "IMG_7981.JPG",
186
+ "IMG_9646.JPG",
187
+ "IMG_9652.JPG"
188
+ ],
189
+ "ground_truth_count": 7,
190
+ "Location": "cognitive",
191
+ "Time": null,
192
+ "Person": null,
193
+ "Object": "fact",
194
+ "Concept": null,
195
+ "Genre": null,
196
+ "Source": "V"
197
+ },
198
+ {
199
+ "query_cn": "杨公堤超绝摆拍",
200
+ "query_en": "Yang Gong Causeway posed photo",
201
+ "ground_truth": [
202
+ "IMG_1475.JPG"
203
+ ],
204
+ "ground_truth_count": 1,
205
+ "Location": "cognitive",
206
+ "Time": null,
207
+ "Person": null,
208
+ "Object": null,
209
+ "Concept": "cognitive",
210
+ "Genre": null,
211
+ "Source": "VM"
212
+ },
213
+ {
214
+ "query_cn": "猫咪自我梳理",
215
+ "query_en": "cat grooming itself",
216
+ "ground_truth": [
217
+ "IMG_1848.JPG",
218
+ "IMG_1849.JPG",
219
+ "IMG_1850.JPG",
220
+ "IMG_4824.JPG",
221
+ "IMG_5235.JPG",
222
+ "IMG_7203.JPG",
223
+ "IMG_9640.JPG",
224
+ "IMG_9644.JPG",
225
+ "IMG_9648.JPG"
226
+ ],
227
+ "ground_truth_count": 9,
228
+ "Location": null,
229
+ "Time": null,
230
+ "Person": null,
231
+ "Object": "cognitive",
232
+ "Concept": "cognitive",
233
+ "Genre": null,
234
+ "Source": "V"
235
+ },
236
+ {
237
+ "query_cn": "小猫睡觉",
238
+ "query_en": "kitten sleeping",
239
+ "ground_truth": [
240
+ "IMG_0031.JPG",
241
+ "IMG_0036.JPG",
242
+ "IMG_0042.JPG",
243
+ "IMG_0043.JPG",
244
+ "IMG_0058.JPG",
245
+ "IMG_0066.JPG",
246
+ "IMG_1544.JPG",
247
+ "IMG_5272.JPG",
248
+ "IMG_5323.JPG",
249
+ "IMG_5324.JPG",
250
+ "IMG_5700.JPG"
251
+ ],
252
+ "ground_truth_count": 11,
253
+ "Location": null,
254
+ "Time": null,
255
+ "Person": null,
256
+ "Object": "cognitive",
257
+ "Concept": "cognitive",
258
+ "Genre": null,
259
+ "Source": "V"
260
+ },
261
+ {
262
+ "query_cn": "贵阳夜晚步行街",
263
+ "query_en": "nighttime pedestrian street in Guiyang",
264
+ "ground_truth": [],
265
+ "ground_truth_count": 0,
266
+ "Location": "fact",
267
+ "Time": "cognitive",
268
+ "Person": null,
269
+ "Object": null,
270
+ "Concept": "cognitive",
271
+ "Genre": null,
272
+ "Source": "VM"
273
+ },
274
+ {
275
+ "query_cn": "贵阳玩的时候在居民区迷路了",
276
+ "query_en": "lost in a residential area while exploring Guiyang",
277
+ "ground_truth": [
278
+ "IMG_8226.JPG",
279
+ "IMG_8232.JPG",
280
+ "IMG_8252.JPG",
281
+ "IMG_8264.JPG",
282
+ "IMG_8269.JPG",
283
+ "IMG_8280.JPG",
284
+ "IMG_8281.JPG",
285
+ "IMG_8322.JPG",
286
+ "IMG_8340.JPG",
287
+ "IMG_8341.JPG",
288
+ "IMG_8342.JPG",
289
+ "IMG_8343.JPG",
290
+ "IMG_8362.JPG",
291
+ "IMG_8436.JPG",
292
+ "IMG_8437.JPG",
293
+ "IMG_8440.JPG",
294
+ "IMG_8447.JPG",
295
+ "IMG_9214.JPG",
296
+ "IMG_9298.JPG"
297
+ ],
298
+ "ground_truth_count": 19,
299
+ "Location": "cognitive",
300
+ "Time": null,
301
+ "Person": null,
302
+ "Object": null,
303
+ "Concept": null,
304
+ "Genre": null,
305
+ "Source": "VM"
306
+ },
307
+ {
308
+ "query_cn": "夜晚和朋友聊天的瞬间",
309
+ "query_en": "chatting with friends at night",
310
+ "ground_truth": [
311
+ "IMG_5126.JPG",
312
+ "IMG_5127.JPG",
313
+ "IMG_7139.JPG",
314
+ "IMG_7250.JPG",
315
+ "IMG_7251.JPG"
316
+ ],
317
+ "ground_truth_count": 5,
318
+ "Location": null,
319
+ "Time": "cognitive",
320
+ "Person": "cognitive",
321
+ "Object": null,
322
+ "Concept": "cognitive",
323
+ "Genre": null,
324
+ "Source": "VF"
325
+ },
326
+ {
327
+ "query_cn": "夜晚和浩哥晨阳探访老城区",
328
+ "query_en": "night visit to the old town with Hao and Chenyang",
329
+ "ground_truth": [
330
+ "IMG_8324.JPG",
331
+ "IMG_8328.JPG",
332
+ "IMG_8349.JPG",
333
+ "IMG_8350.JPG",
334
+ "IMG_8425.JPG",
335
+ "IMG_8427.JPG",
336
+ "IMG_8436.JPG",
337
+ "IMG_8440.JPG",
338
+ "IMG_8446.JPG",
339
+ "IMG_8447.JPG",
340
+ "IMG_8450.JPG"
341
+ ],
342
+ "ground_truth_count": 11,
343
+ "Location": "cognitive",
344
+ "Time": "cognitive",
345
+ "Person": "cognitive",
346
+ "Object": null,
347
+ "Concept": null,
348
+ "Genre": null,
349
+ "Source": "VMF"
350
+ },
351
+ {
352
+ "query_cn": "遵义酒店里吃外卖",
353
+ "query_en": "eating takeout in a Zunyi hotel",
354
+ "ground_truth": [
355
+ "IMG_8730.JPG"
356
+ ],
357
+ "ground_truth_count": 1,
358
+ "Location": "cognitive",
359
+ "Time": null,
360
+ "Person": null,
361
+ "Object": "cognitive",
362
+ "Concept": null,
363
+ "Genre": null,
364
+ "Source": "VM"
365
+ },
366
+ {
367
+ "query_cn": "遵义住的酒店房间",
368
+ "query_en": "hotel room in Zunyi",
369
+ "ground_truth": [
370
+ "IMG_8731.JPG",
371
+ "IMG_8764.JPG",
372
+ "IMG_8982 2.JPG",
373
+ "IMG_8983.JPG",
374
+ "IMG_8986.JPG",
375
+ "IMG_8988.JPG",
376
+ "IMG_8989.JPG",
377
+ "IMG_8994.JPG",
378
+ "IMG_8996.JPG",
379
+ "IMG_8997.JPG",
380
+ "IMG_8998.JPG",
381
+ "IMG_9003.JPG",
382
+ "IMG_9005.JPG",
383
+ "IMG_9006.JPG",
384
+ "IMG_9007.JPG",
385
+ "IMG_9015.JPG",
386
+ "IMG_9029.JPG",
387
+ "IMG_9056.JPG",
388
+ "IMG_9064.JPG",
389
+ "IMG_9081.JPG"
390
+ ],
391
+ "ground_truth_count": 20,
392
+ "Location": "cognitive",
393
+ "Time": null,
394
+ "Person": null,
395
+ "Object": null,
396
+ "Concept": null,
397
+ "Genre": null,
398
+ "Source": "VM"
399
+ },
400
+ {
401
+ "query_cn": "岩洞探险",
402
+ "query_en": "cave exploration",
403
+ "ground_truth": [
404
+ "IMG_0798.JPG",
405
+ "IMG_8817.JPG",
406
+ "IMG_8870.JPG",
407
+ "IMG_8871.JPG"
408
+ ],
409
+ "ground_truth_count": 4,
410
+ "Location": "cognitive",
411
+ "Time": null,
412
+ "Person": null,
413
+ "Object": null,
414
+ "Concept": null,
415
+ "Genre": null,
416
+ "Source": "V"
417
+ },
418
+ {
419
+ "query_cn": "晨阳冲进我房间",
420
+ "query_en": "Chenyang barging into my room",
421
+ "ground_truth": [
422
+ "IMG_8996.JPG",
423
+ "IMG_8997.JPG"
424
+ ],
425
+ "ground_truth_count": 2,
426
+ "Location": "cognitive",
427
+ "Time": null,
428
+ "Person": "cognitive",
429
+ "Object": null,
430
+ "Concept": null,
431
+ "Genre": null,
432
+ "Source": "VF"
433
+ },
434
+ {
435
+ "query_cn": "苟坝会议地图",
436
+ "query_en": "map of Gouba Conference",
437
+ "ground_truth": [
438
+ "IMG_9124.JPG"
439
+ ],
440
+ "ground_truth_count": 1,
441
+ "Location": "cognitive",
442
+ "Time": null,
443
+ "Person": null,
444
+ "Object": null,
445
+ "Concept": null,
446
+ "Genre": null,
447
+ "Source": "V"
448
+ },
449
+ {
450
+ "query_cn": "白猫安静趴着的瞬间",
451
+ "query_en": "white cat quietly lying down",
452
+ "ground_truth": [
453
+ "IMG_0015.JPG",
454
+ "IMG_0016.JPG",
455
+ "IMG_0031.JPG",
456
+ "IMG_0032_1.JPG",
457
+ "IMG_0036.JPG",
458
+ "IMG_0043.JPG",
459
+ "IMG_0049.JPG",
460
+ "IMG_0059.JPG",
461
+ "IMG_1848.JPG",
462
+ "IMG_4824.JPG",
463
+ "IMG_5324.JPG",
464
+ "IMG_5700.JPG",
465
+ "IMG_7203.JPG"
466
+ ],
467
+ "ground_truth_count": 13,
468
+ "Location": null,
469
+ "Time": null,
470
+ "Person": null,
471
+ "Object": "cognitive",
472
+ "Concept": null,
473
+ "Genre": null,
474
+ "Source": "V"
475
+ },
476
+ {
477
+ "query_cn": "和晨阳做手工",
478
+ "query_en": "making crafts with Chenyang",
479
+ "ground_truth": [
480
+ "IMG_1325.JPG"
481
+ ],
482
+ "ground_truth_count": 1,
483
+ "Location": null,
484
+ "Time": null,
485
+ "Person": "cognitive",
486
+ "Object": "cognitive",
487
+ "Concept": null,
488
+ "Genre": null,
489
+ "Source": "VF"
490
+ },
491
+ {
492
+ "query_cn": "上海迪士尼疯狂动物城最佳警官海报",
493
+ "query_en": "Zootopia best officer poster at Shanghai Disneyland",
494
+ "ground_truth": [
495
+ "IMG_1997.JPG"
496
+ ],
497
+ "ground_truth_count": 1,
498
+ "Location": "fact",
499
+ "Time": null,
500
+ "Person": null,
501
+ "Object": "cognitive",
502
+ "Concept": null,
503
+ "Genre": null,
504
+ "Source": "V"
505
+ },
506
+ {
507
+ "query_cn": "豹子警官",
508
+ "query_en": "Officer Bogo",
509
+ "ground_truth": [],
510
+ "ground_truth_count": 0,
511
+ "Location": null,
512
+ "Time": null,
513
+ "Person": null,
514
+ "Object": "cognitive",
515
+ "Concept": null,
516
+ "Genre": null,
517
+ "Source": "V"
518
+ },
519
+ {
520
+ "query_cn": "绍兴北站",
521
+ "query_en": "Shaoxing North Station",
522
+ "ground_truth": [
523
+ "IMG_2182.JPG",
524
+ "IMG_2183.JPG"
525
+ ],
526
+ "ground_truth_count": 2,
527
+ "Location": "fact",
528
+ "Time": null,
529
+ "Person": null,
530
+ "Object": null,
531
+ "Concept": null,
532
+ "Genre": null,
533
+ "Source": "M"
534
+ },
535
+ {
536
+ "query_cn": "寝室床上躺",
537
+ "query_en": "lying on the dorm bed",
538
+ "ground_truth": [
539
+ "IMG_3336.JPG"
540
+ ],
541
+ "ground_truth_count": 1,
542
+ "Location": "cognitive",
543
+ "Time": null,
544
+ "Person": null,
545
+ "Object": null,
546
+ "Concept": null,
547
+ "Genre": null,
548
+ "Source": "V"
549
+ },
550
+ {
551
+ "query_cn": "迪士尼项目结束后的系统抓拍",
552
+ "query_en": "Disney ride system-captured photo",
553
+ "ground_truth": [
554
+ "IMG_2070.JPG"
555
+ ],
556
+ "ground_truth_count": 1,
557
+ "Location": "cognitive",
558
+ "Time": null,
559
+ "Person": null,
560
+ "Object": "cognitive",
561
+ "Concept": null,
562
+ "Genre": "fact",
563
+ "Source": "VM"
564
+ },
565
+ {
566
+ "query_cn": "厕所自拍",
567
+ "query_en": "bathroom selfie",
568
+ "ground_truth": [
569
+ "IMG_4282.JPG",
570
+ "IMG_5914.JPG",
571
+ "IMG_5916.JPG",
572
+ "IMG_5924.JPG",
573
+ "IMG_5926.JPG",
574
+ "IMG_8983 2.JPG",
575
+ "IMG_9572.JPG",
576
+ "IMG_9573.JPG"
577
+ ],
578
+ "ground_truth_count": 8,
579
+ "Location": "cognitive",
580
+ "Time": null,
581
+ "Person": null,
582
+ "Object": null,
583
+ "Concept": null,
584
+ "Genre": null,
585
+ "Source": "V"
586
+ },
587
+ {
588
+ "query_cn": "军训时候,和晓彤、宁宁、欣欣的四人合照",
589
+ "query_en": "group photo with Xiaotong, Ningning, and Xinxin during military training",
590
+ "ground_truth": [
591
+ "IMG_5071.JPG",
592
+ "IMG_5072.JPG",
593
+ "IMG_5077.JPG",
594
+ "IMG_5078.JPG",
595
+ "IMG_5079.JPG",
596
+ "IMG_5082.JPG",
597
+ "IMG_5083.JPG"
598
+ ],
599
+ "ground_truth_count": 7,
600
+ "Location": "cognitive",
601
+ "Time": null,
602
+ "Person": "cognitive",
603
+ "Object": null,
604
+ "Concept": null,
605
+ "Genre": null,
606
+ "Source": "VF"
607
+ },
608
+ {
609
+ "query_cn": "学校食堂的炸鸡饭",
610
+ "query_en": "fried chicken rice at the school cafeteria",
611
+ "ground_truth": [
612
+ "IMG_4093.JPG"
613
+ ],
614
+ "ground_truth_count": 1,
615
+ "Location": "cognitive",
616
+ "Time": null,
617
+ "Person": null,
618
+ "Object": "cognitive",
619
+ "Concept": null,
620
+ "Genre": null,
621
+ "Source": "V"
622
+ },
623
+ {
624
+ "query_cn": "我和晓彤",
625
+ "query_en": "me and Xiaotong",
626
+ "ground_truth": [
627
+ "IMG_1517.JPG",
628
+ "IMG_3060.JPG",
629
+ "IMG_3207.JPG",
630
+ "IMG_4926.JPG",
631
+ "IMG_5025.JPG",
632
+ "IMG_5026.JPG",
633
+ "IMG_5031.JPG",
634
+ "IMG_5086.JPG",
635
+ "IMG_6674.JPG",
636
+ "IMG_7046.JPG",
637
+ "IMG_7250.JPG",
638
+ "IMG_7251.JPG",
639
+ "IMG_8617.JPG",
640
+ "IMG_8618.JPG",
641
+ "IMG_9899.JPG"
642
+ ],
643
+ "ground_truth_count": 15,
644
+ "Location": null,
645
+ "Time": null,
646
+ "Person": "cognitive",
647
+ "Object": null,
648
+ "Concept": null,
649
+ "Genre": null,
650
+ "Source": "VF"
651
+ },
652
+ {
653
+ "query_cn": "我按着狗头",
654
+ "query_en": "me holding a dog's head",
655
+ "ground_truth": [
656
+ "IMG_5261.JPG",
657
+ "IMG_5264.JPG"
658
+ ],
659
+ "ground_truth_count": 2,
660
+ "Location": null,
661
+ "Time": null,
662
+ "Person": "cognitive",
663
+ "Object": "cognitive",
664
+ "Concept": null,
665
+ "Genre": null,
666
+ "Source": "V"
667
+ },
668
+ {
669
+ "query_cn": "高空云层",
670
+ "query_en": "clouds from high altitude",
671
+ "ground_truth": [
672
+ "IMG_9170.JPG",
673
+ "IMG_9172.JPG"
674
+ ],
675
+ "ground_truth_count": 2,
676
+ "Location": "cognitive",
677
+ "Time": null,
678
+ "Person": null,
679
+ "Object": "fact",
680
+ "Concept": null,
681
+ "Genre": null,
682
+ "Source": "V"
683
+ },
684
+ {
685
+ "query_cn": "玳瑁猫坐着",
686
+ "query_en": "tortoiseshell cat sitting",
687
+ "ground_truth": [
688
+ "IMG_5699.JPG"
689
+ ],
690
+ "ground_truth_count": 1,
691
+ "Location": null,
692
+ "Time": null,
693
+ "Person": null,
694
+ "Object": "fact",
695
+ "Concept": null,
696
+ "Genre": null,
697
+ "Source": "V"
698
+ },
699
+ {
700
+ "query_cn": "金黄粉红烟花",
701
+ "query_en": "gold and pink fireworks",
702
+ "ground_truth": [
703
+ "IMG_6100.JPG",
704
+ "IMG_6102.JPG",
705
+ "IMG_6106.JPG"
706
+ ],
707
+ "ground_truth_count": 3,
708
+ "Location": null,
709
+ "Time": null,
710
+ "Person": null,
711
+ "Object": "fact",
712
+ "Concept": null,
713
+ "Genre": null,
714
+ "Source": "V"
715
+ },
716
+ {
717
+ "query_cn": "车上一起听歌",
718
+ "query_en": "listening to music together in the car",
719
+ "ground_truth": [
720
+ "FullSizeRender 10.JPG",
721
+ "FullSizeRender 11.JPG"
722
+ ],
723
+ "ground_truth_count": 2,
724
+ "Location": "cognitive",
725
+ "Time": null,
726
+ "Person": "cognitive",
727
+ "Object": null,
728
+ "Concept": null,
729
+ "Genre": null,
730
+ "Source": "VM"
731
+ },
732
+ {
733
+ "query_cn": "深圳的包容归属感标语",
734
+ "query_en": "Shenzhen slogan about inclusivity and belonging",
735
+ "ground_truth": [
736
+ "IMG_5654.JPG"
737
+ ],
738
+ "ground_truth_count": 1,
739
+ "Location": "fact",
740
+ "Time": null,
741
+ "Person": null,
742
+ "Object": null,
743
+ "Concept": "cognitive",
744
+ "Genre": null,
745
+ "Source": "VM"
746
+ },
747
+ {
748
+ "query_cn": "光影很美的猫咪侧卧",
749
+ "query_en": "beautifully lit cat lying sideways",
750
+ "ground_truth": [
751
+ "IMG_0063.JPG"
752
+ ],
753
+ "ground_truth_count": 1,
754
+ "Location": null,
755
+ "Time": null,
756
+ "Person": null,
757
+ "Object": "fact",
758
+ "Concept": "cognitive",
759
+ "Genre": null,
760
+ "Source": "V"
761
+ },
762
+ {
763
+ "query_cn": "深圳湾沙滩上拍的男友",
764
+ "query_en": "boyfriend on the beach at Shenzhen Bay",
765
+ "ground_truth": [
766
+ "IMG_5740.JPG",
767
+ "IMG_5747.JPG",
768
+ "IMG_6190.JPG",
769
+ "IMG_6211.JPG",
770
+ "IMG_6223.JPG",
771
+ "IMG_6228.JPG"
772
+ ],
773
+ "ground_truth_count": 6,
774
+ "Location": "fact",
775
+ "Time": null,
776
+ "Person": "cognitive",
777
+ "Object": null,
778
+ "Concept": null,
779
+ "Genre": null,
780
+ "Source": "VMF"
781
+ },
782
+ {
783
+ "query_cn": "晨阳在亲水平台边蹲着",
784
+ "query_en": "Chen Yang was squatting at the edge of the promenade",
785
+ "ground_truth": [
786
+ "IMG_5811.JPG"
787
+ ],
788
+ "ground_truth_count": 1,
789
+ "Location": "cognitive",
790
+ "Time": null,
791
+ "Person": "fact",
792
+ "Object": null,
793
+ "Concept": null,
794
+ "Genre": null,
795
+ "Source": "VMF"
796
+ },
797
+ {
798
+ "query_cn": "我的海边复古风打扮",
799
+ "query_en": "my vintage seaside outfit",
800
+ "ground_truth": [
801
+ "IMG_6437.JPG",
802
+ "IMG_6438.JPG"
803
+ ],
804
+ "ground_truth_count": 2,
805
+ "Location": "cognitive",
806
+ "Time": null,
807
+ "Person": "cognitive",
808
+ "Object": null,
809
+ "Concept": "cognitive",
810
+ "Genre": null,
811
+ "Source": "VMF"
812
+ },
813
+ {
814
+ "query_cn": "冷蓝色海滩",
815
+ "query_en": "cold blue beach",
816
+ "ground_truth": [
817
+ "IMG_6437.JPG",
818
+ "IMG_6438.JPG",
819
+ "IMG_6457.JPG",
820
+ "IMG_6458.JPG"
821
+ ],
822
+ "ground_truth_count": 4,
823
+ "Location": "cognitive",
824
+ "Time": null,
825
+ "Person": null,
826
+ "Object": null,
827
+ "Concept": "cognitive",
828
+ "Genre": null,
829
+ "Source": "V"
830
+ },
831
+ {
832
+ "query_cn": "镜子前拍穿搭记录",
833
+ "query_en": "mirror selfie of my outfit",
834
+ "ground_truth": [
835
+ "IMG_2600.JPG",
836
+ "IMG_2602.JPG",
837
+ "IMG_2611.JPG",
838
+ "IMG_2612.JPG",
839
+ "IMG_3002.JPG",
840
+ "IMG_3006.JPG",
841
+ "IMG_5108.JPG",
842
+ "IMG_5110.JPG",
843
+ "IMG_5123.JPG",
844
+ "IMG_5124.JPG",
845
+ "IMG_5215.JPG",
846
+ "IMG_5531.JPG",
847
+ "IMG_5914.JPG",
848
+ "IMG_5924.JPG",
849
+ "IMG_5926.JPG",
850
+ "IMG_8426.JPG",
851
+ "IMG_8427 2.JPG",
852
+ "IMG_8434.JPG",
853
+ "IMG_8435.JPG",
854
+ "IMG_8542.JPG",
855
+ "IMG_8637.JPG",
856
+ "IMG_9572.JPG",
857
+ "IMG_9573.JPG"
858
+ ],
859
+ "ground_truth_count": 23,
860
+ "Location": null,
861
+ "Time": null,
862
+ "Person": "cognitive",
863
+ "Object": null,
864
+ "Concept": null,
865
+ "Genre": "cognitive",
866
+ "Source": "V"
867
+ },
868
+ {
869
+ "query_cn": "车里和晓彤的合影",
870
+ "query_en": "car selfie with Xiaotong",
871
+ "ground_truth": [
872
+ "IMG_8617.JPG",
873
+ "IMG_8618.JPG"
874
+ ],
875
+ "ground_truth_count": 2,
876
+ "Location": "cognitive",
877
+ "Time": null,
878
+ "Person": "cognitive",
879
+ "Object": null,
880
+ "Concept": null,
881
+ "Genre": null,
882
+ "Source": "VMF"
883
+ },
884
+ {
885
+ "query_cn": "白猫穿红衣",
886
+ "query_en": "white cat in red clothes",
887
+ "ground_truth": [
888
+ "IMG_0054.JPG"
889
+ ],
890
+ "ground_truth_count": 1,
891
+ "Location": null,
892
+ "Time": null,
893
+ "Person": null,
894
+ "Object": "cognitive",
895
+ "Concept": null,
896
+ "Genre": null,
897
+ "Source": "V"
898
+ },
899
+ {
900
+ "query_cn": "开车经过收费站",
901
+ "query_en": "driving through a toll booth",
902
+ "ground_truth": [
903
+ "IMG_3003.JPG",
904
+ "IMG_9753.JPG"
905
+ ],
906
+ "ground_truth_count": 2,
907
+ "Location": "cognitive",
908
+ "Time": null,
909
+ "Person": null,
910
+ "Object": null,
911
+ "Concept": null,
912
+ "Genre": null,
913
+ "Source": "VM"
914
+ },
915
+ {
916
+ "query_cn": "运动会的天猫淘宝吉祥物",
917
+ "query_en": "Taobao and Tmall mascots at the sports day",
918
+ "ground_truth": [
919
+ "IMG_9771.JPG",
920
+ "IMG_9773.JPG"
921
+ ],
922
+ "ground_truth_count": 2,
923
+ "Location": "cognitive",
924
+ "Time": null,
925
+ "Person": null,
926
+ "Object": "cognitive",
927
+ "Concept": null,
928
+ "Genre": null,
929
+ "Source": "V"
930
+ },
931
+ {
932
+ "query_cn": "校园集市拍到的熊",
933
+ "query_en": "bear spotted at the campus market",
934
+ "ground_truth": [
935
+ "IMG_0412.JPG"
936
+ ],
937
+ "ground_truth_count": 1,
938
+ "Location": "cognitive",
939
+ "Time": null,
940
+ "Person": null,
941
+ "Object": "cognitive",
942
+ "Concept": null,
943
+ "Genre": null,
944
+ "Source": "VM"
945
+ },
946
+ {
947
+ "query_cn": "寝室吃的红油麻辣烫",
948
+ "query_en": "spicy hotpot in the dorm",
949
+ "ground_truth": [
950
+ "IMG_0384.JPG"
951
+ ],
952
+ "ground_truth_count": 1,
953
+ "Location": "cognitive",
954
+ "Time": null,
955
+ "Person": null,
956
+ "Object": "cognitive",
957
+ "Concept": null,
958
+ "Genre": null,
959
+ "Source": "V"
960
+ },
961
+ {
962
+ "query_cn": "拍到浩哥运动会出场",
963
+ "query_en": "Hao at the sports event entrance",
964
+ "ground_truth": [
965
+ "IMG_9758.JPG",
966
+ "IMG_9759.JPG",
967
+ "IMG_9762.JPG",
968
+ "IMG_9763.JPG",
969
+ "IMG_9764.JPG",
970
+ "IMG_9767.JPG",
971
+ "IMG_9768.JPG",
972
+ "IMG_9769.JPG",
973
+ "IMG_9770.JPG",
974
+ "IMG_9776.JPG",
975
+ "IMG_9777.JPG",
976
+ "IMG_9778.JPG",
977
+ "IMG_9779.JPG",
978
+ "IMG_9780.JPG",
979
+ "IMG_9781.JPG",
980
+ "IMG_9782.JPG"
981
+ ],
982
+ "ground_truth_count": 16,
983
+ "Location": "cognitive",
984
+ "Time": null,
985
+ "Person": "fact",
986
+ "Object": null,
987
+ "Concept": null,
988
+ "Genre": null,
989
+ "Source": "VMF"
990
+ },
991
+ {
992
+ "query_cn": "晨阳怼脸照",
993
+ "query_en": "close-up of Chenyang",
994
+ "ground_truth": [
995
+ "IMG_0551.JPG",
996
+ "IMG_0553.JPG",
997
+ "IMG_2960.JPG",
998
+ "IMG_3123.JPG",
999
+ "IMG_3124.JPG",
1000
+ "IMG_3125.JPG",
1001
+ "IMG_4443 2.JPG",
1002
+ "IMG_4444.JPG",
1003
+ "IMG_4497.JPG",
1004
+ "IMG_4498.JPG",
1005
+ "IMG_4499.JPG",
1006
+ "IMG_9618.JPG"
1007
+ ],
1008
+ "ground_truth_count": 12,
1009
+ "Location": null,
1010
+ "Time": null,
1011
+ "Person": "fact",
1012
+ "Object": null,
1013
+ "Concept": null,
1014
+ "Genre": null,
1015
+ "Source": "VF"
1016
+ },
1017
+ {
1018
+ "query_cn": "夜晚晨阳志浩争抢手机",
1019
+ "query_en": "Chenyang and Zhihao fighting over a phone at night",
1020
+ "ground_truth": [
1021
+ "IMG_0554.JPG",
1022
+ "IMG_0558.JPG",
1023
+ "IMG_0561.JPG"
1024
+ ],
1025
+ "ground_truth_count": 3,
1026
+ "Location": "cognitive",
1027
+ "Time": "cognitive",
1028
+ "Person": "fact",
1029
+ "Object": null,
1030
+ "Concept": null,
1031
+ "Genre": null,
1032
+ "Source": "VF"
1033
+ },
1034
+ {
1035
+ "query_cn": "厨房准备食材",
1036
+ "query_en": "preparing ingredients in the kitchen",
1037
+ "ground_truth": [
1038
+ "IMG_0760.JPG",
1039
+ "IMG_0761.JPG",
1040
+ "IMG_0770.JPG",
1041
+ "IMG_0780.JPG",
1042
+ "IMG_4402.JPG"
1043
+ ],
1044
+ "ground_truth_count": 5,
1045
+ "Location": "cognitive",
1046
+ "Time": null,
1047
+ "Person": null,
1048
+ "Object": "cognitive",
1049
+ "Concept": null,
1050
+ "Genre": null,
1051
+ "Source": "V"
1052
+ },
1053
+ {
1054
+ "query_cn": "西湖区森林",
1055
+ "query_en": "forest in Xihu District",
1056
+ "ground_truth": [
1057
+ "IMG_1475.JPG",
1058
+ "IMG_6374.JPG",
1059
+ "IMG_9044.JPG",
1060
+ "IMG_9045.JPG",
1061
+ "IMG_9073.JPG",
1062
+ "IMG_9074.JPG"
1063
+ ],
1064
+ "ground_truth_count": 6,
1065
+ "Location": "fact",
1066
+ "Time": null,
1067
+ "Person": null,
1068
+ "Object": null,
1069
+ "Concept": null,
1070
+ "Genre": null,
1071
+ "Source": "VM"
1072
+ },
1073
+ {
1074
+ "query_cn": "自己做的捞汁海鲜",
1075
+ "query_en": "homemade seafood in sauce",
1076
+ "ground_truth": [
1077
+ "IMG_0779.JPG"
1078
+ ],
1079
+ "ground_truth_count": 1,
1080
+ "Location": null,
1081
+ "Time": null,
1082
+ "Person": "cognitive",
1083
+ "Object": "cognitive",
1084
+ "Concept": null,
1085
+ "Genre": null,
1086
+ "Source": "V"
1087
+ },
1088
+ {
1089
+ "query_cn": "猫咬植物茎杆",
1090
+ "query_en": "cat biting plant stems",
1091
+ "ground_truth": [
1092
+ "IMG_1105.JPG",
1093
+ "IMG_1106.JPG"
1094
+ ],
1095
+ "ground_truth_count": 2,
1096
+ "Location": null,
1097
+ "Time": null,
1098
+ "Person": null,
1099
+ "Object": "fact",
1100
+ "Concept": null,
1101
+ "Genre": null,
1102
+ "Source": "V"
1103
+ },
1104
+ {
1105
+ "query_cn": "黑猫蜷缩在脚边的瞬间",
1106
+ "query_en": "black cat curled up by my feet",
1107
+ "ground_truth": [
1108
+ "IMG_1090.JPG",
1109
+ "IMG_1091.JPG",
1110
+ "IMG_2715.JPG",
1111
+ "IMG_4859.JPG"
1112
+ ],
1113
+ "ground_truth_count": 4,
1114
+ "Location": null,
1115
+ "Time": null,
1116
+ "Person": null,
1117
+ "Object": "cognitive",
1118
+ "Concept": "cognitive",
1119
+ "Genre": null,
1120
+ "Source": "V"
1121
+ },
1122
+ {
1123
+ "query_cn": "橘猫躲在鞋盒缝隙里",
1124
+ "query_en": "orange cat hiding in a shoe box gap",
1125
+ "ground_truth": [
1126
+ "IMG_0072.JPG"
1127
+ ],
1128
+ "ground_truth_count": 1,
1129
+ "Location": null,
1130
+ "Time": null,
1131
+ "Person": null,
1132
+ "Object": "cognitive",
1133
+ "Concept": null,
1134
+ "Genre": null,
1135
+ "Source": "V"
1136
+ },
1137
+ {
1138
+ "query_cn": "初秋黑鸽互动",
1139
+ "query_en": "interacting with black pigeons in early autumn",
1140
+ "ground_truth": [
1141
+ "IMG_1619.JPG",
1142
+ "IMG_1620.JPG"
1143
+ ],
1144
+ "ground_truth_count": 2,
1145
+ "Location": null,
1146
+ "Time": "cognitive",
1147
+ "Person": null,
1148
+ "Object": "cognitive",
1149
+ "Concept": null,
1150
+ "Genre": null,
1151
+ "Source": "V"
1152
+ },
1153
+ {
1154
+ "query_cn": "阳光下的宁静橘猫",
1155
+ "query_en": "peaceful orange cat in the sunlight",
1156
+ "ground_truth": [
1157
+ "IMG_0059.JPG",
1158
+ "IMG_0063.JPG",
1159
+ "IMG_1848.JPG",
1160
+ "IMG_1849.JPG",
1161
+ "IMG_2203.JPG",
1162
+ "IMG_2205.JPG",
1163
+ "IMG_2207.JPG",
1164
+ "IMG_2208.JPG",
1165
+ "IMG_2211.JPG",
1166
+ "IMG_5690.JPG"
1167
+ ],
1168
+ "ground_truth_count": 10,
1169
+ "Location": null,
1170
+ "Time": null,
1171
+ "Person": null,
1172
+ "Object": "cognitive",
1173
+ "Concept": "cognitive",
1174
+ "Genre": null,
1175
+ "Source": "V"
1176
+ },
1177
+ {
1178
+ "query_cn": "动画角色挥光剑激战瞬间",
1179
+ "query_en": "animated character battling with a lightsaber",
1180
+ "ground_truth": [
1181
+ "IMG_2843.JPG",
1182
+ "IMG_2853.JPG"
1183
+ ],
1184
+ "ground_truth_count": 2,
1185
+ "Location": null,
1186
+ "Time": null,
1187
+ "Person": null,
1188
+ "Object": "cognitive",
1189
+ "Concept": null,
1190
+ "Genre": null,
1191
+ "Source": "V"
1192
+ },
1193
+ {
1194
+ "query_cn": "秋季校园集市",
1195
+ "query_en": "autumn campus market",
1196
+ "ground_truth": [
1197
+ "IMG_0412.JPG",
1198
+ "IMG_0413.JPG",
1199
+ "IMG_0414.JPG",
1200
+ "IMG_0415.JPG",
1201
+ "IMG_0418.JPG",
1202
+ "IMG_3558.JPG",
1203
+ "IMG_3559.JPG",
1204
+ "IMG_3685.JPG",
1205
+ "IMG_4094.JPG",
1206
+ "IMG_4095.JPG",
1207
+ "IMG_4096.JPG"
1208
+ ],
1209
+ "ground_truth_count": 11,
1210
+ "Location": "cognitive",
1211
+ "Time": "cognitive",
1212
+ "Person": null,
1213
+ "Object": "cognitive",
1214
+ "Concept": null,
1215
+ "Genre": null,
1216
+ "Source": "V"
1217
+ },
1218
+ {
1219
+ "query_cn": "苹果官方店环境",
1220
+ "query_en": "Apple Store environment",
1221
+ "ground_truth": [
1222
+ "IMG_4106.JPG"
1223
+ ],
1224
+ "ground_truth_count": 1,
1225
+ "Location": "cognitive",
1226
+ "Time": null,
1227
+ "Person": null,
1228
+ "Object": null,
1229
+ "Concept": null,
1230
+ "Genre": null,
1231
+ "Source": "V"
1232
+ },
1233
+ {
1234
+ "query_cn": "湖边夕阳下的宁静时光",
1235
+ "query_en": "peaceful sunset by the lake",
1236
+ "ground_truth": [
1237
+ "IMG_4132.JPG",
1238
+ "IMG_4133.JPG",
1239
+ "IMG_5665.JPG",
1240
+ "IMG_6374.JPG"
1241
+ ],
1242
+ "ground_truth_count": 4,
1243
+ "Location": "cognitive",
1244
+ "Time": "cognitive",
1245
+ "Person": null,
1246
+ "Object": null,
1247
+ "Concept": "cognitive",
1248
+ "Genre": null,
1249
+ "Source": "V"
1250
+ },
1251
+ {
1252
+ "query_cn": "金黄银杏",
1253
+ "query_en": "golden ginkgo",
1254
+ "ground_truth": [
1255
+ "IMG_3652.JPG",
1256
+ "IMG_4468.JPG",
1257
+ "IMG_4469.JPG",
1258
+ "IMG_4492.JPG",
1259
+ "IMG_4508.JPG",
1260
+ "IMG_4511.JPG",
1261
+ "IMG_4533.JPG",
1262
+ "IMG_5160.JPG"
1263
+ ],
1264
+ "ground_truth_count": 8,
1265
+ "Location": null,
1266
+ "Time": null,
1267
+ "Person": null,
1268
+ "Object": "fact",
1269
+ "Concept": null,
1270
+ "Genre": null,
1271
+ "Source": "V"
1272
+ },
1273
+ {
1274
+ "query_cn": "银杏叶拼成爱心",
1275
+ "query_en": "ginkgo leaves shaped into a heart",
1276
+ "ground_truth": [
1277
+ "IMG_4508.JPG",
1278
+ "IMG_4511.JPG",
1279
+ "IMG_4533.JPG"
1280
+ ],
1281
+ "ground_truth_count": 3,
1282
+ "Location": null,
1283
+ "Time": null,
1284
+ "Person": null,
1285
+ "Object": "cognitive",
1286
+ "Concept": null,
1287
+ "Genre": null,
1288
+ "Source": "V"
1289
+ },
1290
+ {
1291
+ "query_cn": "狸花闭眼享受被摸",
1292
+ "query_en": "tabby cat enjoying being petted",
1293
+ "ground_truth": [
1294
+ "IMG_4854.JPG",
1295
+ "IMG_4855.JPG",
1296
+ "IMG_6590.JPG"
1297
+ ],
1298
+ "ground_truth_count": 3,
1299
+ "Location": null,
1300
+ "Time": null,
1301
+ "Person": null,
1302
+ "Object": "cognitive",
1303
+ "Concept": "cognitive",
1304
+ "Genre": null,
1305
+ "Source": "V"
1306
+ },
1307
+ {
1308
+ "query_cn": "下午课上跟闺蜜展示新做的美甲",
1309
+ "query_en": "showing new manicure to a friend during class",
1310
+ "ground_truth": [
1311
+ "IMG_2119.JPG",
1312
+ "IMG_4908.JPG"
1313
+ ],
1314
+ "ground_truth_count": 2,
1315
+ "Location": "cognitive",
1316
+ "Time": "cognitive",
1317
+ "Person": "cognitive",
1318
+ "Object": "cognitive",
1319
+ "Concept": null,
1320
+ "Genre": null,
1321
+ "Source": "VF"
1322
+ },
1323
+ {
1324
+ "query_cn": "街边圣诞树",
1325
+ "query_en": "street Christmas tree",
1326
+ "ground_truth": [
1327
+ "IMG_5231.JPG",
1328
+ "IMG_5232.JPG",
1329
+ "IMG_5234.JPG",
1330
+ "IMG_5243 2.JPG"
1331
+ ],
1332
+ "ground_truth_count": 4,
1333
+ "Location": "cognitive",
1334
+ "Time": "cognitive",
1335
+ "Person": null,
1336
+ "Object": "fact",
1337
+ "Concept": null,
1338
+ "Genre": null,
1339
+ "Source": "V"
1340
+ },
1341
+ {
1342
+ "query_cn": "蜥蜴在岩石上休息的细节",
1343
+ "query_en": "lizard resting on a rock",
1344
+ "ground_truth": [
1345
+ "IMG_1749.JPG"
1346
+ ],
1347
+ "ground_truth_count": 1,
1348
+ "Location": "cognitive",
1349
+ "Time": null,
1350
+ "Person": null,
1351
+ "Object": "cognitive",
1352
+ "Concept": null,
1353
+ "Genre": null,
1354
+ "Source": "V"
1355
+ },
1356
+ {
1357
+ "query_cn": "警觉的卷尾猴",
1358
+ "query_en": "alert drongo monkey",
1359
+ "ground_truth": [
1360
+ "IMG_1752.JPG"
1361
+ ],
1362
+ "ground_truth_count": 1,
1363
+ "Location": null,
1364
+ "Time": null,
1365
+ "Person": null,
1366
+ "Object": "cognitive",
1367
+ "Concept": null,
1368
+ "Genre": null,
1369
+ "Source": "V"
1370
+ },
1371
+ {
1372
+ "query_cn": "和晓薇吃川菜",
1373
+ "query_en": "eating Sichuan food with Xiaowei",
1374
+ "ground_truth": [
1375
+ "IMG_9877.JPG"
1376
+ ],
1377
+ "ground_truth_count": 1,
1378
+ "Location": null,
1379
+ "Time": null,
1380
+ "Person": "cognitive",
1381
+ "Object": null,
1382
+ "Concept": null,
1383
+ "Genre": null,
1384
+ "Source": "MF"
1385
+ },
1386
+ {
1387
+ "query_cn": "自己、晓彤、宁宁、林林的照片",
1388
+ "query_en": "photos of me, Xiaotong, Ningning, and Linlin",
1389
+ "ground_truth": [
1390
+ "IMG_5078.JPG",
1391
+ "IMG_5081.JPG",
1392
+ "IMG_5079.JPG",
1393
+ "IMG_5080.JPG",
1394
+ "IMG_5082.JPG",
1395
+ "IMG_5083.JPG",
1396
+ "IMG_5077.JPG"
1397
+ ],
1398
+ "ground_truth_count": 7,
1399
+ "Location": null,
1400
+ "Time": null,
1401
+ "Person": "fact",
1402
+ "Object": null,
1403
+ "Concept": null,
1404
+ "Genre": null,
1405
+ "Source": "F"
1406
+ },
1407
+ {
1408
+ "query_cn": "浩哥、阳哥的照片",
1409
+ "query_en": "photos of Haoge and Yangge",
1410
+ "ground_truth": [
1411
+ "FullSizeRender 3.JPG"
1412
+ ],
1413
+ "ground_truth_count": 1,
1414
+ "Location": null,
1415
+ "Time": null,
1416
+ "Person": "fact",
1417
+ "Object": null,
1418
+ "Concept": null,
1419
+ "Genre": null,
1420
+ "Source": "F"
1421
+ },
1422
+ {
1423
+ "query_cn": "有林可欣在内的照片",
1424
+ "query_en": "photos including Lin Kexin",
1425
+ "ground_truth": [
1426
+ "IMG_5081.JPG",
1427
+ "IMG_5079.JPG",
1428
+ "IMG_5080.JPG",
1429
+ "IMG_5082.JPG",
1430
+ "IMG_5071.JPG",
1431
+ "IMG_5072.JPG",
1432
+ "IMG_5077.JPG",
1433
+ "IMG_5083.JPG",
1434
+ "IMG_5078.JPG"
1435
+ ],
1436
+ "ground_truth_count": 9,
1437
+ "Location": null,
1438
+ "Time": null,
1439
+ "Person": "fact",
1440
+ "Object": null,
1441
+ "Concept": null,
1442
+ "Genre": null,
1443
+ "Source": "F"
1444
+ },
1445
+ {
1446
+ "query_cn": "有我在内的照片",
1447
+ "query_en": "photos including me",
1448
+ "ground_truth": [
1449
+ "IMG_5072.JPG",
1450
+ "IMG_1532.JPG",
1451
+ "IMG_5080.JPG",
1452
+ "IMG_5083.JPG",
1453
+ "IMG_6438.JPG",
1454
+ "IMG_5081.JPG",
1455
+ "IMG_6437.JPG",
1456
+ "IMG_5108.JPG",
1457
+ "IMG_9572.JPG",
1458
+ "IMG_1475.JPG",
1459
+ "IMG_8890.JPG",
1460
+ "IMG_5071.JPG",
1461
+ "IMG_5078.JPG",
1462
+ "IMG_3896.JPG",
1463
+ "IMG_5079.JPG",
1464
+ "IMG_5086.JPG",
1465
+ "IMG_5077.JPG",
1466
+ "IMG_9899.JPG",
1467
+ "IMG_5082.JPG"
1468
+ ],
1469
+ "ground_truth_count": 19,
1470
+ "Location": null,
1471
+ "Time": null,
1472
+ "Person": "fact",
1473
+ "Object": null,
1474
+ "Concept": null,
1475
+ "Genre": null,
1476
+ "Source": "F"
1477
+ },
1478
+ {
1479
+ "query_cn": "小陈的照片",
1480
+ "query_en": "photos of Xiao Chen",
1481
+ "ground_truth": [
1482
+ "IMG_4497.JPG",
1483
+ "IMG_9777.JPG",
1484
+ "IMG_3036.JPG",
1485
+ "IMG_4376.JPG",
1486
+ "IMG_9776.JPG",
1487
+ "IMG_9778.JPG",
1488
+ "IMG_8994.JPG",
1489
+ "IMG_9782.JPG",
1490
+ "IMG_9003.JPG",
1491
+ "IMG_4498.JPG",
1492
+ "IMG_3034.JPG",
1493
+ "IMG_4499.JPG",
1494
+ "IMG_1622.JPG"
1495
+ ],
1496
+ "ground_truth_count": 13,
1497
+ "Location": null,
1498
+ "Time": null,
1499
+ "Person": "fact",
1500
+ "Object": null,
1501
+ "Concept": null,
1502
+ "Genre": null,
1503
+ "Source": "F"
1504
+ },
1505
+ {
1506
+ "query_cn": "小陈和阿宇的合照",
1507
+ "query_en": "photos of Xiao Chen and Ayu together",
1508
+ "ground_truth": [
1509
+ "IMG_3036.JPG",
1510
+ "IMG_3034.JPG",
1511
+ "IMG_4499.JPG",
1512
+ "IMG_4376.JPG",
1513
+ "IMG_4497.JPG",
1514
+ "IMG_1622.JPG",
1515
+ "IMG_4498.JPG",
1516
+ "IMG_9003.JPG",
1517
+ "IMG_8994.JPG"
1518
+ ],
1519
+ "ground_truth_count": 9,
1520
+ "Location": null,
1521
+ "Time": null,
1522
+ "Person": "fact",
1523
+ "Object": null,
1524
+ "Concept": null,
1525
+ "Genre": null,
1526
+ "Source": "F"
1527
+ },
1528
+ {
1529
+ "query_cn": "有小赵在内的照片",
1530
+ "query_en": "photos with Xiao Zhao",
1531
+ "ground_truth": [
1532
+ "IMG_3208.JPG",
1533
+ "IMG_5926.JPG",
1534
+ "IMG_4988.JPG",
1535
+ "IMG_3207.JPG",
1536
+ "IMG_7140.JPG",
1537
+ "IMG_5924.JPG",
1538
+ "IMG_7139.JPG"
1539
+ ],
1540
+ "ground_truth_count": 7,
1541
+ "Location": null,
1542
+ "Time": null,
1543
+ "Person": "fact",
1544
+ "Object": null,
1545
+ "Concept": null,
1546
+ "Genre": null,
1547
+ "Source": "F"
1548
+ },
1549
+ {
1550
+ "query_cn": "在天津市的照片",
1551
+ "query_en": "photos in Tianjin",
1552
+ "ground_truth": [
1553
+ "IMG_1170.JPG"
1554
+ ],
1555
+ "ground_truth_count": 1,
1556
+ "Location": "fact",
1557
+ "Time": null,
1558
+ "Person": null,
1559
+ "Object": null,
1560
+ "Concept": null,
1561
+ "Genre": null,
1562
+ "Source": "M"
1563
+ },
1564
+ {
1565
+ "query_cn": "嘉兴市拍的",
1566
+ "query_en": "photos taken in Jiaxing",
1567
+ "ground_truth": [
1568
+ "IMG_2178.JPG"
1569
+ ],
1570
+ "ground_truth_count": 1,
1571
+ "Location": "fact",
1572
+ "Time": null,
1573
+ "Person": null,
1574
+ "Object": null,
1575
+ "Concept": null,
1576
+ "Genre": null,
1577
+ "Source": "M"
1578
+ },
1579
+ {
1580
+ "query_cn": "松江区拍的",
1581
+ "query_en": "photos taken in Songjiang District",
1582
+ "ground_truth": [
1583
+ "IMG_6573.JPG",
1584
+ "IMG_6587.JPG",
1585
+ "IMG_6589.JPG",
1586
+ "IMG_6581.JPG",
1587
+ "IMG_6590.JPG",
1588
+ "IMG_6579.JPG",
1589
+ "IMG_6584.JPG"
1590
+ ],
1591
+ "ground_truth_count": 7,
1592
+ "Location": "fact",
1593
+ "Time": null,
1594
+ "Person": null,
1595
+ "Object": null,
1596
+ "Concept": null,
1597
+ "Genre": null,
1598
+ "Source": "M"
1599
+ },
1600
+ {
1601
+ "query_cn": "在禹城市的照片",
1602
+ "query_en": "photos in Yucheng",
1603
+ "ground_truth": [
1604
+ "IMG_1179.JPG",
1605
+ "IMG_1178.JPG"
1606
+ ],
1607
+ "ground_truth_count": 2,
1608
+ "Location": "fact",
1609
+ "Time": null,
1610
+ "Person": null,
1611
+ "Object": null,
1612
+ "Concept": null,
1613
+ "Genre": null,
1614
+ "Source": "M"
1615
+ },
1616
+ {
1617
+ "query_cn": "南京市拍的",
1618
+ "query_en": "photos taken in Nanjing",
1619
+ "ground_truth": [
1620
+ "IMG_1480.JPG",
1621
+ "IMG_1753.JPG",
1622
+ "IMG_1745.JPG",
1623
+ "IMG_1765 2.JPG",
1624
+ "IMG_1767.JPG",
1625
+ "IMG_0031.JPG",
1626
+ "IMG_1759.JPG",
1627
+ "IMG_1493.JPG",
1628
+ "IMG_1766.JPG",
1629
+ "IMG_1743.JPG",
1630
+ "IMG_0016.JPG",
1631
+ "IMG_1747.JPG",
1632
+ "IMG_1493 2.JPG",
1633
+ "IMG_1564 3.JPG",
1634
+ "IMG_1483.JPG",
1635
+ "IMG_1565.JPG",
1636
+ "IMG_1564.JPG",
1637
+ "IMG_1738.JPG",
1638
+ "IMG_1751.JPG",
1639
+ "IMG_1570 2.JPG",
1640
+ "IMG_1749.JPG",
1641
+ "IMG_0015.JPG",
1642
+ "IMG_1752.JPG",
1643
+ "IMG_0036.JPG",
1644
+ "IMG_1762.JPG",
1645
+ "IMG_0032_1.JPG",
1646
+ "IMG_1750.JPG",
1647
+ "IMG_1480 2.JPG",
1648
+ "IMG_1493 3.JPG",
1649
+ "IMG_1737.JPG",
1650
+ "IMG_1746.JPG",
1651
+ "IMG_1483 2.JPG",
1652
+ "IMG_1564 2.JPG",
1653
+ "IMG_1763.JPG",
1654
+ "IMG_1570.JPG",
1655
+ "IMG_1764.JPG",
1656
+ "IMG_0030.JPG"
1657
+ ],
1658
+ "ground_truth_count": 37,
1659
+ "Location": "fact",
1660
+ "Time": null,
1661
+ "Person": null,
1662
+ "Object": null,
1663
+ "Concept": null,
1664
+ "Genre": null,
1665
+ "Source": "M"
1666
+ },
1667
+ {
1668
+ "query_cn": "海宁市",
1669
+ "query_en": "photos in Haining",
1670
+ "ground_truth": [
1671
+ "IMG_2178.JPG"
1672
+ ],
1673
+ "ground_truth_count": 1,
1674
+ "Location": "fact",
1675
+ "Time": null,
1676
+ "Person": null,
1677
+ "Object": null,
1678
+ "Concept": null,
1679
+ "Genre": null,
1680
+ "Source": "M"
1681
+ },
1682
+ {
1683
+ "query_cn": "在盐田区的照片",
1684
+ "query_en": "photos in Yantian District",
1685
+ "ground_truth": [
1686
+ "IMG_6438.JPG",
1687
+ "IMG_6437.JPG",
1688
+ "IMG_6457.JPG",
1689
+ "IMG_6344.JPG",
1690
+ "IMG_6343.JPG",
1691
+ "IMG_6458.JPG"
1692
+ ],
1693
+ "ground_truth_count": 6,
1694
+ "Location": "fact",
1695
+ "Time": null,
1696
+ "Person": null,
1697
+ "Object": null,
1698
+ "Concept": null,
1699
+ "Genre": null,
1700
+ "Source": "M"
1701
+ },
1702
+ {
1703
+ "query_cn": "崇文门",
1704
+ "query_en": "photos at Chongwenmen",
1705
+ "ground_truth": [
1706
+ "IMG_0918.JPG",
1707
+ "FullSizeRender.JPG"
1708
+ ],
1709
+ "ground_truth_count": 2,
1710
+ "Location": "fact",
1711
+ "Time": null,
1712
+ "Person": null,
1713
+ "Object": null,
1714
+ "Concept": null,
1715
+ "Genre": null,
1716
+ "Source": "M"
1717
+ },
1718
+ {
1719
+ "query_cn": "柯桥拍的",
1720
+ "query_en": "photos taken in Keqiao",
1721
+ "ground_truth": [
1722
+ "IMG_2853.JPG",
1723
+ "IMG_4165.JPG",
1724
+ "IMG_4318.JPG",
1725
+ "IMG_4324.JPG",
1726
+ "IMG_1325.JPG",
1727
+ "IMG_5261.JPG",
1728
+ "IMG_5257.JPG",
1729
+ "IMG_2724.JPG",
1730
+ "IMG_5260.JPG",
1731
+ "IMG_1340.JPG",
1732
+ "IMG_5254.JPG",
1733
+ "IMG_0055.JPG",
1734
+ "IMG_5255.JPG",
1735
+ "IMG_2843.JPG",
1736
+ "IMG_2719.JPG",
1737
+ "IMG_1765.JPG",
1738
+ "IMG_2726.JPG",
1739
+ "IMG_4315.JPG",
1740
+ "IMG_6100.JPG",
1741
+ "IMG_8245.JPG",
1742
+ "IMG_6102.JPG",
1743
+ "IMG_4319.JPG",
1744
+ "IMG_2710 2.JPG",
1745
+ "IMG_5258.JPG",
1746
+ "IMG_8246.JPG",
1747
+ "IMG_2942.JPG",
1748
+ "IMG_5264.JPG",
1749
+ "IMG_6106.JPG",
1750
+ "IMG_2947.JPG",
1751
+ "IMG_4223.JPG"
1752
+ ],
1753
+ "ground_truth_count": 30,
1754
+ "Location": "fact",
1755
+ "Time": null,
1756
+ "Person": null,
1757
+ "Object": null,
1758
+ "Concept": null,
1759
+ "Genre": null,
1760
+ "Source": "M"
1761
+ },
1762
+ {
1763
+ "query_cn": "2025年春节的照片",
1764
+ "query_en": "Chinese New Year photos from 2025",
1765
+ "ground_truth": [
1766
+ "IMG_1851.JPG",
1767
+ "IMG_1858.JPG",
1768
+ "IMG_1879.JPG",
1769
+ "IMG_1857.JPG"
1770
+ ],
1771
+ "ground_truth_count": 4,
1772
+ "Location": null,
1773
+ "Time": "cognitive",
1774
+ "Person": null,
1775
+ "Object": null,
1776
+ "Concept": null,
1777
+ "Genre": null,
1778
+ "Source": "M"
1779
+ },
1780
+ {
1781
+ "query_cn": "过2023年劳动节",
1782
+ "query_en": "celebrating Labor Day in 2023",
1783
+ "ground_truth": [
1784
+ "IMG_4234.JPG"
1785
+ ],
1786
+ "ground_truth_count": 1,
1787
+ "Location": null,
1788
+ "Time": "cognitive",
1789
+ "Person": null,
1790
+ "Object": null,
1791
+ "Concept": null,
1792
+ "Genre": null,
1793
+ "Source": "M"
1794
+ },
1795
+ {
1796
+ "query_cn": "2025年10月6日拍的",
1797
+ "query_en": "photos taken on October 6, 2025",
1798
+ "ground_truth": [
1799
+ "IMG_0587.JPG",
1800
+ "IMG_0590.JPG",
1801
+ "IMG_0588.JPG",
1802
+ "IMG_0063.JPG"
1803
+ ],
1804
+ "ground_truth_count": 4,
1805
+ "Location": null,
1806
+ "Time": "fact",
1807
+ "Person": null,
1808
+ "Object": null,
1809
+ "Concept": null,
1810
+ "Genre": null,
1811
+ "Source": "M"
1812
+ },
1813
+ {
1814
+ "query_cn": "2025年11月15日",
1815
+ "query_en": "photos from November 15, 2025",
1816
+ "ground_truth": [
1817
+ "IMG_1611.JPG",
1818
+ "IMG_1619.JPG",
1819
+ "IMG_1604.JPG",
1820
+ "IMG_1624.JPG",
1821
+ "IMG_1603.JPG",
1822
+ "IMG_1610.JPG",
1823
+ "IMG_1613.JPG",
1824
+ "IMG_1622.JPG",
1825
+ "IMG_1602.JPG",
1826
+ "IMG_1612.JPG",
1827
+ "IMG_1620.JPG"
1828
+ ],
1829
+ "ground_truth_count": 11,
1830
+ "Location": null,
1831
+ "Time": "fact",
1832
+ "Person": null,
1833
+ "Object": null,
1834
+ "Concept": null,
1835
+ "Genre": null,
1836
+ "Source": "M"
1837
+ },
1838
+ {
1839
+ "query_cn": "2023年冬季的照片",
1840
+ "query_en": "winter photos from 2023",
1841
+ "ground_truth": [
1842
+ "IMG_8527.JPG",
1843
+ "IMG_8542 2.JPG"
1844
+ ],
1845
+ "ground_truth_count": 2,
1846
+ "Location": null,
1847
+ "Time": "fact",
1848
+ "Person": null,
1849
+ "Object": null,
1850
+ "Concept": null,
1851
+ "Genre": null,
1852
+ "Source": "M"
1853
+ },
1854
+ {
1855
+ "query_cn": "厨房准备食材, 5月",
1856
+ "query_en": "prepping ingredients in the kitchen, May",
1857
+ "ground_truth": [],
1858
+ "ground_truth_count": 0,
1859
+ "Location": "cognitive",
1860
+ "Time": "fact",
1861
+ "Person": null,
1862
+ "Object": "cognitive",
1863
+ "Concept": null,
1864
+ "Genre": null,
1865
+ "Source": "VM"
1866
+ },
1867
+ {
1868
+ "query_cn": "陪朋友化妆的瞬间, 2018",
1869
+ "query_en": "helping a friend with makeup, 2018",
1870
+ "ground_truth": [],
1871
+ "ground_truth_count": 0,
1872
+ "Location": null,
1873
+ "Time": "fact",
1874
+ "Person": "cognitive",
1875
+ "Object": null,
1876
+ "Concept": "cognitive",
1877
+ "Genre": null,
1878
+ "Source": "VMF"
1879
+ },
1880
+ {
1881
+ "query_cn": "2015年1月 金黄银杏",
1882
+ "query_en": "golden ginkgo trees, January 2015",
1883
+ "ground_truth": [],
1884
+ "ground_truth_count": 0,
1885
+ "Location": null,
1886
+ "Time": "fact",
1887
+ "Person": null,
1888
+ "Object": "cognitive",
1889
+ "Concept": null,
1890
+ "Genre": null,
1891
+ "Source": "VM"
1892
+ }
1893
+ ]
data/validation/album2_validation.json ADDED
@@ -0,0 +1,2071 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "query_cn": "马拉松志愿者摆水",
4
+ "query_en": "marathon volunteers handing water",
5
+ "ground_truth": [
6
+ "IMG_8266.jpg"
7
+ ],
8
+ "ground_truth_count": 1,
9
+ "Location": null,
10
+ "Time": null,
11
+ "Person": "cognitive",
12
+ "Object": "cognitive",
13
+ "Concept": null,
14
+ "Genre": null,
15
+ "Source": "V"
16
+ },
17
+ {
18
+ "query_cn": "普陀山海岸",
19
+ "query_en": "Putuo Mountain coast",
20
+ "ground_truth": [
21
+ "IMG_2457.jpg"
22
+ ],
23
+ "ground_truth_count": 1,
24
+ "Location": "fact",
25
+ "Time": null,
26
+ "Person": null,
27
+ "Object": null,
28
+ "Concept": null,
29
+ "Genre": null,
30
+ "Source": "VM"
31
+ },
32
+ {
33
+ "query_cn": "傍晚开车过桥看江面",
34
+ "query_en": "driving over bridge at sunset",
35
+ "ground_truth": [
36
+ "IMG_3326.jpg"
37
+ ],
38
+ "ground_truth_count": 1,
39
+ "Location": "cognitive",
40
+ "Time": "cognitive",
41
+ "Person": null,
42
+ "Object": null,
43
+ "Concept": "cognitive",
44
+ "Genre": null,
45
+ "Source": "VM"
46
+ },
47
+ {
48
+ "query_cn": "朋友聚会碰杯庆祝",
49
+ "query_en": "friends toasting at party",
50
+ "ground_truth": [
51
+ "IMG_3076.JPG",
52
+ "IMG_3853(1).JPG",
53
+ "IMG_4438.jpg",
54
+ "IMG_6202.jpg"
55
+ ],
56
+ "ground_truth_count": 4,
57
+ "Location": null,
58
+ "Time": null,
59
+ "Person": "cognitive",
60
+ "Object": "cognitive",
61
+ "Concept": "cognitive",
62
+ "Genre": null,
63
+ "Source": "VF"
64
+ },
65
+ {
66
+ "query_cn": "艺术工作室墙面创意装饰",
67
+ "query_en": "art studio wall decor",
68
+ "ground_truth": [
69
+ "IMG_4903.jpg"
70
+ ],
71
+ "ground_truth_count": 1,
72
+ "Location": "cognitive",
73
+ "Time": null,
74
+ "Person": null,
75
+ "Object": "cognitive",
76
+ "Concept": "cognitive",
77
+ "Genre": null,
78
+ "Source": "V"
79
+ },
80
+ {
81
+ "query_cn": "普吉卡农乡的宁静海滩",
82
+ "query_en": "quiet beach in Phuket's Karon",
83
+ "ground_truth": [
84
+ "IMG_4595.jpg",
85
+ "IMG_4596.jpg"
86
+ ],
87
+ "ground_truth_count": 2,
88
+ "Location": "cognitive",
89
+ "Time": null,
90
+ "Person": null,
91
+ "Object": null,
92
+ "Concept": "cognitive",
93
+ "Genre": null,
94
+ "Source": "VM"
95
+ },
96
+ {
97
+ "query_cn": "分层的鸡尾酒",
98
+ "query_en": "layered cocktail",
99
+ "ground_truth": [
100
+ "IMG_5180.jpg",
101
+ "IMG_5661.jpg",
102
+ "IMG_8513.jpg",
103
+ "IMG_9769.jpg"
104
+ ],
105
+ "ground_truth_count": 4,
106
+ "Location": null,
107
+ "Time": null,
108
+ "Person": null,
109
+ "Object": "fact",
110
+ "Concept": null,
111
+ "Genre": null,
112
+ "Source": "V"
113
+ },
114
+ {
115
+ "query_cn": "圣诞节夜晚的自拍",
116
+ "query_en": "Christmas night selfie",
117
+ "ground_truth": [],
118
+ "ground_truth_count": 0,
119
+ "Location": null,
120
+ "Time": "cognitive",
121
+ "Person": "cognitive",
122
+ "Object": null,
123
+ "Concept": null,
124
+ "Genre": null,
125
+ "Source": "VMF"
126
+ },
127
+ {
128
+ "query_cn": "瓶窑镇遇到的无人车",
129
+ "query_en": "driverless car in Pingyao",
130
+ "ground_truth": [
131
+ "IMG_2668.JPG"
132
+ ],
133
+ "ground_truth_count": 1,
134
+ "Location": "fact",
135
+ "Time": null,
136
+ "Person": null,
137
+ "Object": "fact",
138
+ "Concept": null,
139
+ "Genre": null,
140
+ "Source": "VM"
141
+ },
142
+ {
143
+ "query_cn": "动作超可爱的瓷俑",
144
+ "query_en": "cute ceramic figurine",
145
+ "ground_truth": [
146
+ "IMG_9087.jpg",
147
+ "IMG_9088.jpg"
148
+ ],
149
+ "ground_truth_count": 2,
150
+ "Location": null,
151
+ "Time": null,
152
+ "Person": null,
153
+ "Object": "cognitive",
154
+ "Concept": "cognitive",
155
+ "Genre": null,
156
+ "Source": "V"
157
+ },
158
+ {
159
+ "query_cn": "和男朋友的对戒",
160
+ "query_en": "matching rings with boyfriend",
161
+ "ground_truth": [
162
+ "IMG_7951.JPG",
163
+ "IMG_9573.jpg"
164
+ ],
165
+ "ground_truth_count": 2,
166
+ "Location": null,
167
+ "Time": null,
168
+ "Person": "cognitive",
169
+ "Object": "cognitive",
170
+ "Concept": null,
171
+ "Genre": null,
172
+ "Source": "VF"
173
+ },
174
+ {
175
+ "query_cn": "卡通小鹿雕塑旁的巧克力冰棒",
176
+ "query_en": "chocolate popsicle by cartoon deer statue",
177
+ "ground_truth": [
178
+ "IMG_2666.JPG"
179
+ ],
180
+ "ground_truth_count": 1,
181
+ "Location": null,
182
+ "Time": null,
183
+ "Person": null,
184
+ "Object": "cognitive",
185
+ "Concept": "cognitive",
186
+ "Genre": null,
187
+ "Source": "V"
188
+ },
189
+ {
190
+ "query_cn": "擀面皮",
191
+ "query_en": "handmade noodles",
192
+ "ground_truth": [
193
+ "IMG_0428.jpg"
194
+ ],
195
+ "ground_truth_count": 1,
196
+ "Location": null,
197
+ "Time": null,
198
+ "Person": null,
199
+ "Object": "fact",
200
+ "Concept": null,
201
+ "Genre": null,
202
+ "Source": "V"
203
+ },
204
+ {
205
+ "query_cn": "干锅菜特写加V字手势",
206
+ "query_en": "dry pot dish with peace sign",
207
+ "ground_truth": [
208
+ "IMG_0403.jpg"
209
+ ],
210
+ "ground_truth_count": 1,
211
+ "Location": null,
212
+ "Time": null,
213
+ "Person": null,
214
+ "Object": "cognitive",
215
+ "Concept": "cognitive",
216
+ "Genre": null,
217
+ "Source": "VF"
218
+ },
219
+ {
220
+ "query_cn": "跨年夜 杭州",
221
+ "query_en": "New Year’s Eve Hangzhou",
222
+ "ground_truth": [
223
+ "IMG_8684.jpg",
224
+ "IMG_9610.jpg",
225
+ "IMG_9616.jpg",
226
+ "IMG_9625 2.jpg"
227
+ ],
228
+ "ground_truth_count": 4,
229
+ "Location": "fact",
230
+ "Time": "cognitive",
231
+ "Person": null,
232
+ "Object": null,
233
+ "Concept": null,
234
+ "Genre": null,
235
+ "Source": "VM"
236
+ },
237
+ {
238
+ "query_cn": "夜晚 艺术灯光装置 梦幻",
239
+ "query_en": "night art light installation dreamy",
240
+ "ground_truth": [
241
+ "IMG_1148.jpg",
242
+ "IMG_1438.jpg",
243
+ "IMG_2277 2.jpg",
244
+ "IMG_2278.jpg",
245
+ "IMG_2632.JPG",
246
+ "IMG_2652.jpg",
247
+ "IMG_2658.JPG",
248
+ "IMG_5540.jpg",
249
+ "IMG_6451.JPG",
250
+ "IMG_7374.JPG",
251
+ "IMG_7376.JPG",
252
+ "IMG_8008.JPG",
253
+ "IMG_8009.JPG",
254
+ "IMG_8300.jpg",
255
+ "IMG_9427.JPG"
256
+ ],
257
+ "ground_truth_count": 15,
258
+ "Location": null,
259
+ "Time": "cognitive",
260
+ "Person": null,
261
+ "Object": null,
262
+ "Concept": "cognitive",
263
+ "Genre": null,
264
+ "Source": "V"
265
+ },
266
+ {
267
+ "query_cn": "西湖木船上看水道风光",
268
+ "query_en": "West Lake boat ride view",
269
+ "ground_truth": [
270
+ "IMG_0354.JPG",
271
+ "IMG_1366.jpg",
272
+ "IMG_1369.jpg",
273
+ "IMG_1371.jpg",
274
+ "IMG_8878.jpg"
275
+ ],
276
+ "ground_truth_count": 5,
277
+ "Location": "fact",
278
+ "Time": null,
279
+ "Person": null,
280
+ "Object": null,
281
+ "Concept": "cognitive",
282
+ "Genre": null,
283
+ "Source": "VM"
284
+ },
285
+ {
286
+ "query_cn": "烧烤食材准备细节",
287
+ "query_en": "bbq prep details",
288
+ "ground_truth": [
289
+ "IMG_4001.jpg"
290
+ ],
291
+ "ground_truth_count": 1,
292
+ "Location": null,
293
+ "Time": null,
294
+ "Person": null,
295
+ "Object": "cognitive",
296
+ "Concept": null,
297
+ "Genre": null,
298
+ "Source": "V"
299
+ },
300
+ {
301
+ "query_cn": "春天黄昏樱花满街道",
302
+ "query_en": "spring sunset cherry blossoms street",
303
+ "ground_truth": [
304
+ "IMG_9377.jpg"
305
+ ],
306
+ "ground_truth_count": 1,
307
+ "Location": "cognitive",
308
+ "Time": "cognitive",
309
+ "Person": null,
310
+ "Object": "cognitive",
311
+ "Concept": "cognitive",
312
+ "Genre": null,
313
+ "Source": "VM"
314
+ },
315
+ {
316
+ "query_cn": "杭州庆春路地铁站黄昏",
317
+ "query_en": "Hangzhou Qingchun Road subway sunset",
318
+ "ground_truth": [
319
+ "IMG_1518.jpg",
320
+ "IMG_1519.jpg"
321
+ ],
322
+ "ground_truth_count": 2,
323
+ "Location": "fact",
324
+ "Time": "cognitive",
325
+ "Person": null,
326
+ "Object": null,
327
+ "Concept": null,
328
+ "Genre": null,
329
+ "Source": "VM"
330
+ },
331
+ {
332
+ "query_cn": "男朋友拿我手机自拍的合照",
333
+ "query_en": "boyfriend selfie with me on my phone",
334
+ "ground_truth": [
335
+ "FullSizeRender 3.JPEG",
336
+ "FullSizeRender 3.JPG",
337
+ "FullSizeRender 4.JPG",
338
+ "FullSizeRender 8.JPG",
339
+ "IMG_0380.jpg",
340
+ "IMG_0413.JPG",
341
+ "IMG_0431.JPG",
342
+ "IMG_1069.JPG",
343
+ "IMG_1077.jpg",
344
+ "IMG_1141.JPG",
345
+ "IMG_1365(1).JPG",
346
+ "IMG_1961.JPG",
347
+ "IMG_2512.JPG",
348
+ "IMG_2628.JPG",
349
+ "IMG_2906.JPG",
350
+ "IMG_3019.JPG",
351
+ "IMG_3088.jpeg",
352
+ "IMG_3131.JPG",
353
+ "IMG_3227.JPG",
354
+ "IMG_3489.JPG",
355
+ "IMG_3672.JPG",
356
+ "IMG_3779.jpg",
357
+ "IMG_3888.JPG",
358
+ "IMG_4097.JPG",
359
+ "IMG_4143.JPG",
360
+ "IMG_4223.jpg",
361
+ "IMG_4946.JPG",
362
+ "IMG_5344.JPG",
363
+ "IMG_6135.JPG",
364
+ "IMG_6170.JPG",
365
+ "IMG_6200.JPG",
366
+ "IMG_6248.JPG",
367
+ "IMG_6250.JPG",
368
+ "IMG_6361.JPG",
369
+ "IMG_6368.JPG",
370
+ "IMG_6438.JPG",
371
+ "IMG_7339.JPEG",
372
+ "IMG_7356.JPG",
373
+ "IMG_7598.JPEG",
374
+ "IMG_7621.JPG",
375
+ "IMG_7661.JPG",
376
+ "IMG_7742.JPG",
377
+ "IMG_7754.JPG",
378
+ "IMG_7880(1).JPG",
379
+ "IMG_7921.JPG",
380
+ "IMG_7926.jpg",
381
+ "IMG_8023.JPG",
382
+ "IMG_8028.JPG",
383
+ "IMG_8033.jpg",
384
+ "IMG_8043(1).jpg",
385
+ "IMG_8046.JPG",
386
+ "IMG_8124.JPG",
387
+ "IMG_8323.jpg",
388
+ "IMG_8324.jpg",
389
+ "IMG_8427.JPG",
390
+ "IMG_8431.jpg",
391
+ "IMG_8432.jpg",
392
+ "IMG_8482.JPG",
393
+ "IMG_8497.jpg",
394
+ "IMG_8499.jpg",
395
+ "IMG_8808.JPG",
396
+ "IMG_8812.JPG",
397
+ "IMG_8813.JPG",
398
+ "IMG_8828.JPG",
399
+ "IMG_8857.JPG",
400
+ "IMG_8879.JPG",
401
+ "IMG_9045.JPG",
402
+ "IMG_9063.JPG",
403
+ "IMG_9070.JPG",
404
+ "IMG_9346.JPG",
405
+ "IMG_9462.jpg",
406
+ "IMG_9481.JPG",
407
+ "IMG_9530.JPEG",
408
+ "IMG_9694.JPG",
409
+ "IMG_9697.JPG",
410
+ "IMG_9703.JPG",
411
+ "IMG_9708.JPEG",
412
+ "IMG_9710.JPG",
413
+ "IMG_9719.jpg",
414
+ "IMG_9721.JPEG",
415
+ "IMG_9742.jpg",
416
+ "IMG_9824.JPG"
417
+ ],
418
+ "ground_truth_count": 82,
419
+ "Location": null,
420
+ "Time": null,
421
+ "Person": "cognitive",
422
+ "Object": null,
423
+ "Concept": "cognitive",
424
+ "Genre": null,
425
+ "Source": "VF"
426
+ },
427
+ {
428
+ "query_cn": "我寝室里倒腾的御姐风发型",
429
+ "query_en": "me in dorm trying edgy hairstyle",
430
+ "ground_truth": [
431
+ "IMG_1587.jpeg",
432
+ "IMG_1594.jpeg",
433
+ "IMG_4022(1).JPG",
434
+ "IMG_5349.jpeg",
435
+ "IMG_8224.jpeg",
436
+ "IMG_9223.jpeg"
437
+ ],
438
+ "ground_truth_count": 6,
439
+ "Location": "cognitive",
440
+ "Time": null,
441
+ "Person": null,
442
+ "Object": "cognitive",
443
+ "Concept": null,
444
+ "Genre": null,
445
+ "Source": "V"
446
+ },
447
+ {
448
+ "query_cn": "和男朋友的合照,我戴太阳项链那几张",
449
+ "query_en": "me and boyfriend pics with sun necklace",
450
+ "ground_truth": [
451
+ "IMG_2262.jpeg",
452
+ "IMG_2626.JPG",
453
+ "IMG_2642.JPG"
454
+ ],
455
+ "ground_truth_count": 3,
456
+ "Location": null,
457
+ "Time": null,
458
+ "Person": "cognitive",
459
+ "Object": null,
460
+ "Concept": "cognitive",
461
+ "Genre": null,
462
+ "Source": "VF"
463
+ },
464
+ {
465
+ "query_cn": "小龙虾配啤酒",
466
+ "query_en": "crawfish and beer",
467
+ "ground_truth": [
468
+ "IMG_2485.jpg",
469
+ "IMG_2486.jpg",
470
+ "IMG_3073.JPG",
471
+ "IMG_4022.jpg",
472
+ "IMG_7496.JPG",
473
+ "IMG_7500.JPG"
474
+ ],
475
+ "ground_truth_count": 6,
476
+ "Location": null,
477
+ "Time": null,
478
+ "Person": null,
479
+ "Object": "cognitive",
480
+ "Concept": null,
481
+ "Genre": null,
482
+ "Source": "V"
483
+ },
484
+ {
485
+ "query_cn": "无人机摆成齐天大圣的瞬间",
486
+ "query_en": "drone forming Monkey King moment",
487
+ "ground_truth": [
488
+ "IMG_2658.JPG"
489
+ ],
490
+ "ground_truth_count": 1,
491
+ "Location": null,
492
+ "Time": "cognitive",
493
+ "Person": null,
494
+ "Object": null,
495
+ "Concept": "cognitive",
496
+ "Genre": null,
497
+ "Source": "VM"
498
+ },
499
+ {
500
+ "query_cn": "和男朋友玩双人游戏",
501
+ "query_en": "playing co-op games with boyfriend",
502
+ "ground_truth": [
503
+ "IMG_3311.JPEG",
504
+ "IMG_3312.JPG",
505
+ "IMG_3317.JPG"
506
+ ],
507
+ "ground_truth_count": 3,
508
+ "Location": null,
509
+ "Time": null,
510
+ "Person": "cognitive",
511
+ "Object": null,
512
+ "Concept": null,
513
+ "Genre": null,
514
+ "Source": "VF"
515
+ },
516
+ {
517
+ "query_cn": "青提蛋糕",
518
+ "query_en": "green grape cake",
519
+ "ground_truth": [
520
+ "IMG_2703.jpg",
521
+ "IMG_3618.JPG",
522
+ "IMG_3859.jpg",
523
+ "IMG_3860.JPG"
524
+ ],
525
+ "ground_truth_count": 4,
526
+ "Location": null,
527
+ "Time": null,
528
+ "Person": null,
529
+ "Object": "fact",
530
+ "Concept": null,
531
+ "Genre": null,
532
+ "Source": "V"
533
+ },
534
+ {
535
+ "query_cn": "黑神艺术展前言内容",
536
+ "query_en": "Black Myth exhibit intro text",
537
+ "ground_truth": [
538
+ "IMG_3673(1).JPG"
539
+ ],
540
+ "ground_truth_count": 1,
541
+ "Location": null,
542
+ "Time": null,
543
+ "Person": null,
544
+ "Object": null,
545
+ "Concept": null,
546
+ "Genre": "cognitive",
547
+ "Source": "V"
548
+ },
549
+ {
550
+ "query_cn": "黑神话 四姐等身比例雕塑",
551
+ "query_en": "Black Myth Four Sisters life-size statue",
552
+ "ground_truth": [
553
+ "IMG_3720.JPG"
554
+ ],
555
+ "ground_truth_count": 1,
556
+ "Location": null,
557
+ "Time": null,
558
+ "Person": null,
559
+ "Object": "cognitive",
560
+ "Concept": null,
561
+ "Genre": null,
562
+ "Source": "V"
563
+ },
564
+ {
565
+ "query_cn": "黑神话 黄风大圣设定图",
566
+ "query_en": "Black Myth Yellow Wind Demon concept art",
567
+ "ground_truth": [
568
+ "IMG_3696.JPG"
569
+ ],
570
+ "ground_truth_count": 1,
571
+ "Location": null,
572
+ "Time": null,
573
+ "Person": null,
574
+ "Object": null,
575
+ "Concept": null,
576
+ "Genre": "cognitive",
577
+ "Source": "V"
578
+ },
579
+ {
580
+ "query_cn": "悟空雕塑细节",
581
+ "query_en": "Wukong statue details",
582
+ "ground_truth": [
583
+ "IMG_3710.JPG"
584
+ ],
585
+ "ground_truth_count": 1,
586
+ "Location": null,
587
+ "Time": null,
588
+ "Person": null,
589
+ "Object": "cognitive",
590
+ "Concept": null,
591
+ "Genre": null,
592
+ "Source": "V"
593
+ },
594
+ {
595
+ "query_cn": "22岁生日庆祝",
596
+ "query_en": "22nd birthday celebration",
597
+ "ground_truth": [
598
+ "IMG_2703.jpg",
599
+ "IMG_3834.JPG",
600
+ "IMG_3849.JPG",
601
+ "IMG_3853(1).JPG",
602
+ "IMG_3859.jpg",
603
+ "IMG_3860.JPG"
604
+ ],
605
+ "ground_truth_count": 6,
606
+ "Location": null,
607
+ "Time": "cognitive",
608
+ "Person": null,
609
+ "Object": null,
610
+ "Concept": null,
611
+ "Genre": null,
612
+ "Source": "VM"
613
+ },
614
+ {
615
+ "query_cn": "红色燃葫芦 游戏道具实体版",
616
+ "query_en": "red gourd game prop replica",
617
+ "ground_truth": [
618
+ "IMG_3773.JPG"
619
+ ],
620
+ "ground_truth_count": 1,
621
+ "Location": null,
622
+ "Time": null,
623
+ "Person": null,
624
+ "Object": "cognitive",
625
+ "Concept": null,
626
+ "Genre": null,
627
+ "Source": "V"
628
+ },
629
+ {
630
+ "query_cn": "喂绵羊吃东西的瞬间",
631
+ "query_en": "feeding sheep moment",
632
+ "ground_truth": [
633
+ "IMG_2856.jpg",
634
+ "IMG_2858.jpg"
635
+ ],
636
+ "ground_truth_count": 2,
637
+ "Location": null,
638
+ "Time": null,
639
+ "Person": null,
640
+ "Object": "cognitive",
641
+ "Concept": null,
642
+ "Genre": null,
643
+ "Source": "V"
644
+ },
645
+ {
646
+ "query_cn": "男朋友学孙悟空打坐",
647
+ "query_en": "boyfriend meditating like Sun Wukong",
648
+ "ground_truth": [
649
+ "IMG_3760.JPG"
650
+ ],
651
+ "ground_truth_count": 1,
652
+ "Location": null,
653
+ "Time": null,
654
+ "Person": "cognitive",
655
+ "Object": "cognitive",
656
+ "Concept": null,
657
+ "Genre": null,
658
+ "Source": "V"
659
+ },
660
+ {
661
+ "query_cn": "拱墅区河滨",
662
+ "query_en": "Gongshu riverside",
663
+ "ground_truth": [
664
+ "IMG_4161.jpg",
665
+ "IMG_5013.JPG",
666
+ "IMG_5016.JPG",
667
+ "IMG_6381.JPG",
668
+ "IMG_6383.JPG",
669
+ "IMG_6406.JPG",
670
+ "IMG_6421.JPG",
671
+ "IMG_6432.JPG"
672
+ ],
673
+ "ground_truth_count": 8,
674
+ "Location": "fact",
675
+ "Time": null,
676
+ "Person": null,
677
+ "Object": null,
678
+ "Concept": null,
679
+ "Genre": null,
680
+ "Source": "VM"
681
+ },
682
+ {
683
+ "query_cn": "五月下午的安桥港",
684
+ "query_en": "Anqiao Port May afternoon",
685
+ "ground_truth": [
686
+ "IMG_4975.JPG",
687
+ "IMG_5016.JPG"
688
+ ],
689
+ "ground_truth_count": 2,
690
+ "Location": "fact",
691
+ "Time": "fact",
692
+ "Person": null,
693
+ "Object": null,
694
+ "Concept": null,
695
+ "Genre": null,
696
+ "Source": "VM"
697
+ },
698
+ {
699
+ "query_cn": "手工雕塑上色前",
700
+ "query_en": "handmade sculpture before painting",
701
+ "ground_truth": [
702
+ "IMG_0957.jpg",
703
+ "IMG_3091.jpg",
704
+ "IMG_9088.jpg"
705
+ ],
706
+ "ground_truth_count": 3,
707
+ "Location": null,
708
+ "Time": null,
709
+ "Person": null,
710
+ "Object": "cognitive",
711
+ "Concept": null,
712
+ "Genre": null,
713
+ "Source": "V"
714
+ },
715
+ {
716
+ "query_cn": "可可粉可颂",
717
+ "query_en": "cocoa croissant",
718
+ "ground_truth": [
719
+ "IMG_1472.jpg"
720
+ ],
721
+ "ground_truth_count": 1,
722
+ "Location": null,
723
+ "Time": null,
724
+ "Person": null,
725
+ "Object": "fact",
726
+ "Concept": null,
727
+ "Genre": null,
728
+ "Source": "V"
729
+ },
730
+ {
731
+ "query_cn": "韩国入境卡填写参考",
732
+ "query_en": "Korean entry card example",
733
+ "ground_truth": [
734
+ "IMG_3315.jpg"
735
+ ],
736
+ "ground_truth_count": 1,
737
+ "Location": "fact",
738
+ "Time": null,
739
+ "Person": null,
740
+ "Object": null,
741
+ "Concept": null,
742
+ "Genre": "fact",
743
+ "Source": "V"
744
+ },
745
+ {
746
+ "query_cn": "首尔的正宗韩式辣炒年糕",
747
+ "query_en": "authentic spicy tteokbokki in Seoul",
748
+ "ground_truth": [
749
+ "IMG_3408.jpg"
750
+ ],
751
+ "ground_truth_count": 1,
752
+ "Location": "fact",
753
+ "Time": null,
754
+ "Person": null,
755
+ "Object": "cognitive",
756
+ "Concept": null,
757
+ "Genre": null,
758
+ "Source": "VM"
759
+ },
760
+ {
761
+ "query_cn": "演唱会应援热烈瞬间",
762
+ "query_en": "concert fan support moments",
763
+ "ground_truth": [
764
+ "IMG_1051.jpg",
765
+ "IMG_1054.jpg",
766
+ "IMG_1071.jpeg",
767
+ "IMG_1145.jpg",
768
+ "IMG_1148.jpg",
769
+ "IMG_1847.jpg",
770
+ "IMG_1869.jpg",
771
+ "IMG_3862.jpg",
772
+ "IMG_3866.jpg",
773
+ "IMG_3868.jpeg",
774
+ "IMG_4157.jpg",
775
+ "IMG_4204.jpeg",
776
+ "IMG_5391.jpeg",
777
+ "IMG_7538.jpg",
778
+ "IMG_8270.jpeg",
779
+ "IMG_8296.jpeg",
780
+ "IMG_8302.jpg",
781
+ "IMG_8304.jpeg",
782
+ "IMG_8684.jpg"
783
+ ],
784
+ "ground_truth_count": 19,
785
+ "Location": null,
786
+ "Time": null,
787
+ "Person": null,
788
+ "Object": null,
789
+ "Concept": "cognitive",
790
+ "Genre": null,
791
+ "Source": "VM"
792
+ },
793
+ {
794
+ "query_cn": "520浪漫火锅晚餐",
795
+ "query_en": "520 romantic hotpot dinner",
796
+ "ground_truth": [
797
+ "IMG_5920.JPG",
798
+ "IMG_5922.JPG"
799
+ ],
800
+ "ground_truth_count": 2,
801
+ "Location": null,
802
+ "Time": "cognitive",
803
+ "Person": null,
804
+ "Object": "cognitive",
805
+ "Concept": null,
806
+ "Genre": null,
807
+ "Source": "VMF"
808
+ },
809
+ {
810
+ "query_cn": "杭州香积寺建筑与城市巧妙融合",
811
+ "query_en": "Hangzhou Xiangji Temple blending with city",
812
+ "ground_truth": [
813
+ "IMG_6383.JPG",
814
+ "IMG_6388.JPG"
815
+ ],
816
+ "ground_truth_count": 2,
817
+ "Location": "fact",
818
+ "Time": null,
819
+ "Person": null,
820
+ "Object": "cognitive",
821
+ "Concept": null,
822
+ "Genre": null,
823
+ "Source": "VM"
824
+ },
825
+ {
826
+ "query_cn": "杭州湖滨商圈超大拉布布",
827
+ "query_en": "Hangzhou Lakeside huge banner",
828
+ "ground_truth": [
829
+ "IMG_4337.jpg",
830
+ "IMG_4338.jpg",
831
+ "IMG_7338.JPG"
832
+ ],
833
+ "ground_truth_count": 3,
834
+ "Location": "fact",
835
+ "Time": null,
836
+ "Person": null,
837
+ "Object": "cognitive",
838
+ "Concept": null,
839
+ "Genre": null,
840
+ "Source": "VM"
841
+ },
842
+ {
843
+ "query_cn": "杭州夜晚停车场雨后抓拍合照",
844
+ "query_en": "rainy night parking lot photo with boyfriend in Hangzhou",
845
+ "ground_truth": [
846
+ "IMG_7484.JPG"
847
+ ],
848
+ "ground_truth_count": 1,
849
+ "Location": "cognitive",
850
+ "Time": "cognitive",
851
+ "Person": "cognitive",
852
+ "Object": null,
853
+ "Concept": "cognitive",
854
+ "Genre": null,
855
+ "Source": "VMF"
856
+ },
857
+ {
858
+ "query_cn": "径山镇绿道散步",
859
+ "query_en": "Jingshan greenway walk",
860
+ "ground_truth": [
861
+ "IMG_4395.jpg",
862
+ "IMG_4399 2.jpg"
863
+ ],
864
+ "ground_truth_count": 2,
865
+ "Location": "fact",
866
+ "Time": null,
867
+ "Person": null,
868
+ "Object": null,
869
+ "Concept": null,
870
+ "Genre": null,
871
+ "Source": "VM"
872
+ },
873
+ {
874
+ "query_cn": "傍晚义乌钟楼",
875
+ "query_en": "Yiwu clock tower at dusk",
876
+ "ground_truth": [
877
+ "IMG_7800.JPG"
878
+ ],
879
+ "ground_truth_count": 1,
880
+ "Location": "fact",
881
+ "Time": "cognitive",
882
+ "Person": null,
883
+ "Object": null,
884
+ "Concept": null,
885
+ "Genre": null,
886
+ "Source": "VM"
887
+ },
888
+ {
889
+ "query_cn": "和男朋友地铁上的合照",
890
+ "query_en": "subway photo with boyfriend",
891
+ "ground_truth": [
892
+ "IMG_2048.JPG",
893
+ "IMG_2049.jpg",
894
+ "IMG_2061.jpg",
895
+ "IMG_2064.jpg",
896
+ "IMG_6135.JPG",
897
+ "IMG_6307.jpg",
898
+ "IMG_6417.jpeg",
899
+ "IMG_7439.JPG",
900
+ "IMG_7931.jpg",
901
+ "IMG_7946.JPG",
902
+ "IMG_7951.JPG",
903
+ "IMG_7952.JPG",
904
+ "IMG_8093.JPG",
905
+ "IMG_8098.JPG"
906
+ ],
907
+ "ground_truth_count": 14,
908
+ "Location": "cognitive",
909
+ "Time": null,
910
+ "Person": "cognitive",
911
+ "Object": null,
912
+ "Concept": null,
913
+ "Genre": null,
914
+ "Source": "VMF"
915
+ },
916
+ {
917
+ "query_cn": "我和男朋友亲密靠在一起",
918
+ "query_en": "me and boyfriend cuddling",
919
+ "ground_truth": [
920
+ "175533_livephoto.jpeg",
921
+ "FullSizeRender 4.JPG",
922
+ "FullSizeRender 8.JPG",
923
+ "IMG_0413.JPG",
924
+ "IMG_1069.JPG",
925
+ "IMG_1077.jpg",
926
+ "IMG_1949.JPG",
927
+ "IMG_1961.JPG",
928
+ "IMG_2262.jpeg",
929
+ "IMG_2512.JPG",
930
+ "IMG_2626.JPG",
931
+ "IMG_2628.JPG",
932
+ "IMG_2681.jpeg",
933
+ "IMG_3017.JPG",
934
+ "IMG_3018.JPG",
935
+ "IMG_3019.JPG",
936
+ "IMG_3088.jpeg",
937
+ "IMG_3227.JPG",
938
+ "IMG_3305.JPG",
939
+ "IMG_3981.jpeg",
940
+ "IMG_4097.JPG",
941
+ "IMG_4131.JPG",
942
+ "IMG_4176.JPG",
943
+ "IMG_4342.JPG",
944
+ "IMG_6303.JPG",
945
+ "IMG_6307.jpg",
946
+ "IMG_6368.JPG",
947
+ "IMG_6376.JPG",
948
+ "IMG_6417.jpeg",
949
+ "IMG_7056.jpeg",
950
+ "IMG_7344.JPEG",
951
+ "IMG_7461(1).JPG",
952
+ "IMG_7550.jpeg",
953
+ "IMG_7598.JPEG",
954
+ "IMG_7621.JPG",
955
+ "IMG_7754.JPG",
956
+ "IMG_7921.JPG",
957
+ "IMG_7926.jpg",
958
+ "IMG_8028.JPG",
959
+ "IMG_8031.JPG",
960
+ "IMG_8033.jpg",
961
+ "IMG_8046.JPG",
962
+ "IMG_8075.JPG",
963
+ "IMG_8332.JPG",
964
+ "IMG_8423.JPG",
965
+ "IMG_8430.JPG",
966
+ "IMG_8857.JPG",
967
+ "IMG_8871.JPG",
968
+ "IMG_8879.JPG",
969
+ "IMG_8897.JPG",
970
+ "IMG_8937.JPG",
971
+ "IMG_8949.JPG",
972
+ "IMG_9044.JPG",
973
+ "IMG_9045.JPG",
974
+ "IMG_9131.JPG",
975
+ "IMG_9338.jpeg",
976
+ "IMG_9462.jpg",
977
+ "IMG_9481.JPG",
978
+ "IMG_9530.JPEG",
979
+ "IMG_9697.JPG",
980
+ "IMG_9703.JPG",
981
+ "IMG_9708.JPEG",
982
+ "IMG_9708.JPG",
983
+ "IMG_9710.JPG",
984
+ "IMG_9719.jpg",
985
+ "IMG_9721.JPEG",
986
+ "IMG_9824.JPG",
987
+ "fc1f5e4d91da9684f551f1ef7916cd8e.JPG"
988
+ ],
989
+ "ground_truth_count": 68,
990
+ "Location": null,
991
+ "Time": null,
992
+ "Person": "cognitive",
993
+ "Object": null,
994
+ "Concept": "cognitive",
995
+ "Genre": null,
996
+ "Source": "VF"
997
+ },
998
+ {
999
+ "query_cn": "和男朋友在咖啡馆搞学习",
1000
+ "query_en": "studying with boyfriend at café",
1001
+ "ground_truth": [
1002
+ "IMG_7163.jpg",
1003
+ "IMG_8907.JPG",
1004
+ "IMG_8928.JPG",
1005
+ "IMG_8935(1).JPG",
1006
+ "IMG_8939.JPG"
1007
+ ],
1008
+ "ground_truth_count": 5,
1009
+ "Location": "cognitive",
1010
+ "Time": null,
1011
+ "Person": "cognitive",
1012
+ "Object": "cognitive",
1013
+ "Concept": null,
1014
+ "Genre": null,
1015
+ "Source": "VMF"
1016
+ },
1017
+ {
1018
+ "query_cn": "撒辣椒粉的水果拼盘",
1019
+ "query_en": "fruit platter with chili powder",
1020
+ "ground_truth": [
1021
+ "IMG_4963.jpg"
1022
+ ],
1023
+ "ground_truth_count": 1,
1024
+ "Location": null,
1025
+ "Time": null,
1026
+ "Person": null,
1027
+ "Object": "fact",
1028
+ "Concept": null,
1029
+ "Genre": null,
1030
+ "Source": "V"
1031
+ },
1032
+ {
1033
+ "query_cn": "我挑发饰时的专注瞬间",
1034
+ "query_en": "me focused picking hair accessories",
1035
+ "ground_truth": [
1036
+ "IMG_6238.JPEG",
1037
+ "IMG_9640.JPG"
1038
+ ],
1039
+ "ground_truth_count": 2,
1040
+ "Location": null,
1041
+ "Time": null,
1042
+ "Person": "cognitive",
1043
+ "Object": null,
1044
+ "Concept": "cognitive",
1045
+ "Genre": null,
1046
+ "Source": "V"
1047
+ },
1048
+ {
1049
+ "query_cn": "我和男朋友包KTV间",
1050
+ "query_en": "me and boyfriend renting KTV room",
1051
+ "ground_truth": [
1052
+ "IMG_3065.JPG",
1053
+ "IMG_3230.jpg",
1054
+ "IMG_5347.JPG",
1055
+ "IMG_5352.JPG",
1056
+ "IMG_5353.JPG",
1057
+ "IMG_5358.JPG",
1058
+ "IMG_5388.jpg",
1059
+ "IMG_5396.JPG",
1060
+ "IMG_9762.jpg",
1061
+ "IMG_9763.JPG",
1062
+ "IMG_9778.jpg",
1063
+ "IMG_9781.jpg"
1064
+ ],
1065
+ "ground_truth_count": 12,
1066
+ "Location": "cognitive",
1067
+ "Time": null,
1068
+ "Person": "cognitive",
1069
+ "Object": null,
1070
+ "Concept": null,
1071
+ "Genre": null,
1072
+ "Source": "VMF"
1073
+ },
1074
+ {
1075
+ "query_cn": "义乌车站清晨候车,我状态巨差的照片",
1076
+ "query_en": "Yiwu station morning bad photo of me",
1077
+ "ground_truth": [
1078
+ "IMG_9802.JPG",
1079
+ "IMG_9808.JPG"
1080
+ ],
1081
+ "ground_truth_count": 2,
1082
+ "Location": "fact",
1083
+ "Time": "cognitive",
1084
+ "Person": "cognitive",
1085
+ "Object": null,
1086
+ "Concept": "cognitive",
1087
+ "Genre": null,
1088
+ "Source": "VM"
1089
+ },
1090
+ {
1091
+ "query_cn": "自己侧身试一件深灰色衣服",
1092
+ "query_en": "me sideways trying dark gray outfit",
1093
+ "ground_truth": [
1094
+ "IMG_1269.JPG",
1095
+ "IMG_1271.JPG"
1096
+ ],
1097
+ "ground_truth_count": 2,
1098
+ "Location": null,
1099
+ "Time": null,
1100
+ "Person": "cognitive",
1101
+ "Object": null,
1102
+ "Concept": null,
1103
+ "Genre": null,
1104
+ "Source": "V"
1105
+ },
1106
+ {
1107
+ "query_cn": "男朋友拍的我拍饮品的瞬间",
1108
+ "query_en": "boyfriend caught me photographing drinks",
1109
+ "ground_truth": [
1110
+ "IMG_1386.JPG"
1111
+ ],
1112
+ "ground_truth_count": 1,
1113
+ "Location": null,
1114
+ "Time": null,
1115
+ "Person": "cognitive",
1116
+ "Object": null,
1117
+ "Concept": "cognitive",
1118
+ "Genre": null,
1119
+ "Source": "VF"
1120
+ },
1121
+ {
1122
+ "query_cn": "饰品店挑选项链",
1123
+ "query_en": "picking necklaces at jewelry shop",
1124
+ "ground_truth": [
1125
+ "IMG_1284.JPG",
1126
+ "IMG_1344.JPG"
1127
+ ],
1128
+ "ground_truth_count": 2,
1129
+ "Location": "cognitive",
1130
+ "Time": null,
1131
+ "Person": null,
1132
+ "Object": "fact",
1133
+ "Concept": null,
1134
+ "Genre": null,
1135
+ "Source": "V"
1136
+ },
1137
+ {
1138
+ "query_cn": "明哥和我穿情侣装自拍",
1139
+ "query_en": "Ming and me couple outfit selfie",
1140
+ "ground_truth": [
1141
+ "IMG_4176.JPG",
1142
+ "IMG_4946.JPG",
1143
+ "IMG_6336.JPG",
1144
+ "IMG_6417.jpeg"
1145
+ ],
1146
+ "ground_truth_count": 4,
1147
+ "Location": null,
1148
+ "Time": null,
1149
+ "Person": "cognitive",
1150
+ "Object": null,
1151
+ "Concept": "cognitive",
1152
+ "Genre": null,
1153
+ "Source": "VMF"
1154
+ },
1155
+ {
1156
+ "query_cn": "西湖夜游的游船",
1157
+ "query_en": "West Lake night boat ride",
1158
+ "ground_truth": [
1159
+ "IMG_0411.JPG",
1160
+ "IMG_0427.JPG",
1161
+ "IMG_2277 2.jpg",
1162
+ "IMG_2278.jpg",
1163
+ "IMG_2632.JPG",
1164
+ "IMG_2658.JPG",
1165
+ "IMG_8707.jpg"
1166
+ ],
1167
+ "ground_truth_count": 7,
1168
+ "Location": "fact",
1169
+ "Time": "cognitive",
1170
+ "Person": null,
1171
+ "Object": "fact",
1172
+ "Concept": null,
1173
+ "Genre": null,
1174
+ "Source": "VM"
1175
+ },
1176
+ {
1177
+ "query_cn": "我霸道总裁式搂住男友",
1178
+ "query_en": "me hugging boyfriend like a boss",
1179
+ "ground_truth": [
1180
+ "IMG_2617.JPG",
1181
+ "IMG_9710.JPG"
1182
+ ],
1183
+ "ground_truth_count": 2,
1184
+ "Location": null,
1185
+ "Time": null,
1186
+ "Person": "cognitive",
1187
+ "Object": null,
1188
+ "Concept": "cognitive",
1189
+ "Genre": null,
1190
+ "Source": "VF"
1191
+ },
1192
+ {
1193
+ "query_cn": "我摆着奥特曼姿势",
1194
+ "query_en": "me posing like Ultraman",
1195
+ "ground_truth": [
1196
+ "IMG_3332(1).JPG"
1197
+ ],
1198
+ "ground_truth_count": 1,
1199
+ "Location": null,
1200
+ "Time": null,
1201
+ "Person": "cognitive",
1202
+ "Object": null,
1203
+ "Concept": "cognitive",
1204
+ "Genre": null,
1205
+ "Source": "V"
1206
+ },
1207
+ {
1208
+ "query_cn": "车内休息的温馨时刻",
1209
+ "query_en": "cozy car moment",
1210
+ "ground_truth": [
1211
+ "FullSizeRender 4.JPEG",
1212
+ "IMG_0302.JPG",
1213
+ "IMG_0317.JPG",
1214
+ "IMG_0907.jpeg",
1215
+ "IMG_1209.JPG",
1216
+ "IMG_1211.JPG",
1217
+ "IMG_1940.JPG",
1218
+ "IMG_1941.JPG",
1219
+ "IMG_2048.JPG",
1220
+ "IMG_2049.jpg",
1221
+ "IMG_2440.JPG",
1222
+ "IMG_3893.JPG",
1223
+ "IMG_4182.JPG",
1224
+ "IMG_4183.JPG",
1225
+ "IMG_4586.jpeg",
1226
+ "IMG_5152.JPG",
1227
+ "IMG_5368.jpeg",
1228
+ "IMG_5369.jpeg",
1229
+ "IMG_5750.JPG",
1230
+ "IMG_5806.jpeg",
1231
+ "IMG_6135.JPG",
1232
+ "IMG_6307.jpg",
1233
+ "IMG_6312.jpeg",
1234
+ "IMG_6315.jpg",
1235
+ "IMG_6319.JPG",
1236
+ "IMG_6352.JPG",
1237
+ "IMG_6483.jpeg",
1238
+ "IMG_6988.jpeg",
1239
+ "IMG_6992.jpeg",
1240
+ "IMG_6994.jpeg",
1241
+ "IMG_7018.jpeg",
1242
+ "IMG_7019.jpeg",
1243
+ "IMG_7353.JPG",
1244
+ "IMG_7951.JPG",
1245
+ "IMG_8022.jpeg",
1246
+ "IMG_8098.JPG",
1247
+ "IMG_9081.jpeg",
1248
+ "IMG_9341.JPG",
1249
+ "IMG_9623.jpg",
1250
+ "IMG_9796.JPG"
1251
+ ],
1252
+ "ground_truth_count": 40,
1253
+ "Location": "cognitive",
1254
+ "Time": null,
1255
+ "Person": null,
1256
+ "Object": null,
1257
+ "Concept": "cognitive",
1258
+ "Genre": null,
1259
+ "Source": "V"
1260
+ },
1261
+ {
1262
+ "query_cn": "圣诞节前的精致饮品",
1263
+ "query_en": "fancy drink before Christmas",
1264
+ "ground_truth": [
1265
+ "IMG_0360.jpg",
1266
+ "IMG_1389.jpg",
1267
+ "IMG_4838.jpg",
1268
+ "IMG_5180.jpg",
1269
+ "IMG_5661.jpg",
1270
+ "IMG_7558.jpg",
1271
+ "IMG_9101.jpg",
1272
+ "IMG_9769.jpg",
1273
+ "IMG_9983.jpg"
1274
+ ],
1275
+ "ground_truth_count": 9,
1276
+ "Location": null,
1277
+ "Time": "cognitive",
1278
+ "Person": null,
1279
+ "Object": "fact",
1280
+ "Concept": null,
1281
+ "Genre": null,
1282
+ "Source": "V"
1283
+ },
1284
+ {
1285
+ "query_cn": "自己穿米色羽绒服装酷",
1286
+ "query_en": "me in beige puffer looking cool",
1287
+ "ground_truth": [
1288
+ "IMG_0118.jpeg",
1289
+ "IMG_0231.jpeg",
1290
+ "IMG_0235.jpeg",
1291
+ "IMG_0239.jpeg",
1292
+ "IMG_0240.jpeg",
1293
+ "IMG_0242.jpeg",
1294
+ "IMG_1177.jpeg",
1295
+ "IMG_1190.jpeg",
1296
+ "IMG_3330.JPG",
1297
+ "IMG_3332(1).JPG",
1298
+ "IMG_4007.JPG",
1299
+ "IMG_4019.JPG",
1300
+ "IMG_4036.JPG",
1301
+ "IMG_4053.JPG",
1302
+ "IMG_4058.JPG",
1303
+ "IMG_4124.JPG",
1304
+ "IMG_8022.jpeg",
1305
+ "IMG_8064.jpeg",
1306
+ "IMG_8086.jpeg",
1307
+ "IMG_8146.jpeg",
1308
+ "IMG_8227.jpeg",
1309
+ "IMG_8753.jpeg",
1310
+ "IMG_8804.jpeg",
1311
+ "IMG_8805.jpeg",
1312
+ "IMG_9213.jpeg",
1313
+ "IMG_9337 2.jpeg",
1314
+ "IMG_9407.jpeg"
1315
+ ],
1316
+ "ground_truth_count": 27,
1317
+ "Location": null,
1318
+ "Time": null,
1319
+ "Person": null,
1320
+ "Object": "cognitive",
1321
+ "Concept": "cognitive",
1322
+ "Genre": null,
1323
+ "Source": "V"
1324
+ },
1325
+ {
1326
+ "query_cn": "夕阳下的电线杆和农田",
1327
+ "query_en": "sunset power lines and fields",
1328
+ "ground_truth": [
1329
+ "IMG_4609.jpg",
1330
+ "IMG_7380.jpg"
1331
+ ],
1332
+ "ground_truth_count": 2,
1333
+ "Location": null,
1334
+ "Time": "cognitive",
1335
+ "Person": null,
1336
+ "Object": "fact",
1337
+ "Concept": null,
1338
+ "Genre": null,
1339
+ "Source": "V"
1340
+ },
1341
+ {
1342
+ "query_cn": "宁波夜晚赛博朋克风过街天桥",
1343
+ "query_en": "Ningbo cyberpunk night bridge",
1344
+ "ground_truth": [
1345
+ "IMG_1438.jpg"
1346
+ ],
1347
+ "ground_truth_count": 1,
1348
+ "Location": "fact",
1349
+ "Time": "cognitive",
1350
+ "Person": null,
1351
+ "Object": null,
1352
+ "Concept": "cognitive",
1353
+ "Genre": null,
1354
+ "Source": "VM"
1355
+ },
1356
+ {
1357
+ "query_cn": "沙坡尾街头涂鸦",
1358
+ "query_en": "Shapowei street graffiti",
1359
+ "ground_truth": [
1360
+ "IMG_5838.jpg"
1361
+ ],
1362
+ "ground_truth_count": 1,
1363
+ "Location": "fact",
1364
+ "Time": null,
1365
+ "Person": null,
1366
+ "Object": "cognitive",
1367
+ "Concept": null,
1368
+ "Genre": null,
1369
+ "Source": "VM"
1370
+ },
1371
+ {
1372
+ "query_cn": "鼓浪屿远眺城市天际线",
1373
+ "query_en": "Gulangyu city skyline view",
1374
+ "ground_truth": [
1375
+ "IMG_5592.jpg",
1376
+ "IMG_5608.jpg"
1377
+ ],
1378
+ "ground_truth_count": 2,
1379
+ "Location": "fact",
1380
+ "Time": null,
1381
+ "Person": null,
1382
+ "Object": null,
1383
+ "Concept": null,
1384
+ "Genre": null,
1385
+ "Source": "VM"
1386
+ },
1387
+ {
1388
+ "query_cn": "杭州冬天吃的西式简餐",
1389
+ "query_en": "Western winter meal in Hangzhou",
1390
+ "ground_truth": [
1391
+ "IMG_8506.jpg",
1392
+ "IMG_8725.jpg"
1393
+ ],
1394
+ "ground_truth_count": 2,
1395
+ "Location": "fact",
1396
+ "Time": "cognitive",
1397
+ "Person": null,
1398
+ "Object": "cognitive",
1399
+ "Concept": null,
1400
+ "Genre": null,
1401
+ "Source": "VM"
1402
+ },
1403
+ {
1404
+ "query_cn": "在鄞州区的照片",
1405
+ "query_en": "Yinzhou District photos",
1406
+ "ground_truth": [
1407
+ "IMG_1438.jpg",
1408
+ "IMG_1472.jpg",
1409
+ "IMG_1435.jpg"
1410
+ ],
1411
+ "ground_truth_count": 3,
1412
+ "Location": "fact",
1413
+ "Time": null,
1414
+ "Person": null,
1415
+ "Object": null,
1416
+ "Concept": null,
1417
+ "Genre": null,
1418
+ "Source": "M"
1419
+ },
1420
+ {
1421
+ "query_cn": "在钱塘的照片",
1422
+ "query_en": "Qiantang photos",
1423
+ "ground_truth": [
1424
+ "IMG_5728.jpg",
1425
+ "IMG_0412.jpg",
1426
+ "IMG_6906.jpg",
1427
+ "IMG_8905.jpg",
1428
+ "IMG_4780.jpg",
1429
+ "IMG_8513.jpg",
1430
+ "IMG_0401.jpg",
1431
+ "IMG_0404.jpg",
1432
+ "IMG_4946.JPG",
1433
+ "IMG_6781.jpg",
1434
+ "IMG_1736.jpg",
1435
+ "IMG_7880.jpg",
1436
+ "IMG_4649.jpg",
1437
+ "IMG_4784.jpg",
1438
+ "IMG_8919.jpg",
1439
+ "IMG_0363.jpg",
1440
+ "IMG_6740.jpg",
1441
+ "IMG_4785.jpg",
1442
+ "IMG_6726.jpg",
1443
+ "IMG_4976.JPG",
1444
+ "IMG_6696.jpg",
1445
+ "IMG_7683.jpg",
1446
+ "IMG_9823.jpg",
1447
+ "IMG_8489.jpg",
1448
+ "IMG_9536.jpg",
1449
+ "IMG_6166.jpg",
1450
+ "IMG_4838.jpg",
1451
+ "IMG_0044.jpg",
1452
+ "IMG_0400.jpg",
1453
+ "IMG_8506.jpg",
1454
+ "IMG_4438.jpg",
1455
+ "IMG_5717.jpg",
1456
+ "IMG_0405.jpg",
1457
+ "IMG_4439.jpg",
1458
+ "IMG_8215.jpg",
1459
+ "IMG_6715.jpg",
1460
+ "IMG_9663.jpg",
1461
+ "IMG_3643.jpg",
1462
+ "IMG_0267.jpg",
1463
+ "IMG_4435.jpg",
1464
+ "IMG_8180.jpg",
1465
+ "IMG_0360.jpg",
1466
+ "IMG_4776.jpg",
1467
+ "IMG_7882.jpg",
1468
+ "IMG_9868.jpg",
1469
+ "IMG_7163.jpg",
1470
+ "IMG_8906.jpg",
1471
+ "IMG_4834.jpg",
1472
+ "IMG_6164.jpg",
1473
+ "IMG_8492.jpg",
1474
+ "IMG_8684.jpg",
1475
+ "IMG_4436.jpg",
1476
+ "IMG_4652.jpg",
1477
+ "IMG_4771.jpg",
1478
+ "IMG_7167.jpg",
1479
+ "IMG_1389.jpg",
1480
+ "IMG_4786.jpg",
1481
+ "IMG_0403.jpg",
1482
+ "IMG_9662.jpg",
1483
+ "IMG_4837.jpg",
1484
+ "IMG_4651.jpg",
1485
+ "IMG_0362.jpg",
1486
+ "IMG_6202.jpg"
1487
+ ],
1488
+ "ground_truth_count": 63,
1489
+ "Location": "cognitive",
1490
+ "Time": null,
1491
+ "Person": null,
1492
+ "Object": null,
1493
+ "Concept": null,
1494
+ "Genre": null,
1495
+ "Source": "M"
1496
+ },
1497
+ {
1498
+ "query_cn": "在滨江区的照片",
1499
+ "query_en": "Binjiang District photos",
1500
+ "ground_truth": [
1501
+ "IMG_8300.jpg",
1502
+ "IMG_3166.jpg",
1503
+ "IMG_1847.jpg",
1504
+ "IMG_5409.JPG",
1505
+ "IMG_9017.jpg",
1506
+ "IMG_1869.jpg",
1507
+ "IMG_8261.jpg",
1508
+ "IMG_8302.jpg",
1509
+ "IMG_9022.jpg"
1510
+ ],
1511
+ "ground_truth_count": 9,
1512
+ "Location": "fact",
1513
+ "Time": null,
1514
+ "Person": null,
1515
+ "Object": null,
1516
+ "Concept": null,
1517
+ "Genre": null,
1518
+ "Source": "M"
1519
+ },
1520
+ {
1521
+ "query_cn": "西湖",
1522
+ "query_en": "West Lake",
1523
+ "ground_truth": [
1524
+ "IMG_6137.JPG",
1525
+ "IMG_6135.JPG",
1526
+ "IMG_7324.JPG",
1527
+ "IMG_1365(1).JPG",
1528
+ "IMG_3629.JPG",
1529
+ "IMG_4969.JPG"
1530
+ ],
1531
+ "ground_truth_count": 6,
1532
+ "Location": "fact",
1533
+ "Time": null,
1534
+ "Person": null,
1535
+ "Object": null,
1536
+ "Concept": null,
1537
+ "Genre": null,
1538
+ "Source": "M"
1539
+ },
1540
+ {
1541
+ "query_cn": "2025年4月 自己的照片",
1542
+ "query_en": "April 2025 my photos",
1543
+ "ground_truth": [
1544
+ "IMG_2028(1).jpg",
1545
+ "IMG_2626.JPG",
1546
+ "IMG_2702.JPG",
1547
+ "IMG_3672.JPG",
1548
+ "IMG_4022(1).JPG",
1549
+ "IMG_3803.jpg",
1550
+ "IMG_2697.JPG",
1551
+ "IMG_2049.jpg",
1552
+ "IMG_2032 2.jpg",
1553
+ "IMG_2742.jpg",
1554
+ "IMG_2698.JPG",
1555
+ "IMG_2032.jpg",
1556
+ "IMG_3066.JPG",
1557
+ "IMG_2061.jpg",
1558
+ "IMG_2696.JPG",
1559
+ "IMG_2036.JPG",
1560
+ "IMG_2699.JPG",
1561
+ "IMG_3779.jpg",
1562
+ "IMG_3801.jpg"
1563
+ ],
1564
+ "ground_truth_count": 19,
1565
+ "Location": null,
1566
+ "Time": "fact",
1567
+ "Person": "cognitive",
1568
+ "Object": null,
1569
+ "Concept": null,
1570
+ "Genre": null,
1571
+ "Source": "MF"
1572
+ },
1573
+ {
1574
+ "query_cn": "2024年秋季 我的照片",
1575
+ "query_en": "Fall 2024 my photos",
1576
+ "ground_truth": [
1577
+ "FullSizeRender 2.JPG",
1578
+ "FullSizeRender(1).JPG"
1579
+ ],
1580
+ "ground_truth_count": 2,
1581
+ "Location": null,
1582
+ "Time": "cognitive",
1583
+ "Person": "cognitive",
1584
+ "Object": null,
1585
+ "Concept": null,
1586
+ "Genre": null,
1587
+ "Source": "MF"
1588
+ },
1589
+ {
1590
+ "query_cn": "2025年夏季 明哥的照片",
1591
+ "query_en": "Summer 2025 Ming's photos",
1592
+ "ground_truth": [
1593
+ "IMG_9601.JPG",
1594
+ "IMG_8330.JPG",
1595
+ "IMG_1141.JPG",
1596
+ "IMG_8879.JPG",
1597
+ "IMG_9708.JPEG",
1598
+ "IMG_7933.JPG",
1599
+ "IMG_8430.JPG",
1600
+ "IMG_7921.JPG",
1601
+ "IMG_8323.jpg",
1602
+ "IMG_3018.JPG",
1603
+ "IMG_9063.JPG",
1604
+ "IMG_3219(1).JPG",
1605
+ "IMG_8828.JPG",
1606
+ "IMG_9520.JPEG",
1607
+ "IMG_9742.jpg",
1608
+ "IMG_9044.JPG",
1609
+ "IMG_8417.JPG",
1610
+ "IMG_8332.JPG",
1611
+ "IMG_9045.JPG",
1612
+ "IMG_7880(1).JPG",
1613
+ "IMG_9088(1).JPG",
1614
+ "IMG_8482.JPG",
1615
+ "IMG_9117.JPG",
1616
+ "FullSizeRender 5.JPEG",
1617
+ "IMG_8499.jpg",
1618
+ "IMG_8857.JPG",
1619
+ "IMG_8028.JPG",
1620
+ "IMG_8046.JPG",
1621
+ "IMG_9462.jpg",
1622
+ "IMG_9530.JPEG",
1623
+ "IMG_1941.JPG",
1624
+ "IMG_7932.jpg",
1625
+ "IMG_9422.JPG",
1626
+ "IMG_8935(1).JPG",
1627
+ "IMG_8325.jpg",
1628
+ "IMG_9344.JPG",
1629
+ "IMG_7754.JPG",
1630
+ "IMG_6336.JPG",
1631
+ "IMG_8907.JPG",
1632
+ "IMG_9694.JPG",
1633
+ "IMG_1226.jpg",
1634
+ "IMG_7742.JPG",
1635
+ "IMG_8324.jpg",
1636
+ "IMG_1940.JPG",
1637
+ "IMG_8818.JPG",
1638
+ "IMG_7598.JPEG",
1639
+ "IMG_5039.JPG",
1640
+ "IMG_4239.JPG",
1641
+ "IMG_9070.JPG",
1642
+ "IMG_8815.JPG",
1643
+ "IMG_9697.JPG",
1644
+ "IMG_8075.JPG",
1645
+ "IMG_4402.JPG",
1646
+ "IMG_9762.jpg",
1647
+ "IMG_7484.JPG",
1648
+ "IMG_8796.JPG",
1649
+ "IMG_7928.JPG",
1650
+ "IMG_4308.JPG",
1651
+ "IMG_8871.JPG",
1652
+ "FullSizeRender 8.JPG",
1653
+ "IMG_9763.JPG",
1654
+ "FullSizeRender 3.JPEG",
1655
+ "IMG_9481.JPG",
1656
+ "IMG_8431.jpg",
1657
+ "IMG_4143.JPG",
1658
+ "IMG_9128.JPG",
1659
+ "IMG_9346.JPG",
1660
+ "IMG_3790.JPG",
1661
+ "IMG_8497.jpg",
1662
+ "IMG_8073.JPG",
1663
+ "IMG_8423.JPG",
1664
+ "IMG_9033.JPG",
1665
+ "IMG_8945.JPG",
1666
+ "IMG_8427.JPG",
1667
+ "IMG_4176.JPG",
1668
+ "IMG_6248.JPG",
1669
+ "IMG_7931.jpg",
1670
+ "IMG_9708.JPG",
1671
+ "IMG_9713.JPG",
1672
+ "IMG_1378(1).JPG",
1673
+ "IMG_8098.JPG",
1674
+ "IMG_9699.jpg",
1675
+ "IMG_8977.JPG"
1676
+ ],
1677
+ "ground_truth_count": 83,
1678
+ "Location": null,
1679
+ "Time": "cognitive",
1680
+ "Person": "fact",
1681
+ "Object": null,
1682
+ "Concept": null,
1683
+ "Genre": null,
1684
+ "Source": "M"
1685
+ },
1686
+ {
1687
+ "query_cn": "2025年12月我和男朋友的合照",
1688
+ "query_en": "December 2025 me and boyfriend selfie",
1689
+ "ground_truth": [
1690
+ "IMG_4342.JPG",
1691
+ "IMG_4319.JPG"
1692
+ ],
1693
+ "ground_truth_count": 2,
1694
+ "Location": null,
1695
+ "Time": "fact",
1696
+ "Person": "cognitive",
1697
+ "Object": null,
1698
+ "Concept": null,
1699
+ "Genre": null,
1700
+ "Source": "MF"
1701
+ },
1702
+ {
1703
+ "query_cn": "在上海市拍的自己、男朋友的照片",
1704
+ "query_en": "Shanghai photos of me and boyfriend",
1705
+ "ground_truth": [
1706
+ "IMG_7742.JPG"
1707
+ ],
1708
+ "ground_truth_count": 1,
1709
+ "Location": "fact",
1710
+ "Time": null,
1711
+ "Person": "cognitive",
1712
+ "Object": null,
1713
+ "Concept": null,
1714
+ "Genre": null,
1715
+ "Source": "MF"
1716
+ },
1717
+ {
1718
+ "query_cn": "2023年12月17日的照片",
1719
+ "query_en": "December 17, 2023 photos",
1720
+ "ground_truth": [
1721
+ "IMG_8266.jpg",
1722
+ "IMG_8277.jpg",
1723
+ "IMG_8279.jpg"
1724
+ ],
1725
+ "ground_truth_count": 3,
1726
+ "Location": null,
1727
+ "Time": "fact",
1728
+ "Person": null,
1729
+ "Object": null,
1730
+ "Concept": null,
1731
+ "Genre": null,
1732
+ "Source": "M"
1733
+ },
1734
+ {
1735
+ "query_cn": "2024年3月1日的照片",
1736
+ "query_en": "March 1, 2024 photos",
1737
+ "ground_truth": [
1738
+ "IMG_0363.jpg",
1739
+ "IMG_0360.jpg",
1740
+ "IMG_0362.jpg"
1741
+ ],
1742
+ "ground_truth_count": 3,
1743
+ "Location": null,
1744
+ "Time": "fact",
1745
+ "Person": null,
1746
+ "Object": null,
1747
+ "Concept": null,
1748
+ "Genre": null,
1749
+ "Source": "M"
1750
+ },
1751
+ {
1752
+ "query_cn": "2022年11月拍的",
1753
+ "query_en": "November 2022 photos",
1754
+ "ground_truth": [
1755
+ "IMG_7880.jpg",
1756
+ "IMG_7882.jpg"
1757
+ ],
1758
+ "ground_truth_count": 2,
1759
+ "Location": null,
1760
+ "Time": "fact",
1761
+ "Person": null,
1762
+ "Object": null,
1763
+ "Concept": null,
1764
+ "Genre": null,
1765
+ "Source": "M"
1766
+ },
1767
+ {
1768
+ "query_cn": "2022年10月的照片",
1769
+ "query_en": "October 2022 photos",
1770
+ "ground_truth": [
1771
+ "IMG_6781.jpg"
1772
+ ],
1773
+ "ground_truth_count": 1,
1774
+ "Location": null,
1775
+ "Time": "fact",
1776
+ "Person": null,
1777
+ "Object": null,
1778
+ "Concept": null,
1779
+ "Genre": null,
1780
+ "Source": "M"
1781
+ },
1782
+ {
1783
+ "query_cn": "2024年上半年拍的",
1784
+ "query_en": "first half of 2024 photos",
1785
+ "ground_truth": [
1786
+ "IMG_2457.jpg",
1787
+ "IMG_2963.jpg",
1788
+ "IMG_9625.jpg",
1789
+ "IMG_1488.jpg",
1790
+ "IMG_2277.jpg",
1791
+ "IMG_1869.jpg",
1792
+ "IMG_3155.jpg",
1793
+ "IMG_9270.jpg",
1794
+ "IMG_2120.jpg",
1795
+ "IMG_8867.jpg",
1796
+ "IMG_3157.jpg",
1797
+ "IMG_0225.jpg",
1798
+ "IMG_1847.jpg",
1799
+ "IMG_2919.jpg",
1800
+ "IMG_9921.jpg",
1801
+ "IMG_3189.jpg",
1802
+ "IMG_1605.jpg",
1803
+ "IMG_0363.jpg",
1804
+ "IMG_1809.jpg",
1805
+ "IMG_0686.jpg",
1806
+ "IMG_1455.jpg",
1807
+ "IMG_2103.jpg",
1808
+ "IMG_2191.jpg",
1809
+ "IMG_2028.jpg",
1810
+ "IMG_9078.jpg",
1811
+ "IMG_9472.jpg",
1812
+ "IMG_9823.jpg",
1813
+ "IMG_3204.jpg",
1814
+ "IMG_1787.jpg",
1815
+ "IMG_1833.jpg",
1816
+ "IMG_2459.jpg",
1817
+ "IMG_0705.jpg",
1818
+ "IMG_2451.jpg",
1819
+ "IMG_9663.jpg",
1820
+ "IMG_3197.jpg",
1821
+ "IMG_3198.jpg",
1822
+ "IMG_0267.jpg",
1823
+ "IMG_0360.jpg",
1824
+ "IMG_2192.jpg",
1825
+ "IMG_2920.jpg",
1826
+ "IMG_9868.jpg",
1827
+ "IMG_8868.jpg",
1828
+ "IMG_0706.jpg",
1829
+ "IMG_0032.jpg",
1830
+ "IMG_9470.jpg",
1831
+ "IMG_2265.jpg",
1832
+ "IMG_9017.jpg",
1833
+ "IMG_9460.jpg",
1834
+ "IMG_1811.jpg",
1835
+ "IMG_2190.jpg",
1836
+ "IMG_9474.jpg",
1837
+ "IMG_2918.jpg",
1838
+ "IMG_1658.jpg",
1839
+ "IMG_1389.jpg",
1840
+ "IMG_9662.jpg",
1841
+ "IMG_3060.jpg",
1842
+ "IMG_9471.jpg",
1843
+ "IMG_9022.jpg",
1844
+ "IMG_2966.jpg",
1845
+ "IMG_0362.jpg",
1846
+ "IMG_9923.jpg"
1847
+ ],
1848
+ "ground_truth_count": 61,
1849
+ "Location": null,
1850
+ "Time": "cognitive",
1851
+ "Person": null,
1852
+ "Object": null,
1853
+ "Concept": null,
1854
+ "Genre": null,
1855
+ "Source": "M"
1856
+ },
1857
+ {
1858
+ "query_cn": "2023年4月的照片",
1859
+ "query_en": "April 2023 photos",
1860
+ "ground_truth": [
1861
+ "IMG_1148.jpg",
1862
+ "IMG_1145.jpg",
1863
+ "IMG_1055.jpg",
1864
+ "IMG_1054.jpg",
1865
+ "IMG_1051.jpg"
1866
+ ],
1867
+ "ground_truth_count": 5,
1868
+ "Location": null,
1869
+ "Time": "fact",
1870
+ "Person": null,
1871
+ "Object": null,
1872
+ "Concept": null,
1873
+ "Genre": null,
1874
+ "Source": "M"
1875
+ },
1876
+ {
1877
+ "query_cn": "北京夜晚央视大楼后门扫雪",
1878
+ "query_en": "Beijing night snow clearing behind CCTV building",
1879
+ "ground_truth": [],
1880
+ "ground_truth_count": 0,
1881
+ "Location": "cognitive",
1882
+ "Time": "cognitive",
1883
+ "Person": null,
1884
+ "Object": "cognitive",
1885
+ "Concept": null,
1886
+ "Genre": null,
1887
+ "Source": "V"
1888
+ },
1889
+ {
1890
+ "query_cn": "黑神话悟空展的清洁工拖地",
1891
+ "query_en": "cleaner mopping at Black Myth Wukong exhibit",
1892
+ "ground_truth": [],
1893
+ "ground_truth_count": 0,
1894
+ "Location": "cognitive",
1895
+ "Time": null,
1896
+ "Person": "cognitive",
1897
+ "Object": "cognitive",
1898
+ "Concept": null,
1899
+ "Genre": null,
1900
+ "Source": "V"
1901
+ },
1902
+ {
1903
+ "query_cn": "远山倒影的湖边野餐垫",
1904
+ "query_en": "picnic mat by lake with mountain reflection",
1905
+ "ground_truth": [],
1906
+ "ground_truth_count": 0,
1907
+ "Location": "cognitive",
1908
+ "Time": null,
1909
+ "Person": null,
1910
+ "Object": "cognitive",
1911
+ "Concept": null,
1912
+ "Genre": null,
1913
+ "Source": "V"
1914
+ },
1915
+ {
1916
+ "query_cn": "韩国传统血肠摊位的旧秤",
1917
+ "query_en": "old scale at Korean blood sausage stall",
1918
+ "ground_truth": [],
1919
+ "ground_truth_count": 0,
1920
+ "Location": "cognitive",
1921
+ "Time": null,
1922
+ "Person": null,
1923
+ "Object": "cognitive",
1924
+ "Concept": null,
1925
+ "Genre": null,
1926
+ "Source": "V"
1927
+ },
1928
+ {
1929
+ "query_cn": "血肠摊位的旧木凳",
1930
+ "query_en": "old wooden stool at blood sausage stall",
1931
+ "ground_truth": [],
1932
+ "ground_truth_count": 0,
1933
+ "Location": "cognitive",
1934
+ "Time": null,
1935
+ "Person": null,
1936
+ "Object": "cognitive",
1937
+ "Concept": null,
1938
+ "Genre": null,
1939
+ "Source": "V"
1940
+ },
1941
+ {
1942
+ "query_cn": "双人游戏时的手机充电线",
1943
+ "query_en": "phone charger during two-player game",
1944
+ "ground_truth": [],
1945
+ "ground_truth_count": 0,
1946
+ "Location": null,
1947
+ "Time": "cognitive",
1948
+ "Person": null,
1949
+ "Object": "cognitive",
1950
+ "Concept": null,
1951
+ "Genre": null,
1952
+ "Source": "V"
1953
+ },
1954
+ {
1955
+ "query_cn": "拍黄瓜的菜板裂痕",
1956
+ "query_en": "cracked cutting board for smashed cucumber",
1957
+ "ground_truth": [],
1958
+ "ground_truth_count": 0,
1959
+ "Location": null,
1960
+ "Time": null,
1961
+ "Person": null,
1962
+ "Object": "cognitive",
1963
+ "Concept": null,
1964
+ "Genre": null,
1965
+ "Source": "V"
1966
+ },
1967
+ {
1968
+ "query_cn": "披萨肉夹馍的包装纸",
1969
+ "query_en": "pizza roujiamo wrapper",
1970
+ "ground_truth": [],
1971
+ "ground_truth_count": 0,
1972
+ "Location": null,
1973
+ "Time": null,
1974
+ "Person": null,
1975
+ "Object": "cognitive",
1976
+ "Concept": null,
1977
+ "Genre": null,
1978
+ "Source": "V"
1979
+ },
1980
+ {
1981
+ "query_cn": "炒蛙锅底的油渍",
1982
+ "query_en": "oil stains in frog hotpot",
1983
+ "ground_truth": [],
1984
+ "ground_truth_count": 0,
1985
+ "Location": null,
1986
+ "Time": null,
1987
+ "Person": null,
1988
+ "Object": "cognitive",
1989
+ "Concept": null,
1990
+ "Genre": null,
1991
+ "Source": "V"
1992
+ },
1993
+ {
1994
+ "query_cn": "饮品照片的反光",
1995
+ "query_en": "drink photo glare",
1996
+ "ground_truth": [],
1997
+ "ground_truth_count": 0,
1998
+ "Location": null,
1999
+ "Time": null,
2000
+ "Person": null,
2001
+ "Object": null,
2002
+ "Concept": "fact",
2003
+ "Genre": null,
2004
+ "Source": "V"
2005
+ },
2006
+ {
2007
+ "query_cn": "在韩国拍的 用餐后自己的丑照",
2008
+ "query_en": "ugly selfie after meal in Korea",
2009
+ "ground_truth": [],
2010
+ "ground_truth_count": 0,
2011
+ "Location": "fact",
2012
+ "Time": null,
2013
+ "Person": "cognitive",
2014
+ "Object": null,
2015
+ "Concept": "cognitive",
2016
+ "Genre": null,
2017
+ "Source": "VM"
2018
+ },
2019
+ {
2020
+ "query_cn": "在泰国拍的 精致小量火锅菜",
2021
+ "query_en": "fancy mini hotpot in Thailand",
2022
+ "ground_truth": [],
2023
+ "ground_truth_count": 0,
2024
+ "Location": "fact",
2025
+ "Time": null,
2026
+ "Person": null,
2027
+ "Object": "cognitive",
2028
+ "Concept": null,
2029
+ "Genre": null,
2030
+ "Source": "VM"
2031
+ },
2032
+ {
2033
+ "query_cn": "海底捞生日布置 福建省",
2034
+ "query_en": "Haidilao birthday setup, Fujian",
2035
+ "ground_truth": [],
2036
+ "ground_truth_count": 0,
2037
+ "Location": "fact",
2038
+ "Time": null,
2039
+ "Person": null,
2040
+ "Object": "cognitive",
2041
+ "Concept": null,
2042
+ "Genre": null,
2043
+ "Source": "VM"
2044
+ },
2045
+ {
2046
+ "query_cn": "亲手包饺子 福建省",
2047
+ "query_en": "handmade dumplings, Fujian",
2048
+ "ground_truth": [],
2049
+ "ground_truth_count": 0,
2050
+ "Location": "fact",
2051
+ "Time": null,
2052
+ "Person": null,
2053
+ "Object": "cognitive",
2054
+ "Concept": null,
2055
+ "Genre": null,
2056
+ "Source": "VM"
2057
+ },
2058
+ {
2059
+ "query_cn": "我打台球时的专注瞬间, 2020年10月",
2060
+ "query_en": "focused moment playing pool, October 2020",
2061
+ "ground_truth": [],
2062
+ "ground_truth_count": 0,
2063
+ "Location": null,
2064
+ "Time": "fact",
2065
+ "Person": "cognitive",
2066
+ "Object": "cognitive",
2067
+ "Concept": "cognitive",
2068
+ "Genre": null,
2069
+ "Source": "VMF"
2070
+ }
2071
+ ]
data/validation/album3_validation.json ADDED
@@ -0,0 +1,2172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "query_cn": "给宝宝喂药",
4
+ "query_en": "giving baby medicine",
5
+ "ground_truth": [
6
+ "IMG_4090.JPG"
7
+ ],
8
+ "ground_truth_count": 1,
9
+ "Location": null,
10
+ "Time": null,
11
+ "Person": "cognitive",
12
+ "Object": null,
13
+ "Concept": null,
14
+ "Genre": null,
15
+ "Source": "VF"
16
+ },
17
+ {
18
+ "query_cn": "华为店内孩子与假恐龙互动",
19
+ "query_en": "Huawei store kids with fake dinosaur",
20
+ "ground_truth": [
21
+ "2018-10-12 153120.jpg"
22
+ ],
23
+ "ground_truth_count": 1,
24
+ "Location": "cognitive",
25
+ "Time": null,
26
+ "Person": "cognitive",
27
+ "Object": "cognitive",
28
+ "Concept": null,
29
+ "Genre": null,
30
+ "Source": "VMF"
31
+ },
32
+ {
33
+ "query_cn": "正定亲子游 我妈妈和孩子一起",
34
+ "query_en": "Zhengding family trip mom and kids",
35
+ "ground_truth": [
36
+ "2018-12-30 132157.jpg",
37
+ "2018-12-30 134508.jpg",
38
+ "2018-12-30 134521.jpg",
39
+ "2018-12-30 134633.jpg",
40
+ "2018-12-30 134850.jpg",
41
+ "2018-12-30 134902.jpg",
42
+ "2018-12-30 135451.jpg",
43
+ "2018-12-30 135456.jpg",
44
+ "2018-12-30 135510.jpg",
45
+ "2018-12-30 143406.jpg",
46
+ "2018-12-30 143413.jpg",
47
+ "2018-12-30 150414.jpg",
48
+ "2018-12-30 150610.jpg",
49
+ "2018-12-30 151233.jpg",
50
+ "2019-01-01 112710.jpg",
51
+ "2019-01-01 121540.jpg",
52
+ "2019-01-01 123957.jpg",
53
+ "IMG_7541.JPG"
54
+ ],
55
+ "ground_truth_count": 18,
56
+ "Location": "cognitive",
57
+ "Time": null,
58
+ "Person": "cognitive",
59
+ "Object": null,
60
+ "Concept": null,
61
+ "Genre": null,
62
+ "Source": "VMF"
63
+ },
64
+ {
65
+ "query_cn": "空中花园乐园导览图",
66
+ "query_en": "sky garden park map",
67
+ "ground_truth": [
68
+ "2018-12-31 130801.jpg"
69
+ ],
70
+ "ground_truth_count": 1,
71
+ "Location": "cognitive",
72
+ "Time": null,
73
+ "Person": null,
74
+ "Object": "fact",
75
+ "Concept": null,
76
+ "Genre": null,
77
+ "Source": "V"
78
+ },
79
+ {
80
+ "query_cn": "老爸与戏曲演员互动",
81
+ "query_en": "dad interacting with opera actor",
82
+ "ground_truth": [
83
+ "2018-12-30 150444.jpg"
84
+ ],
85
+ "ground_truth_count": 1,
86
+ "Location": null,
87
+ "Time": null,
88
+ "Person": "cognitive",
89
+ "Object": "cognitive",
90
+ "Concept": null,
91
+ "Genre": null,
92
+ "Source": "VF"
93
+ },
94
+ {
95
+ "query_cn": "妈妈和父亲在桥上合照",
96
+ "query_en": "mom and dad photo on bridge",
97
+ "ground_truth": [
98
+ "2017-10-29 151201.jpg",
99
+ "2019-01-01 165606.jpg"
100
+ ],
101
+ "ground_truth_count": 2,
102
+ "Location": "cognitive",
103
+ "Time": null,
104
+ "Person": "cognitive",
105
+ "Object": null,
106
+ "Concept": null,
107
+ "Genre": null,
108
+ "Source": "VF"
109
+ },
110
+ {
111
+ "query_cn": "俩孩子近距离观察貂",
112
+ "query_en": "two kids observing mink up close",
113
+ "ground_truth": [
114
+ "2019-01-10 130421.jpg",
115
+ "2019-01-10 130437.jpg",
116
+ "IMG_6328.JPG"
117
+ ],
118
+ "ground_truth_count": 3,
119
+ "Location": null,
120
+ "Time": null,
121
+ "Person": "cognitive",
122
+ "Object": "cognitive",
123
+ "Concept": null,
124
+ "Genre": null,
125
+ "Source": "VF"
126
+ },
127
+ {
128
+ "query_cn": "和孩子一起喂鸟",
129
+ "query_en": "feeding birds with kid",
130
+ "ground_truth": [
131
+ "2019-01-10 132226.jpg",
132
+ "IMG_6340.JPG",
133
+ "IMG_6342.JPG"
134
+ ],
135
+ "ground_truth_count": 3,
136
+ "Location": null,
137
+ "Time": null,
138
+ "Person": "cognitive",
139
+ "Object": "cognitive",
140
+ "Concept": null,
141
+ "Genre": null,
142
+ "Source": "VF"
143
+ },
144
+ {
145
+ "query_cn": "婚礼现场和好友合影",
146
+ "query_en": "wedding group photo with friends",
147
+ "ground_truth": [
148
+ "2017-09-27 113615.jpg",
149
+ "2017-09-27 113629.jpg",
150
+ "2017-10-04 223228.jpg",
151
+ "2017-10-04 223242.jpg",
152
+ "2017-10-04 223521.jpg",
153
+ "2017-10-04 223534.jpg",
154
+ "2017-12-16 100650.jpg",
155
+ "2017-12-16 100719.jpg",
156
+ "2017-12-16 102414.jpg",
157
+ "2017-12-16 140213.jpg",
158
+ "2018-02-01 120812.jpg",
159
+ "2018-02-01 120842.jpg",
160
+ "2018-04-03 173254.jpg",
161
+ "2018-08-18 112054.jpg",
162
+ "2019-03-16 202336.jpg",
163
+ "IMG_3589.JPG",
164
+ "IMG_7541.JPG"
165
+ ],
166
+ "ground_truth_count": 17,
167
+ "Location": "cognitive",
168
+ "Time": null,
169
+ "Person": "cognitive",
170
+ "Object": null,
171
+ "Concept": "cognitive",
172
+ "Genre": null,
173
+ "Source": "VF"
174
+ },
175
+ {
176
+ "query_cn": "木勺搅拌蛋液情况",
177
+ "query_en": "wooden spoon stirring eggs",
178
+ "ground_truth": [
179
+ "IMG_7633.JPG"
180
+ ],
181
+ "ground_truth_count": 1,
182
+ "Location": null,
183
+ "Time": null,
184
+ "Person": null,
185
+ "Object": "cognitive",
186
+ "Concept": null,
187
+ "Genre": null,
188
+ "Source": "V"
189
+ },
190
+ {
191
+ "query_cn": "南戴河索道",
192
+ "query_en": "Nandaihe cable car",
193
+ "ground_truth": [
194
+ "IMG_8700.JPG"
195
+ ],
196
+ "ground_truth_count": 1,
197
+ "Location": "fact",
198
+ "Time": null,
199
+ "Person": null,
200
+ "Object": "fact",
201
+ "Concept": null,
202
+ "Genre": null,
203
+ "Source": "VM"
204
+ },
205
+ {
206
+ "query_cn": "大头儿��小头爸爸的沙雕",
207
+ "query_en": "Big Head Son and Small Head Dad sand sculpture",
208
+ "ground_truth": [
209
+ "IMG_8653.JPG",
210
+ "IMG_8654.JPG"
211
+ ],
212
+ "ground_truth_count": 2,
213
+ "Location": null,
214
+ "Time": null,
215
+ "Person": "cognitive",
216
+ "Object": "cognitive",
217
+ "Concept": null,
218
+ "Genre": null,
219
+ "Source": "V"
220
+ },
221
+ {
222
+ "query_cn": "小宝在水族馆",
223
+ "query_en": "Xiaobao at the aquarium",
224
+ "ground_truth": [
225
+ "2018-02-18 153257.jpg",
226
+ "IMG_6328.JPG",
227
+ "IMG_6354.JPG",
228
+ "IMG_8860.JPG",
229
+ "IMG_8862.JPG",
230
+ "IMG_8865.JPG",
231
+ "IMG_8866.JPG"
232
+ ],
233
+ "ground_truth_count": 7,
234
+ "Location": "cognitive",
235
+ "Time": null,
236
+ "Person": "cognitive",
237
+ "Object": null,
238
+ "Concept": null,
239
+ "Genre": null,
240
+ "Source": "VMF"
241
+ },
242
+ {
243
+ "query_cn": "4D电影时间安排",
244
+ "query_en": "4D movie schedule",
245
+ "ground_truth": [
246
+ "IMG_8841.JPG"
247
+ ],
248
+ "ground_truth_count": 1,
249
+ "Location": null,
250
+ "Time": "fact",
251
+ "Person": null,
252
+ "Object": null,
253
+ "Concept": null,
254
+ "Genre": null,
255
+ "Source": "M"
256
+ },
257
+ {
258
+ "query_cn": "家里拖地日常",
259
+ "query_en": "mopping floor at home",
260
+ "ground_truth": [
261
+ "IMG_20230517_191841.jpg",
262
+ "user01 (4).JPG",
263
+ "user01 (5).JPG"
264
+ ],
265
+ "ground_truth_count": 3,
266
+ "Location": "cognitive",
267
+ "Time": null,
268
+ "Person": null,
269
+ "Object": null,
270
+ "Concept": "cognitive",
271
+ "Genre": null,
272
+ "Source": "V"
273
+ },
274
+ {
275
+ "query_cn": "两个孩子的手环牵在我身上",
276
+ "query_en": "two kids' wristbands holding onto me",
277
+ "ground_truth": [
278
+ "IMG_9259.JPG"
279
+ ],
280
+ "ground_truth_count": 1,
281
+ "Location": null,
282
+ "Time": null,
283
+ "Person": "cognitive",
284
+ "Object": "cognitive",
285
+ "Concept": null,
286
+ "Genre": null,
287
+ "Source": "VF"
288
+ },
289
+ {
290
+ "query_cn": "手工面团兔子",
291
+ "query_en": "handmade dough bunny",
292
+ "ground_truth": [
293
+ "IMG_0179.JPG",
294
+ "IMG_0182.JPG"
295
+ ],
296
+ "ground_truth_count": 2,
297
+ "Location": null,
298
+ "Time": null,
299
+ "Person": null,
300
+ "Object": "cognitive",
301
+ "Concept": null,
302
+ "Genre": null,
303
+ "Source": "V"
304
+ },
305
+ {
306
+ "query_cn": "脉动瓶塞面糊里",
307
+ "query_en": "bottle cap in batter",
308
+ "ground_truth": [
309
+ "IMG_0143.JPG",
310
+ "IMG_9914.JPG"
311
+ ],
312
+ "ground_truth_count": 2,
313
+ "Location": null,
314
+ "Time": null,
315
+ "Person": null,
316
+ "Object": "cognitive",
317
+ "Concept": null,
318
+ "Genre": null,
319
+ "Source": "V"
320
+ },
321
+ {
322
+ "query_cn": "孩子们与恐龙模型",
323
+ "query_en": "kids with dinosaur models",
324
+ "ground_truth": [
325
+ "IMG_0525.JPG",
326
+ "IMG_0542.JPG",
327
+ "IMG_9270.JPG",
328
+ "IMG_9286.JPG",
329
+ "IMG_9289.JPG"
330
+ ],
331
+ "ground_truth_count": 5,
332
+ "Location": null,
333
+ "Time": null,
334
+ "Person": "cognitive",
335
+ "Object": "cognitive",
336
+ "Concept": null,
337
+ "Genre": null,
338
+ "Source": "VF"
339
+ },
340
+ {
341
+ "query_cn": "泡沫地垫搭的小帐篷",
342
+ "query_en": "foam mat tent",
343
+ "ground_truth": [
344
+ "IMG_0513.JPG"
345
+ ],
346
+ "ground_truth_count": 1,
347
+ "Location": null,
348
+ "Time": null,
349
+ "Person": null,
350
+ "Object": "cognitive",
351
+ "Concept": null,
352
+ "Genre": null,
353
+ "Source": "V"
354
+ },
355
+ {
356
+ "query_cn": "孩子专注绘画",
357
+ "query_en": "kid focused on drawing",
358
+ "ground_truth": [
359
+ "IMG_0305.JPG"
360
+ ],
361
+ "ground_truth_count": 1,
362
+ "Location": null,
363
+ "Time": null,
364
+ "Person": "cognitive",
365
+ "Object": "cognitive",
366
+ "Concept": null,
367
+ "Genre": null,
368
+ "Source": "VF"
369
+ },
370
+ {
371
+ "query_cn": "满米酸奶店环境记录",
372
+ "query_en": "Manmi yogurt shop environment",
373
+ "ground_truth": [
374
+ "IMG_20220621_122438.jpg",
375
+ "IMG_20220621_123000.jpg",
376
+ "IMG_20220621_123008.jpg",
377
+ "IMG_20220621_123015.jpg",
378
+ "IMG_20220621_123028.jpg",
379
+ "IMG_20220621_123047.jpg",
380
+ "IMG_20220621_123305.jpg",
381
+ "IMG_20220621_124146.jpg",
382
+ "IMG_20220725_095621.jpg",
383
+ "IMG_20220725_095626.jpg",
384
+ "IMG_20220725_095633.jpg",
385
+ "IMG_20220725_095700.jpg",
386
+ "IMG_20220725_095704.jpg"
387
+ ],
388
+ "ground_truth_count": 13,
389
+ "Location": "cognitive",
390
+ "Time": null,
391
+ "Person": null,
392
+ "Object": null,
393
+ "Concept": "cognitive",
394
+ "Genre": null,
395
+ "Source": "VM"
396
+ },
397
+ {
398
+ "query_cn": "厨房里的三兄弟",
399
+ "query_en": "three brothers in the kitchen",
400
+ "ground_truth": [
401
+ "IMG_20220623_212500.jpg",
402
+ "IMG_20220623_212524.jpg"
403
+ ],
404
+ "ground_truth_count": 2,
405
+ "Location": "cognitive",
406
+ "Time": null,
407
+ "Person": null,
408
+ "Object": "cognitive",
409
+ "Concept": null,
410
+ "Genre": null,
411
+ "Source": "VF"
412
+ },
413
+ {
414
+ "query_cn": "自己在上海店铺内的邋遢打扮",
415
+ "query_en": "me looking messy in Shanghai store",
416
+ "ground_truth": [
417
+ "IMG_20220623_212500.jpg",
418
+ "IMG_20220623_212524.jpg",
419
+ "IMG_20220623_212642.jpg"
420
+ ],
421
+ "ground_truth_count": 3,
422
+ "Location": "cognitive",
423
+ "Time": null,
424
+ "Person": "cognitive",
425
+ "Object": null,
426
+ "Concept": "cognitive",
427
+ "Genre": null,
428
+ "Source": "VM"
429
+ },
430
+ {
431
+ "query_cn": "采摘番茄",
432
+ "query_en": "picking tomatoes",
433
+ "ground_truth": [
434
+ "IMG_0517.JPG",
435
+ "IMG_0520.JPG"
436
+ ],
437
+ "ground_truth_count": 2,
438
+ "Location": null,
439
+ "Time": null,
440
+ "Person": null,
441
+ "Object": "cognitive",
442
+ "Concept": null,
443
+ "Genre": null,
444
+ "Source": "VM"
445
+ },
446
+ {
447
+ "query_cn": "顶呱呱炸鸡店菜单",
448
+ "query_en": "Ding Guagua fried chicken menu",
449
+ "ground_truth": [
450
+ "IMG_20220716_141621.jpg",
451
+ "IMG_20220716_141625.jpg"
452
+ ],
453
+ "ground_truth_count": 2,
454
+ "Location": "cognitive",
455
+ "Time": null,
456
+ "Person": null,
457
+ "Object": null,
458
+ "Concept": null,
459
+ "Genre": "fact",
460
+ "Source": "V"
461
+ },
462
+ {
463
+ "query_cn": "宜昌观景平台团队合影",
464
+ "query_en": "Yichang viewing platform group photo",
465
+ "ground_truth": [
466
+ "2017-11-05 150513.jpg",
467
+ "2017-11-05 152200.jpg"
468
+ ],
469
+ "ground_truth_count": 2,
470
+ "Location": "fact",
471
+ "Time": null,
472
+ "Person": "cognitive",
473
+ "Object": null,
474
+ "Concept": null,
475
+ "Genre": null,
476
+ "Source": "VMF"
477
+ },
478
+ {
479
+ "query_cn": "水坝的机械装置连绵至天际",
480
+ "query_en": "dam machinery stretching to the horizon",
481
+ "ground_truth": [
482
+ "2017-11-05 150755.jpg",
483
+ "2017-11-05 150808.jpg",
484
+ "2017-11-05 151308.jpg",
485
+ "2017-11-05 151427.jpg",
486
+ "2017-11-05 151451.jpg",
487
+ "2017-11-05 151838.jpg",
488
+ "2017-11-05 153809.jpg",
489
+ "2017-11-05 155728.jpg",
490
+ "2017-11-05 155740.jpg",
491
+ "2017-11-05 161103.jpg",
492
+ "2017-11-05 164041.jpg",
493
+ "2017-11-05 164059.jpg"
494
+ ],
495
+ "ground_truth_count": 12,
496
+ "Location": null,
497
+ "Time": null,
498
+ "Person": null,
499
+ "Object": "cognitive",
500
+ "Concept": "cognitive",
501
+ "Genre": null,
502
+ "Source": "V"
503
+ },
504
+ {
505
+ "query_cn": "蒲记板面",
506
+ "query_en": "Puji noodles",
507
+ "ground_truth": [
508
+ "IMG_20220731_194746.jpg",
509
+ "IMG_20220731_194822.jpg"
510
+ ],
511
+ "ground_truth_count": 2,
512
+ "Location": null,
513
+ "Time": null,
514
+ "Person": null,
515
+ "Object": "fact",
516
+ "Concept": null,
517
+ "Genre": null,
518
+ "Source": "V"
519
+ },
520
+ {
521
+ "query_cn": "牛春花前台取面",
522
+ "query_en": "Niu Chunhua picking up noodles at counter",
523
+ "ground_truth": [
524
+ "IMG_20220731_184234.jpg",
525
+ "IMG_20220801_092819.jpg"
526
+ ],
527
+ "ground_truth_count": 2,
528
+ "Location": "cognitive",
529
+ "Time": null,
530
+ "Person": "cognitive",
531
+ "Object": "cognitive",
532
+ "Concept": null,
533
+ "Genre": null,
534
+ "Source": "V"
535
+ },
536
+ {
537
+ "query_cn": "牛春花门脸样式参考",
538
+ "query_en": "Niu Chunhua storefront design reference",
539
+ "ground_truth": [
540
+ "IMG_20220731_204544.jpg"
541
+ ],
542
+ "ground_truth_count": 1,
543
+ "Location": "cognitive",
544
+ "Time": null,
545
+ "Person": null,
546
+ "Object": "cognitive",
547
+ "Concept": null,
548
+ "Genre": null,
549
+ "Source": "V"
550
+ },
551
+ {
552
+ "query_cn": "餐厅卤味食材展示",
553
+ "query_en": "restaurant marinated food display",
554
+ "ground_truth": [
555
+ "IMG_20220801_092909.jpg",
556
+ "IMG_20220801_092920.jpg",
557
+ "IMG_7333.JPG"
558
+ ],
559
+ "ground_truth_count": 3,
560
+ "Location": "cognitive",
561
+ "Time": null,
562
+ "Person": null,
563
+ "Object": "cognitive",
564
+ "Concept": null,
565
+ "Genre": null,
566
+ "Source": "V"
567
+ },
568
+ {
569
+ "query_cn": "专注玩烟花的孩子",
570
+ "query_en": "kid focused on sparklers",
571
+ "ground_truth": [
572
+ "IMG_20230105_202847.jpg",
573
+ "IMG_20230105_202901.jpg",
574
+ "IMG_20230105_202908.jpg"
575
+ ],
576
+ "ground_truth_count": 3,
577
+ "Location": null,
578
+ "Time": null,
579
+ "Person": "cognitive",
580
+ "Object": null,
581
+ "Concept": "cognitive",
582
+ "Genre": null,
583
+ "Source": "V"
584
+ },
585
+ {
586
+ "query_cn": "和火箭模型合影",
587
+ "query_en": "posing with rocket model",
588
+ "ground_truth": [
589
+ "IMG_20230401_121233.jpg"
590
+ ],
591
+ "ground_truth_count": 1,
592
+ "Location": null,
593
+ "Time": null,
594
+ "Person": "cognitive",
595
+ "Object": "cognitive",
596
+ "Concept": null,
597
+ "Genre": null,
598
+ "Source": "VF"
599
+ },
600
+ {
601
+ "query_cn": "确认车钥匙细节",
602
+ "query_en": "checking car key details",
603
+ "ground_truth": [
604
+ "2018-06-28 121602.jpg",
605
+ "IMG_20230404_080916.jpg",
606
+ "IMG_20230523_101625.jpg"
607
+ ],
608
+ "ground_truth_count": 3,
609
+ "Location": null,
610
+ "Time": null,
611
+ "Person": null,
612
+ "Object": "cognitive",
613
+ "Concept": null,
614
+ "Genre": null,
615
+ "Source": "V"
616
+ },
617
+ {
618
+ "query_cn": "团队专注工作时刻",
619
+ "query_en": "team focused at work",
620
+ "ground_truth": [
621
+ "2017-11-13 194317.jpg",
622
+ "2018-07-19 203551.jpg",
623
+ "2018-10-15 124954.jpg",
624
+ "2018-10-15 125003.jpg",
625
+ "2019-01-29 184347.jpg",
626
+ "2019-01-29 184356.jpg",
627
+ "2019-03-04 103253.jpg",
628
+ "2019-04-26 081940.jpg",
629
+ "IMG_20220731_184228.jpg",
630
+ "IMG_20230321_105358.jpg",
631
+ "IMG_20230523_102915.jpg",
632
+ "IMG_20230523_102927.jpg",
633
+ "IMG_20230523_102938.jpg",
634
+ "IMG_20230808_115142.jpg",
635
+ "IMG_5635.JPG",
636
+ "IMG_5704.JPG"
637
+ ],
638
+ "ground_truth_count": 16,
639
+ "Location": null,
640
+ "Time": null,
641
+ "Person": "cognitive",
642
+ "Object": null,
643
+ "Concept": "cognitive",
644
+ "Genre": null,
645
+ "Source": "V"
646
+ },
647
+ {
648
+ "query_cn": "仓库堆放的瓶装水",
649
+ "query_en": "bottled water stacked in warehouse",
650
+ "ground_truth": [
651
+ "IMG_20230624_215639.jpg",
652
+ "IMG_20230624_215650.jpg",
653
+ "IMG_20230624_215656.jpg"
654
+ ],
655
+ "ground_truth_count": 3,
656
+ "Location": "cognitive",
657
+ "Time": null,
658
+ "Person": null,
659
+ "Object": "cognitive",
660
+ "Concept": null,
661
+ "Genre": null,
662
+ "Source": "V"
663
+ },
664
+ {
665
+ "query_cn": "孕婴店促销活动记录",
666
+ "query_en": "baby store promo event record",
667
+ "ground_truth": [
668
+ "2018-11-02 135412.jpg",
669
+ "IMG_20230531_104012.jpg"
670
+ ],
671
+ "ground_truth_count": 2,
672
+ "Location": "cognitive",
673
+ "Time": null,
674
+ "Person": null,
675
+ "Object": "cognitive",
676
+ "Concept": null,
677
+ "Genre": null,
678
+ "Source": "V"
679
+ },
680
+ {
681
+ "query_cn": "历史数据对比分析",
682
+ "query_en": "historical data comparison analysis",
683
+ "ground_truth": [
684
+ "IMG_20220627_093944.jpg",
685
+ "IMG_20230416_084018.jpg",
686
+ "IMG_20230730_191603.jpg",
687
+ "IMG_20230730_192239.jpg"
688
+ ],
689
+ "ground_truth_count": 4,
690
+ "Location": null,
691
+ "Time": null,
692
+ "Person": null,
693
+ "Object": "cognitive",
694
+ "Concept": null,
695
+ "Genre": null,
696
+ "Source": "V"
697
+ },
698
+ {
699
+ "query_cn": "孩子们与卡通兔子互动",
700
+ "query_en": "kids with cartoon rabbit",
701
+ "ground_truth": [
702
+ "IMG_20230806_203916.jpg",
703
+ "IMG_20230806_204143.jpg",
704
+ "IMG_20230806_204342.jpg",
705
+ "IMG_20230806_205755.jpg",
706
+ "IMG_20230806_205817.jpg"
707
+ ],
708
+ "ground_truth_count": 5,
709
+ "Location": null,
710
+ "Time": null,
711
+ "Person": "cognitive",
712
+ "Object": "cognitive",
713
+ "Concept": null,
714
+ "Genre": null,
715
+ "Source": "V"
716
+ },
717
+ {
718
+ "query_cn": "三峡大坝黄昏观景",
719
+ "query_en": "Three Gorges Dam sunset view",
720
+ "ground_truth": [
721
+ "2017-11-05 155728.jpg",
722
+ "2017-11-05 155740.jpg",
723
+ "2017-11-05 161103.jpg",
724
+ "2017-11-05 164041.jpg",
725
+ "2017-11-05 164059.jpg",
726
+ "2017-11-05 164429.jpg",
727
+ "2017-11-05 164457.jpg"
728
+ ],
729
+ "ground_truth_count": 7,
730
+ "Location": "fact",
731
+ "Time": "cognitive",
732
+ "Person": null,
733
+ "Object": null,
734
+ "Concept": "cognitive",
735
+ "Genre": null,
736
+ "Source": "VM"
737
+ },
738
+ {
739
+ "query_cn": "复古小火车亲子游",
740
+ "query_en": "vintage train family trip",
741
+ "ground_truth": [
742
+ "2018-02-18 115330.jpg",
743
+ "2018-02-18 115342.jpg",
744
+ "2018-02-18 115419.jpg",
745
+ "2018-02-18 115443.jpg"
746
+ ],
747
+ "ground_truth_count": 4,
748
+ "Location": null,
749
+ "Time": null,
750
+ "Person": "cognitive",
751
+ "Object": "cognitive",
752
+ "Concept": null,
753
+ "Genre": null,
754
+ "Source": "V"
755
+ },
756
+ {
757
+ "query_cn": "越南长廊里我的游客照",
758
+ "query_en": "my tourist photo in Vietnam corridor",
759
+ "ground_truth": [
760
+ "2018-03-01 125711.jpg",
761
+ "2018-03-01 125727.jpg"
762
+ ],
763
+ "ground_truth_count": 2,
764
+ "Location": "cognitive",
765
+ "Time": null,
766
+ "Person": "cognitive",
767
+ "Object": null,
768
+ "Concept": null,
769
+ "Genre": null,
770
+ "Source": "VMF"
771
+ },
772
+ {
773
+ "query_cn": "机场护照检查排队",
774
+ "query_en": "passport check queue at airport",
775
+ "ground_truth": [
776
+ "2018-03-31 235358.jpg",
777
+ "2018-03-31 235404.jpg"
778
+ ],
779
+ "ground_truth_count": 2,
780
+ "Location": "cognitive",
781
+ "Time": null,
782
+ "Person": null,
783
+ "Object": null,
784
+ "Concept": null,
785
+ "Genre": null,
786
+ "Source": "V"
787
+ },
788
+ {
789
+ "query_cn": "清迈入境",
790
+ "query_en": "Chiang Mai immigration",
791
+ "ground_truth": [
792
+ "2018-03-31 235358.jpg",
793
+ "2018-03-31 235404.jpg"
794
+ ],
795
+ "ground_truth_count": 2,
796
+ "Location": "cognitive",
797
+ "Time": null,
798
+ "Person": null,
799
+ "Object": null,
800
+ "Concept": null,
801
+ "Genre": null,
802
+ "Source": "M"
803
+ },
804
+ {
805
+ "query_cn": "野外与水牛互动",
806
+ "query_en": "wild buffalo interaction outdoors",
807
+ "ground_truth": [],
808
+ "ground_truth_count": 0,
809
+ "Location": "cognitive",
810
+ "Time": null,
811
+ "Person": null,
812
+ "Object": "cognitive",
813
+ "Concept": null,
814
+ "Genre": null,
815
+ "Source": "V"
816
+ },
817
+ {
818
+ "query_cn": "清迈动物园夜间部落表演",
819
+ "query_en": "Chiang Mai zoo night tribal performance",
820
+ "ground_truth": [
821
+ "2018-04-01 210440.jpg",
822
+ "2018-04-01 210536.jpg",
823
+ "2018-04-01 210547.jpg",
824
+ "2018-04-01 210550.jpg"
825
+ ],
826
+ "ground_truth_count": 4,
827
+ "Location": "cognitive",
828
+ "Time": "cognitive",
829
+ "Person": null,
830
+ "Object": null,
831
+ "Concept": "cognitive",
832
+ "Genre": null,
833
+ "Source": "VM"
834
+ },
835
+ {
836
+ "query_cn": "清迈大棚餐厅",
837
+ "query_en": "Chiang Mai greenhouse restaurant",
838
+ "ground_truth": [
839
+ "2018-04-03 185320.jpg"
840
+ ],
841
+ "ground_truth_count": 1,
842
+ "Location": "cognitive",
843
+ "Time": null,
844
+ "Person": null,
845
+ "Object": null,
846
+ "Concept": null,
847
+ "Genre": null,
848
+ "Source": "V"
849
+ },
850
+ {
851
+ "query_cn": "儿童血液检验结果保存",
852
+ "query_en": "child blood test results saved",
853
+ "ground_truth": [
854
+ "2018-05-14 143026.jpg",
855
+ "2018-05-14 143042.jpg"
856
+ ],
857
+ "ground_truth_count": 2,
858
+ "Location": null,
859
+ "Time": null,
860
+ "Person": null,
861
+ "Object": null,
862
+ "Concept": null,
863
+ "Genre": "fact",
864
+ "Source": "M"
865
+ },
866
+ {
867
+ "query_cn": "CRP结果",
868
+ "query_en": "CRP results",
869
+ "ground_truth": [
870
+ "2018-05-14 143026.jpg"
871
+ ],
872
+ "ground_truth_count": 1,
873
+ "Location": null,
874
+ "Time": null,
875
+ "Person": null,
876
+ "Object": null,
877
+ "Concept": null,
878
+ "Genre": "fact",
879
+ "Source": "M"
880
+ },
881
+ {
882
+ "query_cn": "我、雪儿、小明的照片",
883
+ "query_en": "me, Xue'er, and Xiaoming's photo",
884
+ "ground_truth": [
885
+ "IMG_20221005_155621.jpg",
886
+ "IMG_20221005_155759.jpg",
887
+ "IMG_20221005_155940.jpg"
888
+ ],
889
+ "ground_truth_count": 3,
890
+ "Location": null,
891
+ "Time": null,
892
+ "Person": "cognitive",
893
+ "Object": null,
894
+ "Concept": null,
895
+ "Genre": null,
896
+ "Source": "F"
897
+ },
898
+ {
899
+ "query_cn": "大宝、张晓莉、小宝、王建国的照片",
900
+ "query_en": "Da Bao, Zhang Xiaoli, Xiao Bao, Wang Jianguo photos",
901
+ "ground_truth": [
902
+ "2018-12-30 150610.jpg"
903
+ ],
904
+ "ground_truth_count": 1,
905
+ "Location": null,
906
+ "Time": null,
907
+ "Person": "fact",
908
+ "Object": null,
909
+ "Concept": null,
910
+ "Genre": null,
911
+ "Source": "F"
912
+ },
913
+ {
914
+ "query_cn": "自己的照片",
915
+ "query_en": "my photos",
916
+ "ground_truth": [
917
+ "IMG_6872.JPG",
918
+ "2018-03-31 160233.jpg",
919
+ "IMG_6342.JPG",
920
+ "IMG_9894.JPG",
921
+ "IMG_6350.JPG",
922
+ "2018-04-26 210954.jpg",
923
+ "2018-04-23 223623.jpg",
924
+ "2018-10-14 121037.jpg",
925
+ "2018-03-01 125711.jpg",
926
+ "2017-10-04 223147.jpg",
927
+ "2018-11-11 191519.jpg",
928
+ "IMG_5596.JPG",
929
+ "2019-01-01 121510.jpg",
930
+ "2017-11-15 180614.jpg",
931
+ "2018-03-01 125727.jpg",
932
+ "IMG_20221005_155940.jpg",
933
+ "2018-04-01 183458.jpg",
934
+ "IMG_20220504_162939.jpg",
935
+ "IMG_20220315_112203.jpg",
936
+ "2018-04-02 140117.jpg",
937
+ "2018-04-26 210601.jpg",
938
+ "2018-04-23 224824.jpg",
939
+ "IMG_20230106_213713.jpg",
940
+ "2019-03-03 172252.jpg",
941
+ "2018-04-23 223538.jpg",
942
+ "2018-04-03 202015.jpg",
943
+ "2017-10-04 223521.jpg",
944
+ "IMG_0523.JPG",
945
+ "2017-10-04 223228.jpg",
946
+ "IMG_20220807_145302.jpg",
947
+ "2018-11-11 123429.jpg",
948
+ "IMG_5595.JPG",
949
+ "2017-12-22 192925.jpg",
950
+ "2019-03-03 171931.jpg",
951
+ "IMG_20221005_155759.jpg",
952
+ "2018-04-01 171142.jpg",
953
+ "IMG_20221005_155621.jpg",
954
+ "2018-04-23 224737.jpg",
955
+ "IMG_20220916_110347.jpg",
956
+ "2019-01-10 132226.jpg",
957
+ "IMG_20220430_192253.jpg",
958
+ "IMG_20220623_212642.jpg",
959
+ "2018-04-23 223409.jpg",
960
+ "IMG_20230114_233549.jpg",
961
+ "IMG_20220404_213728.jpg",
962
+ "IMG_5598.JPG",
963
+ "IMG_20230225_182303.jpg",
964
+ "2018-04-01 170511.jpg",
965
+ "2017-10-04 223534.jpg",
966
+ "2018-11-13 170638.jpg",
967
+ "IMG_20220503_203953.jpg",
968
+ "IMG_20221019_135025.jpg",
969
+ "2018-04-23 223347.jpg",
970
+ "2018-10-16 204309.jpg",
971
+ "IMG_20230522_094106.jpg",
972
+ "2018-04-03 105352.jpg",
973
+ "IMG_20220623_212500.jpg",
974
+ "IMG_20220807_121216.jpg",
975
+ "IMG_9107.JPG"
976
+ ],
977
+ "ground_truth_count": 59,
978
+ "Location": null,
979
+ "Time": null,
980
+ "Person": "cognitive",
981
+ "Object": null,
982
+ "Concept": null,
983
+ "Genre": null,
984
+ "Source": "F"
985
+ },
986
+ {
987
+ "query_cn": "自己、小雪、小明的照片",
988
+ "query_en": "me, Xiaoxue, Xiaoming photos",
989
+ "ground_truth": [
990
+ "IMG_20221005_155759.jpg",
991
+ "IMG_20221005_155621.jpg",
992
+ "IMG_20221005_155940.jpg"
993
+ ],
994
+ "ground_truth_count": 3,
995
+ "Location": null,
996
+ "Time": null,
997
+ "Person": "cognitive",
998
+ "Object": null,
999
+ "Concept": null,
1000
+ "Genre": null,
1001
+ "Source": "F"
1002
+ },
1003
+ {
1004
+ "query_cn": "明明、张晓莉、小乐、父亲的照片",
1005
+ "query_en": "Mingming, Zhang Xiaoli, Xiaole, dad photos",
1006
+ "ground_truth": [
1007
+ "2018-12-30 150610.jpg"
1008
+ ],
1009
+ "ground_truth_count": 1,
1010
+ "Location": null,
1011
+ "Time": null,
1012
+ "Person": "cognitive",
1013
+ "Object": null,
1014
+ "Concept": null,
1015
+ "Genre": null,
1016
+ "Source": "F"
1017
+ },
1018
+ {
1019
+ "query_cn": "有明明在内的照片",
1020
+ "query_en": "photos with Mingming",
1021
+ "ground_truth": [
1022
+ "2018-10-02 214954.jpg",
1023
+ "IMG_6354.JPG",
1024
+ "IMG_20230429_164959.jpg",
1025
+ "IMG_9792.JPG",
1026
+ "2018-11-11 191300.jpg",
1027
+ "IMG_9286.JPG",
1028
+ "2019-04-06 103445.jpg",
1029
+ "2018-12-30 150544.jpg",
1030
+ "2019-03-16 202336.jpg",
1031
+ "IMG_8654.JPG",
1032
+ "2018-12-30 134633.jpg",
1033
+ "IMG_9785.JPG",
1034
+ "2018-12-30 135510.jpg",
1035
+ "IMG_4715.JPG",
1036
+ "2018-09-25 173515.jpg",
1037
+ "IMG_20230131_211759.jpg",
1038
+ "IMG_6342.JPG",
1039
+ "2018-12-30 135456.jpg",
1040
+ "2018-07-12 230054.jpg",
1041
+ "2018-12-30 135513.jpg",
1042
+ "IMG_20221124_125616.jpg",
1043
+ "IMG_9106.JPG",
1044
+ "IMG_9260.JPG",
1045
+ "IMG_6868.JPG",
1046
+ "IMG_20230404_200318.jpg",
1047
+ "2018-04-26 210828.jpg",
1048
+ "IMG_0208.JPG",
1049
+ "IMG_9259.JPG",
1050
+ "IMG_8862.JPG",
1051
+ "IMG_20221005_155621.jpg",
1052
+ "IMG_8053.JPG",
1053
+ "IMG_20230401_121816.jpg",
1054
+ "IMG_6838.JPG",
1055
+ "IMG_8773.JPG",
1056
+ "2019-01-10 132510.jpg",
1057
+ "2019-01-01 121502.jpg",
1058
+ "IMG_20221005_155759.jpg",
1059
+ "2018-10-02 214837.jpg",
1060
+ "2019-04-06 094645.jpg",
1061
+ "IMG_0517.JPG",
1062
+ "IMG_8694.JPG",
1063
+ "IMG_8695.JPG",
1064
+ "IMG_8865.JPG",
1065
+ "IMG_9784.JPG",
1066
+ "2019-03-17 122930.jpg",
1067
+ "IMG_9289.JPG",
1068
+ "2018-12-30 134521.jpg",
1069
+ "IMG_5278.JPG",
1070
+ "2019-04-25 210632.jpg",
1071
+ "2018-12-30 143413.jpg",
1072
+ "2019-01-10 132226.jpg",
1073
+ "IMG_0542.JPG",
1074
+ "IMG_9270.JPG",
1075
+ "2018-12-30 134508.jpg",
1076
+ "2018-11-11 123327.jpg",
1077
+ "2018-02-18 115342.jpg",
1078
+ "2018-12-30 150414.jpg",
1079
+ "IMG_20220315_112203.jpg",
1080
+ "2019-03-17 122941.jpg",
1081
+ "2017-11-15 180614.jpg",
1082
+ "IMG_20230429_152646.jpg",
1083
+ "IMG_6872.JPG",
1084
+ "IMG_5596.JPG",
1085
+ "2018-02-18 115419.jpg",
1086
+ "IMG_8955.JPG",
1087
+ "IMG_8744.JPG",
1088
+ "IMG_6949.JPG",
1089
+ "IMG_9255.JPG",
1090
+ "2019-04-25 210642.jpg",
1091
+ "IMG_6016.JPG",
1092
+ "IMG_8688.JPG",
1093
+ "IMG_20230610_230732.jpg",
1094
+ "IMG_3609.JPG",
1095
+ "IMG_8623.JPG",
1096
+ "IMG_8058.JPG",
1097
+ "IMG_20230429_152729.jpg",
1098
+ "2018-12-30 135451.jpg",
1099
+ "IMG_0498.JPG",
1100
+ "IMG_8665.JPG",
1101
+ "2019-01-10 130421.jpg",
1102
+ "2018-12-30 150021.jpg",
1103
+ "IMG_8866.JPG",
1104
+ "2018-09-25 193628.jpg",
1105
+ "2018-12-30 143406.jpg",
1106
+ "2018-02-18 210846.jpg",
1107
+ "IMG_20220807_145347.jpg",
1108
+ "IMG_8692.JPG",
1109
+ "IMG_6101.JPG",
1110
+ "2019-03-16 202603.jpg",
1111
+ "2019-01-10 131056.jpg",
1112
+ "2018-11-11 191353.jpg",
1113
+ "IMG_7562.JPG",
1114
+ "IMG_7574.JPG",
1115
+ "IMG_8837.JPG",
1116
+ "IMG_20221005_155940.jpg",
1117
+ "IMG_20230429_152658.jpg",
1118
+ "IMG_5595.JPG",
1119
+ "IMG_0613.JPG",
1120
+ "IMG_7507.JPG",
1121
+ "IMG_3477.JPG"
1122
+ ],
1123
+ "ground_truth_count": 100,
1124
+ "Location": null,
1125
+ "Time": null,
1126
+ "Person": "fact",
1127
+ "Object": null,
1128
+ "Concept": null,
1129
+ "Genre": null,
1130
+ "Source": "F"
1131
+ },
1132
+ {
1133
+ "query_cn": "有父亲在内的照片",
1134
+ "query_en": "photos with dad",
1135
+ "ground_truth": [
1136
+ "IMG_6126.JPG",
1137
+ "2019-01-01 121540.jpg",
1138
+ "2017-10-29 151201.jpg",
1139
+ "2019-01-03 150017.jpg",
1140
+ "IMG_6121.JPG",
1141
+ "2018-12-30 150414.jpg",
1142
+ "2019-01-01 165555.jpg",
1143
+ "2019-01-01 165606.jpg",
1144
+ "2019-01-03 160506.jpg",
1145
+ "IMG_20230806_204143.jpg",
1146
+ "2018-12-30 150610.jpg",
1147
+ "2019-01-01 165445.jpg",
1148
+ "2019-01-01 123952.jpg",
1149
+ "2018-12-31 132012.jpg",
1150
+ "2018-12-31 131954.jpg",
1151
+ "IMG_6089.JPG",
1152
+ "IMG_6112.JPG",
1153
+ "2019-01-01 112710.jpg"
1154
+ ],
1155
+ "ground_truth_count": 18,
1156
+ "Location": null,
1157
+ "Time": null,
1158
+ "Person": "cognitive",
1159
+ "Object": null,
1160
+ "Concept": null,
1161
+ "Genre": null,
1162
+ "Source": "F"
1163
+ },
1164
+ {
1165
+ "query_cn": "有自己在内的照片",
1166
+ "query_en": "photos with me",
1167
+ "ground_truth": [
1168
+ "2018-04-01 183458.jpg",
1169
+ "2018-04-03 105352.jpg",
1170
+ "2018-04-23 224824.jpg",
1171
+ "IMG_20220503_203953.jpg",
1172
+ "2017-10-04 223521.jpg",
1173
+ "IMG_20220807_145302.jpg",
1174
+ "2018-11-13 170638.jpg",
1175
+ "IMG_9894.JPG",
1176
+ "2018-11-11 123429.jpg",
1177
+ "2018-04-01 170511.jpg",
1178
+ "IMG_20230114_233549.jpg",
1179
+ "IMG_20220807_121216.jpg",
1180
+ "2017-10-04 223147.jpg",
1181
+ "IMG_20230522_094106.jpg",
1182
+ "2018-03-01 125711.jpg",
1183
+ "2018-10-14 121037.jpg",
1184
+ "IMG_20220430_192253.jpg",
1185
+ "IMG_6350.JPG",
1186
+ "IMG_5596.JPG",
1187
+ "2018-04-23 223623.jpg",
1188
+ "2019-01-01 121510.jpg",
1189
+ "2019-01-10 132226.jpg",
1190
+ "2019-03-03 172252.jpg",
1191
+ "2018-10-16 204309.jpg",
1192
+ "2017-10-04 223228.jpg",
1193
+ "2018-03-31 160233.jpg",
1194
+ "2018-04-01 171142.jpg",
1195
+ "IMG_0523.JPG",
1196
+ "IMG_6872.JPG",
1197
+ "2018-04-26 210954.jpg",
1198
+ "IMG_5598.JPG",
1199
+ "2018-04-03 202015.jpg",
1200
+ "2018-04-23 223538.jpg",
1201
+ "IMG_20220404_213728.jpg",
1202
+ "IMG_20221005_155621.jpg",
1203
+ "IMG_20221019_135025.jpg",
1204
+ "2019-03-03 171931.jpg",
1205
+ "IMG_5595.JPG",
1206
+ "IMG_9107.JPG",
1207
+ "IMG_20221005_155759.jpg",
1208
+ "IMG_20230225_182303.jpg",
1209
+ "IMG_20220315_112203.jpg",
1210
+ "IMG_6342.JPG",
1211
+ "2018-04-23 224737.jpg",
1212
+ "2018-04-26 210601.jpg",
1213
+ "2018-04-23 223409.jpg",
1214
+ "2017-12-22 192925.jpg",
1215
+ "2018-04-02 140117.jpg",
1216
+ "IMG_20221005_155940.jpg",
1217
+ "IMG_20220916_110347.jpg",
1218
+ "2018-04-23 223347.jpg",
1219
+ "2017-10-04 223534.jpg",
1220
+ "2018-11-11 191519.jpg",
1221
+ "IMG_20220504_162939.jpg",
1222
+ "2018-03-01 125727.jpg",
1223
+ "2017-11-15 180614.jpg",
1224
+ "IMG_20220623_212642.jpg",
1225
+ "IMG_20230106_213713.jpg",
1226
+ "IMG_20220623_212500.jpg"
1227
+ ],
1228
+ "ground_truth_count": 59,
1229
+ "Location": null,
1230
+ "Time": null,
1231
+ "Person": "cognitive",
1232
+ "Object": null,
1233
+ "Concept": null,
1234
+ "Genre": null,
1235
+ "Source": "F"
1236
+ },
1237
+ {
1238
+ "query_cn": "自己、小宝、小明的照片",
1239
+ "query_en": "me, Xiao Bao, Xiaoming photos",
1240
+ "ground_truth": [
1241
+ "IMG_20221005_155759.jpg",
1242
+ "IMG_20221005_155621.jpg",
1243
+ "IMG_20221005_155940.jpg"
1244
+ ],
1245
+ "ground_truth_count": 3,
1246
+ "Location": null,
1247
+ "Time": null,
1248
+ "Person": "cognitive",
1249
+ "Object": null,
1250
+ "Concept": null,
1251
+ "Genre": null,
1252
+ "Source": "F"
1253
+ },
1254
+ {
1255
+ "query_cn": "有张晓莉在内的照片",
1256
+ "query_en": "photos with Zhang Xiaoli",
1257
+ "ground_truth": [
1258
+ "2019-01-01 112710.jpg",
1259
+ "2018-12-30 150610.jpg",
1260
+ "2019-01-01 165525.jpg",
1261
+ "2018-12-30 135510.jpg",
1262
+ "2018-12-30 134633.jpg",
1263
+ "2018-12-30 134508.jpg",
1264
+ "2019-01-01 121540.jpg",
1265
+ "2019-01-03 150017.jpg",
1266
+ "2019-01-03 160124.jpg",
1267
+ "2019-01-01 165643.jpg",
1268
+ "IMG_6120.JPG",
1269
+ "2018-12-30 135456.jpg",
1270
+ "IMG_6114.JPG",
1271
+ "IMG_6093.JPG",
1272
+ "2019-01-01 165606.jpg",
1273
+ "2018-12-30 134850.jpg",
1274
+ "2018-12-31 132012.jpg",
1275
+ "2018-12-30 151236.jpg",
1276
+ "IMG_6160.JPG",
1277
+ "2019-01-01 165445.jpg",
1278
+ "2018-12-30 143413.jpg",
1279
+ "2018-12-30 150414.jpg",
1280
+ "2018-12-30 151233.jpg",
1281
+ "IMG_6137.JPG",
1282
+ "2018-12-31 131954.jpg",
1283
+ "2018-12-30 132157.jpg",
1284
+ "2018-12-30 134902.jpg",
1285
+ "2017-10-29 151201.jpg",
1286
+ "IMG_6113.JPG",
1287
+ "2019-01-01 165434.jpg",
1288
+ "2018-12-30 134521.jpg"
1289
+ ],
1290
+ "ground_truth_count": 31,
1291
+ "Location": null,
1292
+ "Time": null,
1293
+ "Person": "fact",
1294
+ "Object": null,
1295
+ "Concept": null,
1296
+ "Genre": null,
1297
+ "Source": "F"
1298
+ },
1299
+ {
1300
+ "query_cn": "乐乐和小明的合照",
1301
+ "query_en": "Lele and Xiaoming group photo",
1302
+ "ground_truth": [
1303
+ "IMG_8654.JPG",
1304
+ "IMG_6354.JPG",
1305
+ "2018-11-11 191300.jpg",
1306
+ "IMG_6872.JPG",
1307
+ "IMG_7922.JPG",
1308
+ "2018-07-12 230054.jpg",
1309
+ "IMG_6838.JPG",
1310
+ "2018-12-30 150021.jpg",
1311
+ "2019-01-10 130421.jpg",
1312
+ "IMG_8653.JPG",
1313
+ "2019-03-17 122941.jpg",
1314
+ "IMG_7562.JPG",
1315
+ "IMG_8837.JPG",
1316
+ "2018-12-30 150610.jpg",
1317
+ "IMG_5595.JPG",
1318
+ "IMG_8665.JPG",
1319
+ "IMG_9259.JPG",
1320
+ "2018-11-11 191353.jpg",
1321
+ "2019-04-06 094645.jpg"
1322
+ ],
1323
+ "ground_truth_count": 19,
1324
+ "Location": null,
1325
+ "Time": null,
1326
+ "Person": "fact",
1327
+ "Object": null,
1328
+ "Concept": null,
1329
+ "Genre": null,
1330
+ "Source": "F"
1331
+ },
1332
+ {
1333
+ "query_cn": "有侄子在内的照片",
1334
+ "query_en": "photos with nephew",
1335
+ "ground_truth": [
1336
+ "IMG_3589.JPG",
1337
+ "IMG_8796.JPG",
1338
+ "2018-02-18 115419.jpg",
1339
+ "2018-02-18 115443.jpg",
1340
+ "2018-02-18 115342.jpg",
1341
+ "IMG_8872.JPG",
1342
+ "2018-02-18 210738.jpg",
1343
+ "2018-02-18 153511.jpg",
1344
+ "2018-02-18 153257.jpg",
1345
+ "IMG_8815.JPG",
1346
+ "IMG_7321.JPG",
1347
+ "IMG_7327.JPG"
1348
+ ],
1349
+ "ground_truth_count": 12,
1350
+ "Location": null,
1351
+ "Time": null,
1352
+ "Person": "cognitive",
1353
+ "Object": null,
1354
+ "Concept": null,
1355
+ "Genre": null,
1356
+ "Source": "F"
1357
+ },
1358
+ {
1359
+ "query_cn": "妈的照片",
1360
+ "query_en": "mom photos",
1361
+ "ground_truth": [
1362
+ "2018-12-30 134633.jpg",
1363
+ "2018-12-30 134902.jpg",
1364
+ "2019-01-01 165525.jpg",
1365
+ "IMG_6093.JPG",
1366
+ "2018-12-30 134508.jpg",
1367
+ "2019-01-01 165606.jpg",
1368
+ "2018-12-30 143413.jpg",
1369
+ "2019-01-03 160124.jpg",
1370
+ "2017-10-29 151201.jpg",
1371
+ "IMG_6137.JPG",
1372
+ "2018-12-31 131954.jpg",
1373
+ "2018-12-30 135510.jpg",
1374
+ "IMG_6114.JPG",
1375
+ "2019-01-01 165434.jpg",
1376
+ "IMG_6120.JPG",
1377
+ "IMG_6160.JPG",
1378
+ "2019-01-01 121540.jpg",
1379
+ "2018-12-30 151236.jpg",
1380
+ "2018-12-30 134521.jpg",
1381
+ "2018-12-30 150414.jpg",
1382
+ "2018-12-30 150610.jpg",
1383
+ "2018-12-30 132157.jpg",
1384
+ "2019-01-01 165445.jpg",
1385
+ "IMG_6113.JPG",
1386
+ "2019-01-01 112710.jpg",
1387
+ "2018-12-30 135456.jpg",
1388
+ "2019-01-01 165643.jpg",
1389
+ "2018-12-31 132012.jpg",
1390
+ "2018-12-30 151233.jpg",
1391
+ "2018-12-30 134850.jpg",
1392
+ "2019-01-03 150017.jpg"
1393
+ ],
1394
+ "ground_truth_count": 31,
1395
+ "Location": null,
1396
+ "Time": null,
1397
+ "Person": "cognitive",
1398
+ "Object": null,
1399
+ "Concept": null,
1400
+ "Genre": null,
1401
+ "Source": "F"
1402
+ },
1403
+ {
1404
+ "query_cn": "大宝、妈、爸爸的照片",
1405
+ "query_en": "Da Bao, mom, dad photos",
1406
+ "ground_truth": [
1407
+ "2018-12-30 150610.jpg",
1408
+ "2018-12-30 150414.jpg",
1409
+ "2018-12-31 132012.jpg"
1410
+ ],
1411
+ "ground_truth_count": 3,
1412
+ "Location": null,
1413
+ "Time": null,
1414
+ "Person": "cognitive",
1415
+ "Object": null,
1416
+ "Concept": null,
1417
+ "Genre": null,
1418
+ "Source": "F"
1419
+ },
1420
+ {
1421
+ "query_cn": "有大宝和小雪在一起的照片",
1422
+ "query_en": "photos of Da Bao with Xiaoxue",
1423
+ "ground_truth": [
1424
+ "IMG_20230429_152658.jpg",
1425
+ "IMG_20221005_155621.jpg",
1426
+ "IMG_20230131_211759.jpg",
1427
+ "IMG_20221005_155759.jpg",
1428
+ "IMG_20221005_155940.jpg",
1429
+ "IMG_20230429_152729.jpg"
1430
+ ],
1431
+ "ground_truth_count": 6,
1432
+ "Location": null,
1433
+ "Time": null,
1434
+ "Person": "fact",
1435
+ "Object": null,
1436
+ "Concept": null,
1437
+ "Genre": null,
1438
+ "Source": "F"
1439
+ },
1440
+ {
1441
+ "query_cn": "有小乐和自己在一起的照片",
1442
+ "query_en": "photos of Xiaole with me",
1443
+ "ground_truth": [
1444
+ "2018-11-11 191519.jpg",
1445
+ "IMG_5595.JPG",
1446
+ "2018-11-11 123429.jpg",
1447
+ "IMG_5598.JPG",
1448
+ "IMG_6872.JPG"
1449
+ ],
1450
+ "ground_truth_count": 5,
1451
+ "Location": null,
1452
+ "Time": null,
1453
+ "Person": "cognitive",
1454
+ "Object": null,
1455
+ "Concept": null,
1456
+ "Genre": null,
1457
+ "Source": "F"
1458
+ },
1459
+ {
1460
+ "query_cn": "自己、雪儿、明明的照片",
1461
+ "query_en": "me, Xue'er, Mingming photos",
1462
+ "ground_truth": [
1463
+ "IMG_20221005_155940.jpg",
1464
+ "IMG_20221005_155759.jpg",
1465
+ "IMG_20221005_155621.jpg"
1466
+ ],
1467
+ "ground_truth_count": 3,
1468
+ "Location": null,
1469
+ "Time": null,
1470
+ "Person": "cognitive",
1471
+ "Object": null,
1472
+ "Concept": null,
1473
+ "Genre": null,
1474
+ "Source": "F"
1475
+ },
1476
+ {
1477
+ "query_cn": "我、大宝、小乐的照片",
1478
+ "query_en": "me, Da Bao, Xiaole photos",
1479
+ "ground_truth": [
1480
+ "IMG_6872.JPG",
1481
+ "IMG_5595.JPG"
1482
+ ],
1483
+ "ground_truth_count": 2,
1484
+ "Location": null,
1485
+ "Time": null,
1486
+ "Person": "cognitive",
1487
+ "Object": null,
1488
+ "Concept": null,
1489
+ "Genre": null,
1490
+ "Source": "F"
1491
+ },
1492
+ {
1493
+ "query_cn": "有明明和自己在一起的照片",
1494
+ "query_en": "photos of Mingming with me",
1495
+ "ground_truth": [
1496
+ "IMG_5596.JPG",
1497
+ "IMG_20221005_155621.jpg",
1498
+ "IMG_6872.JPG",
1499
+ "IMG_5595.JPG",
1500
+ "IMG_20221005_155759.jpg",
1501
+ "IMG_20220315_112203.jpg",
1502
+ "IMG_6342.JPG",
1503
+ "2017-11-15 180614.jpg",
1504
+ "IMG_20230225_182303.jpg",
1505
+ "2019-01-10 132226.jpg",
1506
+ "IMG_20221005_155940.jpg"
1507
+ ],
1508
+ "ground_truth_count": 11,
1509
+ "Location": null,
1510
+ "Time": null,
1511
+ "Person": "cognitive",
1512
+ "Object": null,
1513
+ "Concept": null,
1514
+ "Genre": null,
1515
+ "Source": "F"
1516
+ },
1517
+ {
1518
+ "query_cn": "大宝、妈、王建国的照片",
1519
+ "query_en": "Da Bao, mom, Wang Jianguo photos",
1520
+ "ground_truth": [
1521
+ "2018-12-30 150610.jpg",
1522
+ "2018-12-31 132012.jpg",
1523
+ "2018-12-30 150414.jpg"
1524
+ ],
1525
+ "ground_truth_count": 3,
1526
+ "Location": null,
1527
+ "Time": null,
1528
+ "Person": "cognitive",
1529
+ "Object": null,
1530
+ "Concept": null,
1531
+ "Genre": null,
1532
+ "Source": "F"
1533
+ },
1534
+ {
1535
+ "query_cn": "嘉定区",
1536
+ "query_en": "Jiading District",
1537
+ "ground_truth": [
1538
+ "IMG_20220621_123047.jpg",
1539
+ "IMG_20220621_123008.jpg",
1540
+ "IMG_20220621_123028.jpg",
1541
+ "IMG_20220621_123106.jpg",
1542
+ "IMG_20220621_123000.jpg",
1543
+ "IMG_20220621_123305.jpg",
1544
+ "IMG_20220621_123015.jpg"
1545
+ ],
1546
+ "ground_truth_count": 7,
1547
+ "Location": "fact",
1548
+ "Time": null,
1549
+ "Person": null,
1550
+ "Object": null,
1551
+ "Concept": null,
1552
+ "Genre": null,
1553
+ "Source": "M"
1554
+ },
1555
+ {
1556
+ "query_cn": "在虹桥镇的照片",
1557
+ "query_en": "photos in Hongqiao Town",
1558
+ "ground_truth": [
1559
+ "IMG_20220716_141625.jpg",
1560
+ "IMG_20220716_141621.jpg"
1561
+ ],
1562
+ "ground_truth_count": 2,
1563
+ "Location": "fact",
1564
+ "Time": null,
1565
+ "Person": null,
1566
+ "Object": null,
1567
+ "Concept": null,
1568
+ "Genre": null,
1569
+ "Source": "M"
1570
+ },
1571
+ {
1572
+ "query_cn": "宿州市",
1573
+ "query_en": "Suzhou City",
1574
+ "ground_truth": [
1575
+ "2017-10-17 210236.jpg"
1576
+ ],
1577
+ "ground_truth_count": 1,
1578
+ "Location": "fact",
1579
+ "Time": null,
1580
+ "Person": null,
1581
+ "Object": null,
1582
+ "Concept": null,
1583
+ "Genre": null,
1584
+ "Source": "M"
1585
+ },
1586
+ {
1587
+ "query_cn": "在上海市浦东新区的照片",
1588
+ "query_en": "photos in Pudong, Shanghai",
1589
+ "ground_truth": [
1590
+ "IMG_20220226_151752.jpg"
1591
+ ],
1592
+ "ground_truth_count": 1,
1593
+ "Location": "fact",
1594
+ "Time": null,
1595
+ "Person": null,
1596
+ "Object": null,
1597
+ "Concept": null,
1598
+ "Genre": null,
1599
+ "Source": "M"
1600
+ },
1601
+ {
1602
+ "query_cn": "在夷陵区的照片",
1603
+ "query_en": "photos in Yiling District",
1604
+ "ground_truth": [
1605
+ "2017-11-05 145421.jpg",
1606
+ "2017-11-05 164059.jpg",
1607
+ "2017-11-05 150002.jpg",
1608
+ "2017-11-05 164457.jpg",
1609
+ "2017-11-05 151308.jpg",
1610
+ "2017-11-05 151838.jpg",
1611
+ "2017-11-05 153546.jpg",
1612
+ "2017-11-05 145912.jpg",
1613
+ "2017-11-05 151340.jpg",
1614
+ "2017-11-05 164041.jpg",
1615
+ "2017-11-05 155740.jpg",
1616
+ "2017-11-05 155728.jpg",
1617
+ "2017-11-05 151427.jpg",
1618
+ "2017-11-05 152200.jpg",
1619
+ "2017-11-05 150808.jpg",
1620
+ "2017-11-05 150513.jpg",
1621
+ "2017-11-05 145018.jpg",
1622
+ "2017-11-05 164429.jpg",
1623
+ "2017-11-05 153809.jpg",
1624
+ "2017-11-05 152623.jpg",
1625
+ "2017-11-05 145407.jpg",
1626
+ "2017-11-05 150755.jpg",
1627
+ "2017-11-05 153533.jpg",
1628
+ "2017-11-05 161103.jpg",
1629
+ "2017-11-05 130529.jpg",
1630
+ "2017-11-05 152724.jpg",
1631
+ "2017-11-05 152601.jpg",
1632
+ "2017-11-05 151451.jpg"
1633
+ ],
1634
+ "ground_truth_count": 28,
1635
+ "Location": "fact",
1636
+ "Time": null,
1637
+ "Person": null,
1638
+ "Object": null,
1639
+ "Concept": null,
1640
+ "Genre": null,
1641
+ "Source": "M"
1642
+ },
1643
+ {
1644
+ "query_cn": "在广平县的照片",
1645
+ "query_en": "Guangping County photos",
1646
+ "ground_truth": [
1647
+ "2018-10-15 125003.jpg",
1648
+ "2018-10-14 121037.jpg",
1649
+ "2018-10-15 124954.jpg"
1650
+ ],
1651
+ "ground_truth_count": 3,
1652
+ "Location": "cognitive",
1653
+ "Time": null,
1654
+ "Person": null,
1655
+ "Object": null,
1656
+ "Concept": null,
1657
+ "Genre": null,
1658
+ "Source": "M"
1659
+ },
1660
+ {
1661
+ "query_cn": "七宝",
1662
+ "query_en": "Qibao pics",
1663
+ "ground_truth": [
1664
+ "IMG_20220624_134949.jpg",
1665
+ "IMG_20220624_151905.jpg",
1666
+ "IMG_20220624_151900.jpg",
1667
+ "IMG_20220624_152213.jpg"
1668
+ ],
1669
+ "ground_truth_count": 4,
1670
+ "Location": "fact",
1671
+ "Time": null,
1672
+ "Person": null,
1673
+ "Object": null,
1674
+ "Concept": null,
1675
+ "Genre": null,
1676
+ "Source": "M"
1677
+ },
1678
+ {
1679
+ "query_cn": "澳门路",
1680
+ "query_en": "Macau Road pics",
1681
+ "ground_truth": [
1682
+ "IMG_4793.JPG",
1683
+ "IMG_4785.JPG",
1684
+ "IMG_5103.JPG",
1685
+ "IMG_4784.JPG",
1686
+ "IMG_4987.JPG",
1687
+ "IMG_4787.JPG",
1688
+ "IMG_4790.JPG",
1689
+ "IMG_4791.JPG",
1690
+ "IMG_4794.JPG"
1691
+ ],
1692
+ "ground_truth_count": 9,
1693
+ "Location": "fact",
1694
+ "Time": null,
1695
+ "Person": null,
1696
+ "Object": null,
1697
+ "Concept": null,
1698
+ "Genre": null,
1699
+ "Source": "M"
1700
+ },
1701
+ {
1702
+ "query_cn": "安徽省",
1703
+ "query_en": "Anhui photos",
1704
+ "ground_truth": [
1705
+ "2017-10-17 210236.jpg"
1706
+ ],
1707
+ "ground_truth_count": 1,
1708
+ "Location": "fact",
1709
+ "Time": null,
1710
+ "Person": null,
1711
+ "Object": null,
1712
+ "Concept": null,
1713
+ "Genre": null,
1714
+ "Source": "M"
1715
+ },
1716
+ {
1717
+ "query_cn": "秦皇岛市拍的",
1718
+ "query_en": "Qinhuangdao photos",
1719
+ "ground_truth": [
1720
+ "IMG_8837.JPG",
1721
+ "IMG_8736.JPG",
1722
+ "IMG_8654.JPG",
1723
+ "IMG_8774.JPG",
1724
+ "IMG_8653.JPG",
1725
+ "IMG_8744.JPG",
1726
+ "IMG_8665.JPG",
1727
+ "IMG_8745.JPG",
1728
+ "IMG_8841.JPG",
1729
+ "IMG_8773.JPG",
1730
+ "IMG_8700.JPG",
1731
+ "IMG_8815.JPG",
1732
+ "IMG_8876.JPG",
1733
+ "IMG_8796.JPG",
1734
+ "IMG_8872.JPG",
1735
+ "IMG_8742.JPG",
1736
+ "IMG_8843.JPG",
1737
+ "IMG_8775.JPG",
1738
+ "IMG_8762.JPG"
1739
+ ],
1740
+ "ground_truth_count": 19,
1741
+ "Location": "cognitive",
1742
+ "Time": null,
1743
+ "Person": null,
1744
+ "Object": null,
1745
+ "Concept": null,
1746
+ "Genre": null,
1747
+ "Source": "M"
1748
+ },
1749
+ {
1750
+ "query_cn": "在永年拍的我、小乐的照片",
1751
+ "query_en": "Yongnian photos me, Xiaole",
1752
+ "ground_truth": [
1753
+ "2018-11-11 123429.jpg",
1754
+ "2018-11-11 191519.jpg"
1755
+ ],
1756
+ "ground_truth_count": 2,
1757
+ "Location": "cognitive",
1758
+ "Time": null,
1759
+ "Person": "cognitive",
1760
+ "Object": null,
1761
+ "Concept": null,
1762
+ "Genre": null,
1763
+ "Source": "MF"
1764
+ },
1765
+ {
1766
+ "query_cn": "在石家庄市拍的大宝、母亲的照片",
1767
+ "query_en": "Shijiazhuang photos Dabao, mom",
1768
+ "ground_truth": [
1769
+ "2018-12-30 143413.jpg",
1770
+ "2018-12-30 150610.jpg",
1771
+ "2018-12-30 135510.jpg",
1772
+ "2018-12-30 134521.jpg",
1773
+ "2018-12-30 134508.jpg",
1774
+ "2018-12-30 135456.jpg",
1775
+ "2018-12-30 134633.jpg",
1776
+ "2018-12-31 132012.jpg",
1777
+ "2018-12-30 150414.jpg"
1778
+ ],
1779
+ "ground_truth_count": 9,
1780
+ "Location": "cognitive",
1781
+ "Time": null,
1782
+ "Person": "cognitive",
1783
+ "Object": null,
1784
+ "Concept": null,
1785
+ "Genre": null,
1786
+ "Source": "MF"
1787
+ },
1788
+ {
1789
+ "query_cn": "在复兴区拍的有小宝的照片",
1790
+ "query_en": "Fuxing District photos Xiaobao",
1791
+ "ground_truth": [
1792
+ "IMG_20221005_155621.jpg",
1793
+ "IMG_20221005_155759.jpg",
1794
+ "IMG_20221005_155940.jpg",
1795
+ "IMG_20221005_160829.jpg",
1796
+ "IMG_20221005_160833.jpg",
1797
+ "IMG_20221005_161012.jpg"
1798
+ ],
1799
+ "ground_truth_count": 6,
1800
+ "Location": "cognitive",
1801
+ "Time": null,
1802
+ "Person": "cognitive",
1803
+ "Object": null,
1804
+ "Concept": null,
1805
+ "Genre": null,
1806
+ "Source": "MF"
1807
+ },
1808
+ {
1809
+ "query_cn": "2017年中秋节的照片",
1810
+ "query_en": "2017 Mid-Autumn Festival photos",
1811
+ "ground_truth": [
1812
+ "2017-10-04 223521.jpg",
1813
+ "2017-10-04 223534.jpg",
1814
+ "2017-10-04 223147.jpg",
1815
+ "2017-10-04 223228.jpg",
1816
+ "2017-10-04 223242.jpg"
1817
+ ],
1818
+ "ground_truth_count": 5,
1819
+ "Location": null,
1820
+ "Time": "cognitive",
1821
+ "Person": null,
1822
+ "Object": null,
1823
+ "Concept": null,
1824
+ "Genre": null,
1825
+ "Source": "M"
1826
+ },
1827
+ {
1828
+ "query_cn": "2019年元旦的照片",
1829
+ "query_en": "2019 New Year's Day photos",
1830
+ "ground_truth": [
1831
+ "2019-01-01 165606.jpg",
1832
+ "2019-01-01 112710.jpg",
1833
+ "2019-01-01 121510.jpg",
1834
+ "2019-01-01 121557.jpg",
1835
+ "2019-01-01 123952.jpg",
1836
+ "2019-01-01 123957.jpg",
1837
+ "2019-01-01 164619.jpg",
1838
+ "2019-01-01 212820.jpg",
1839
+ "2019-01-01 121540.jpg",
1840
+ "2019-01-01 165434.jpg",
1841
+ "2019-01-01 165445.jpg",
1842
+ "2019-01-01 165643.jpg",
1843
+ "2019-01-01 121502.jpg",
1844
+ "2019-01-01 171936.jpg",
1845
+ "2019-01-01 165525.jpg",
1846
+ "2019-01-01 165555.jpg"
1847
+ ],
1848
+ "ground_truth_count": 16,
1849
+ "Location": null,
1850
+ "Time": "cognitive",
1851
+ "Person": null,
1852
+ "Object": null,
1853
+ "Concept": null,
1854
+ "Genre": null,
1855
+ "Source": "M"
1856
+ },
1857
+ {
1858
+ "query_cn": "过2022年国庆节",
1859
+ "query_en": "2022 National Day",
1860
+ "ground_truth": [
1861
+ "IMG_20221005_155621.jpg",
1862
+ "IMG_20221005_155759.jpg",
1863
+ "IMG_20221005_155940.jpg",
1864
+ "IMG_20221005_161008.jpg",
1865
+ "IMG_20221005_160829.jpg",
1866
+ "IMG_20221005_160833.jpg",
1867
+ "IMG_20221005_161012.jpg"
1868
+ ],
1869
+ "ground_truth_count": 7,
1870
+ "Location": null,
1871
+ "Time": "cognitive",
1872
+ "Person": null,
1873
+ "Object": null,
1874
+ "Concept": null,
1875
+ "Genre": null,
1876
+ "Source": "M"
1877
+ },
1878
+ {
1879
+ "query_cn": "2023年春节的照片",
1880
+ "query_en": "2023 Chinese New Year photos",
1881
+ "ground_truth": [
1882
+ "IMG_20230123_101634.jpg",
1883
+ "IMG_20230122_211602.jpg",
1884
+ "IMG_20230123_095546.jpg"
1885
+ ],
1886
+ "ground_truth_count": 3,
1887
+ "Location": null,
1888
+ "Time": "cognitive",
1889
+ "Person": null,
1890
+ "Object": null,
1891
+ "Concept": null,
1892
+ "Genre": null,
1893
+ "Source": "M"
1894
+ },
1895
+ {
1896
+ "query_cn": "2023年1月23日拍的",
1897
+ "query_en": "January 23, 2023",
1898
+ "ground_truth": [
1899
+ "IMG_20230123_101634.jpg",
1900
+ "IMG_20230123_095546.jpg"
1901
+ ],
1902
+ "ground_truth_count": 2,
1903
+ "Location": null,
1904
+ "Time": "fact",
1905
+ "Person": null,
1906
+ "Object": null,
1907
+ "Concept": null,
1908
+ "Genre": null,
1909
+ "Source": "M"
1910
+ },
1911
+ {
1912
+ "query_cn": "2019年9月的照片",
1913
+ "query_en": "September 2019 photos",
1914
+ "ground_truth": [
1915
+ "IMG_9320.JPG",
1916
+ "IMG_9270.JPG",
1917
+ "IMG_9260.JPG",
1918
+ "IMG_9243.JPG",
1919
+ "IMG_9187.JPG",
1920
+ "IMG_9142.JPG",
1921
+ "IMG_9251.JPG",
1922
+ "IMG_9291.JPG",
1923
+ "IMG_9284.JPG",
1924
+ "IMG_9255.JPG",
1925
+ "IMG_9286.JPG",
1926
+ "IMG_9311.JPG",
1927
+ "IMG_9315.JPG",
1928
+ "IMG_9157.JPG",
1929
+ "IMG_9316.JPG",
1930
+ "IMG_9149.JPG",
1931
+ "IMG_9317.JPG",
1932
+ "IMG_9309.JPG",
1933
+ "IMG_9313.JPG",
1934
+ "IMG_9181.JPG",
1935
+ "IMG_9259.JPG",
1936
+ "IMG_9280.JPG",
1937
+ "IMG_9308.JPG",
1938
+ "IMG_9289.JPG"
1939
+ ],
1940
+ "ground_truth_count": 24,
1941
+ "Location": null,
1942
+ "Time": "fact",
1943
+ "Person": null,
1944
+ "Object": null,
1945
+ "Concept": null,
1946
+ "Genre": null,
1947
+ "Source": "M"
1948
+ },
1949
+ {
1950
+ "query_cn": "2020年2月",
1951
+ "query_en": "February 2020",
1952
+ "ground_truth": [
1953
+ "IMG_9967.JPG",
1954
+ "IMG_9907.JPG",
1955
+ "IMG_9919.JPG",
1956
+ "IMG_0012.JPG",
1957
+ "IMG_9925.JPG",
1958
+ "IMG_9914.JPG",
1959
+ "IMG_9960.JPG",
1960
+ "IMG_9917.JPG",
1961
+ "IMG_9936.JPG",
1962
+ "IMG_9913.JPG",
1963
+ "IMG_9916.JPG",
1964
+ "IMG_9894.JPG",
1965
+ "IMG_9976.JPG",
1966
+ "IMG_9934.JPG"
1967
+ ],
1968
+ "ground_truth_count": 14,
1969
+ "Location": null,
1970
+ "Time": "fact",
1971
+ "Person": null,
1972
+ "Object": null,
1973
+ "Concept": null,
1974
+ "Genre": null,
1975
+ "Source": "M"
1976
+ },
1977
+ {
1978
+ "query_cn": "2019年夏季拍的",
1979
+ "query_en": "summer 2019",
1980
+ "ground_truth": [
1981
+ "IMG_8862.JPG",
1982
+ "IMG_8935.JPG",
1983
+ "IMG_8837.JPG",
1984
+ "IMG_8989.JPG",
1985
+ "IMG_8736.JPG",
1986
+ "IMG_8909.JPG",
1987
+ "IMG_8654.JPG",
1988
+ "IMG_8923.JPG",
1989
+ "IMG_8955.JPG",
1990
+ "user01 (5).JPG",
1991
+ "IMG_8623.JPG",
1992
+ "IMG_8774.JPG",
1993
+ "IMG_8653.JPG",
1994
+ "IMG_8744.JPG",
1995
+ "IMG_8665.JPG",
1996
+ "IMG_8745.JPG",
1997
+ "IMG_9029.JPG",
1998
+ "IMG_9007.JPG",
1999
+ "IMG_8972.JPG",
2000
+ "IMG_8841.JPG",
2001
+ "IMG_8865.JPG",
2002
+ "IMG_8910.JPG",
2003
+ "IMG_8988.JPG",
2004
+ "user01 (4).JPG",
2005
+ "IMG_8866.JPG",
2006
+ "IMG_8773.JPG",
2007
+ "IMG_8700.JPG",
2008
+ "IMG_8815.JPG",
2009
+ "IMG_8860.JPG",
2010
+ "IMG_9107.JPG",
2011
+ "IMG_8876.JPG",
2012
+ "IMG_8796.JPG",
2013
+ "IMG_8872.JPG",
2014
+ "IMG_8742.JPG",
2015
+ "IMG_8843.JPG",
2016
+ "IMG_8775.JPG",
2017
+ "IMG_8762.JPG",
2018
+ "IMG_9099.JPG"
2019
+ ],
2020
+ "ground_truth_count": 38,
2021
+ "Location": null,
2022
+ "Time": "cognitive",
2023
+ "Person": null,
2024
+ "Object": null,
2025
+ "Concept": null,
2026
+ "Genre": null,
2027
+ "Source": "M"
2028
+ },
2029
+ {
2030
+ "query_cn": "2023年8月",
2031
+ "query_en": "August 2023",
2032
+ "ground_truth": [
2033
+ "IMG_20230806_204143.jpg",
2034
+ "IMG_20230806_205817.jpg",
2035
+ "IMG_20230802_082840.jpg",
2036
+ "IMG_20230805_195635.jpg",
2037
+ "IMG_20230802_082937.jpg",
2038
+ "IMG_20230806_204342.jpg",
2039
+ "IMG_20230802_155527.jpg",
2040
+ "IMG_20230808_115133.jpg",
2041
+ "IMG_20230806_205755.jpg",
2042
+ "IMG_20230805_184325.jpg",
2043
+ "IMG_20230803_203642.jpg",
2044
+ "IMG_20230801_151605.jpg",
2045
+ "IMG_20230808_115142.jpg",
2046
+ "IMG_20230806_203916.jpg",
2047
+ "IMG_20230805_172125.jpg"
2048
+ ],
2049
+ "ground_truth_count": 15,
2050
+ "Location": null,
2051
+ "Time": "fact",
2052
+ "Person": null,
2053
+ "Object": null,
2054
+ "Concept": null,
2055
+ "Genre": null,
2056
+ "Source": "M"
2057
+ },
2058
+ {
2059
+ "query_cn": "2018年5月的照片",
2060
+ "query_en": "May 2018 photos",
2061
+ "ground_truth": [
2062
+ "2018-05-06 150650.jpg",
2063
+ "2018-05-14 143026.jpg",
2064
+ "2018-05-26 001806.jpg",
2065
+ "2018-05-14 155237.jpg",
2066
+ "2018-05-14 143042.jpg",
2067
+ "2018-05-14 143019.jpg",
2068
+ "2018-05-14 153059.jpg",
2069
+ "2018-05-06 131830.jpg",
2070
+ "2018-05-31 190055.jpg"
2071
+ ],
2072
+ "ground_truth_count": 9,
2073
+ "Location": null,
2074
+ "Time": "fact",
2075
+ "Person": null,
2076
+ "Object": null,
2077
+ "Concept": null,
2078
+ "Genre": null,
2079
+ "Source": "M"
2080
+ },
2081
+ {
2082
+ "query_cn": "给宝宝喂药用滴管",
2083
+ "query_en": "baby medicine dropper feeding",
2084
+ "ground_truth": [],
2085
+ "ground_truth_count": 0,
2086
+ "Location": null,
2087
+ "Time": null,
2088
+ "Person": "cognitive",
2089
+ "Object": "cognitive",
2090
+ "Concept": null,
2091
+ "Genre": null,
2092
+ "Source": "VF"
2093
+ },
2094
+ {
2095
+ "query_cn": "厨房三兄弟叠碗挑战",
2096
+ "query_en": "kitchen brothers bowl stacking challenge",
2097
+ "ground_truth": [],
2098
+ "ground_truth_count": 0,
2099
+ "Location": "cognitive",
2100
+ "Time": null,
2101
+ "Person": "cognitive",
2102
+ "Object": "cognitive",
2103
+ "Concept": null,
2104
+ "Genre": null,
2105
+ "Source": "VF"
2106
+ },
2107
+ {
2108
+ "query_cn": "2014年4月 孩子们与卡通兔子互动",
2109
+ "query_en": "April 2014 kids with cartoon bunny",
2110
+ "ground_truth": [],
2111
+ "ground_truth_count": 0,
2112
+ "Location": null,
2113
+ "Time": "fact",
2114
+ "Person": "cognitive",
2115
+ "Object": "cognitive",
2116
+ "Concept": null,
2117
+ "Genre": null,
2118
+ "Source": "VMF"
2119
+ },
2120
+ {
2121
+ "query_cn": "老爸潇洒跟雕塑坐一起, 7月份",
2122
+ "query_en": "dad sitting cool with statue July",
2123
+ "ground_truth": [],
2124
+ "ground_truth_count": 0,
2125
+ "Location": null,
2126
+ "Time": "cognitive",
2127
+ "Person": "cognitive",
2128
+ "Object": "cognitive",
2129
+ "Concept": null,
2130
+ "Genre": null,
2131
+ "Source": "VMF"
2132
+ },
2133
+ {
2134
+ "query_cn": "清朝官服表演秀, 2013",
2135
+ "query_en": "Qing dynasty costume show 2013",
2136
+ "ground_truth": [],
2137
+ "ground_truth_count": 0,
2138
+ "Location": null,
2139
+ "Time": "fact",
2140
+ "Person": null,
2141
+ "Object": "cognitive",
2142
+ "Concept": null,
2143
+ "Genre": null,
2144
+ "Source": "VM"
2145
+ },
2146
+ {
2147
+ "query_cn": "在上海拍的 婚礼新郎台上致辞",
2148
+ "query_en": "Shanghai groom wedding speech on stage",
2149
+ "ground_truth": [],
2150
+ "ground_truth_count": 0,
2151
+ "Location": "fact",
2152
+ "Time": null,
2153
+ "Person": "cognitive",
2154
+ "Object": null,
2155
+ "Concept": null,
2156
+ "Genre": null,
2157
+ "Source": "VMF"
2158
+ },
2159
+ {
2160
+ "query_cn": "在湖北省拍的 复古小火车亲子游",
2161
+ "query_en": "Hubei vintage train family trip",
2162
+ "ground_truth": [],
2163
+ "ground_truth_count": 0,
2164
+ "Location": "fact",
2165
+ "Time": null,
2166
+ "Person": "cognitive",
2167
+ "Object": "cognitive",
2168
+ "Concept": null,
2169
+ "Genre": null,
2170
+ "Source": "VMF"
2171
+ }
2172
+ ]