forked from mbzuai-oryx/GeoPixel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmismatch_report.txt
More file actions
1440 lines (1178 loc) · 61.6 KB
/
mismatch_report.txt
File metadata and controls
1440 lines (1178 loc) · 61.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
掩码数量与[SEG]标记不匹配的文件报告
============================================================
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 0
图像路径: data/SAMRS/image/train_10005_0012.png
[SEG]标记数量: 1
掩码数量: 2
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: An aerial view captures a busy industrial port area featuring water on the left, a sprawling vehicle...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 30
图像路径: data/SAMRS/image/train_10140_0003.png
[SEG]标记数量: 0
掩码数量: 7
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a busy airport tarmac with multiple airplanes parked across the concrete s...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 120
图像路径: data/SAMRS/image/train_10460_0001.png
[SEG]标记数量: 0
掩码数量: 3
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures an airport scene with runways, taxiways, and aircraft positioned across th...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 138
图像路径: data/SAMRS/image/train_10538_0000.png
[SEG]标记数量: 0
掩码数量: 3
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents an airport tarmac area with several aircraft parked, surrounded by infrast...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 182
图像路径: data/SAMRS/image/train_10711_0001.png
[SEG]标记数量: 29
掩码数量: 28
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents a waterway bustling with maritime activity, where multiple dry - cargo shi...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 184
图像路径: data/SAMRS/image/train_10724_0003.png
[SEG]标记数量: 0
掩码数量: 8
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a busy airport tarmac where multiple airplanes are parked near terminal st...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 234
图像路径: data/SAMRS/image/train_10943_0000.png
[SEG]标记数量: 2
掩码数量: 6
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents a mixed - use area featuring sports facilities, buildings, and vehicles, w...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 255
图像路径: data/SAMRS/image/train_11003_0001.png
[SEG]标记数量: 4
掩码数量: 8
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a riverside scene featuring docks, various watercraft, and surrounding nat...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 321
图像路径: data/SAMRS/image/train_1118_0002.png
[SEG]标记数量: 4
掩码数量: 9
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a sprawling industrial complex, where roads intersect amidst numerous indu...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 443
图像路径: data/SAMRS/image/train_11734_0001.png
[SEG]标记数量: 0
掩码数量: 3
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a busy airport scene with runways, taxiways, and aircraft positioned aroun...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 519
图像路径: data/SAMRS/image/train_12025_0003.png
[SEG]标记数量: 2
掩码数量: 7
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: The aerial view showcases a water - centered scene featuring a bridge, multiple motorboats, and deve...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 645
图像路径: data/SAMRS/image/train_12490_0001.png
[SEG]标记数量: 2
掩码数量: 4
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures an urban landscape featuring a network of roads, clustered residential bui...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 652
图像路径: data/SAMRS/image/train_12508_0001.png
[SEG]标记数量: 0
掩码数量: 2
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents a rural area surrounded by dense forests, featuring a mix of developed spa...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 675
图像路径: data/SAMRS/image/train_12587_0001.png
[SEG]标记数量: 2
掩码数量: 6
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents a busy port area adjacent to dark waters, where <p> Dry-Cargo-Ship </p> [S...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 740
图像路径: data/SAMRS/image/train_12897_0004.png
[SEG]标记数量: 0
掩码数量: 3
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents a port area where docks, water, and ships coexist, with industrial structu...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 741
图像路径: data/SAMRS/image/train_12899_0000.png
[SEG]标记数量: 2
掩码数量: 10
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a sports and recreational site featuring multiple tennis courts, a parking...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 788
图像路径: data/SAMRS/image/train_130_0005.png
[SEG]标记数量: 11
掩码数量: 21
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a maritime scene featuring a body of water adjacent to a landmass with win...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 801
图像路径: data/SAMRS/image/train_13163_0002.png
[SEG]标记数量: 0
掩码数量: 9
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view showcases a sprawling outdoor space that combines recreational facilities, resident...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 825
图像路径: data/SAMRS/image/train_13249_0001.png
[SEG]标记数量: 6
掩码数量: 5
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a busy airport tarmac with various aircraft stationed across different sec...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 847
图像路径: data/SAMRS/image/train_13356_0001.png
[SEG]标记数量: 12
掩码数量: 10
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: An aerial view of an airport tarmac presents a busy operational scene with various airplanes positio...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 881
图像路径: data/SAMRS/image/train_1348_0002.png
[SEG]标记数量: 0
掩码数量: 9
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a residential neighborhood interspersed with dense greenery, where houses,...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 894
图像路径: data/SAMRS/image/train_13570_0014.png
[SEG]标记数量: 0
掩码数量: 6
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents a serene scene of a waterway adjacent to residential areas and green field...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1021
图像路径: data/SAMRS/image/train_14038_0001.png
[SEG]标记数量: 3
掩码数量: 5
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents a busy port area with water bodies, industrial buildings, roads, and stora...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1078
图像路径: data/SAMRS/image/train_14248_0000.png
[SEG]标记数量: 0
掩码数量: 7
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents a port scene by the water, where several cargo ships are positioned around...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1098
图像路径: data/SAMRS/image/train_14326_0000.png
[SEG]标记数量: 0
掩码数量: 2
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: The image presents an aerial view of a coastal or port - related area that includes a landmass with ...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1155
图像路径: data/SAMRS/image/train_14548_0000.png
[SEG]标记数量: 0
掩码数量: 3
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures an industrial and urban area featuring buildings, roads, railroad tracks, ...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1232
图像路径: data/SAMRS/image/train_1482_0001.png
[SEG]标记数量: 0
掩码数量: 2
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents an industrial port area by the water, featuring various infrastructure, st...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1240
图像路径: data/SAMRS/image/train_14856_0003.png
[SEG]标记数量: 1
掩码数量: 2
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view depicts a busy port area with a waterway running alongside industrial and cargo - h...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1267
图像路径: data/SAMRS/image/train_14988_0003.png
[SEG]标记数量: 7
掩码数量: 4
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: An aerial perspective reveals a parking lot adjacent to railway tracks, featuring organized parking ...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1322
图像路径: data/SAMRS/image/train_15156_0000.png
[SEG]标记数量: 0
掩码数量: 5
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents an airport scene with a distinctive terminal structure and multiple airpla...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1417
图像路径: data/SAMRS/image/train_15574_0002.png
[SEG]标记数量: 0
掩码数量: 3
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents a well - organized area that combines urban infrastructure, sports facilit...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1422
图像路径: data/SAMRS/image/train_155_0001.png
[SEG]标记数量: 1
掩码数量: 5
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents a serene area surrounded by dense trees, featuring a sports field and a ro...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1466
图像路径: data/SAMRS/image/train_157_0001.png
[SEG]标记数量: 7
掩码数量: 5
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view depicts an airport tarmac where multiple airplanes are positioned around terminal b...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1473
图像路径: data/SAMRS/image/train_15818_0001.png
[SEG]标记数量: 0
掩码数量: 5
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents an outdoor area featuring highways, sports facilities, and vehicles, with ...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1512
图像路径: data/SAMRS/image/train_15949_0002.png
[SEG]标记数量: 5
掩码数量: 17
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This satellite image presents a region where waterways intersect with urban and rural landscapes, fe...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1542
图像路径: data/SAMRS/image/train_16102_0000.png
[SEG]标记数量: 0
掩码数量: 4
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents a sports and urban area with athletic fields, buildings, and vehicles, sho...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1603
图像路径: data/SAMRS/image/train_16351_0000.png
[SEG]标记数量: 2
掩码数量: 6
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a tranquil area blending recreational, residential, and infrastructural sp...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1661
图像路径: data/SAMRS/image/train_1717_0003.png
[SEG]标记数量: 1
掩码数量: 4
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a mixed landscape that combines residential zones, wooded areas, and a spo...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1677
图像路径: data/SAMRS/image/train_1773_0000.png
[SEG]标记数量: 3
掩码数量: 7
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents a sports and residential area with open fields, tennis courts, a baseball ...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1704
图像路径: data/SAMRS/image/train_1875_0003.png
[SEG]标记数量: 5
掩码数量: 4
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents a busy airport tarmac with several airplanes parked near a large terminal ...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1717
图像路径: data/SAMRS/image/train_192_0002.png
[SEG]标记数量: 1
掩码数量: 7
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view showcases a tranquil residential neighborhood with a central road bordered by house...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1778
图像路径: data/SAMRS/image/train_222_0026.png
[SEG]标记数量: 0
掩码数量: 3
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures an airport tarmac area, showcasing parked airplanes and adjacent infrastru...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1791
图像路径: data/SAMRS/image/train_2268_0003.png
[SEG]标记数量: 13
掩码数量: 14
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures an airport scene with numerous airplanes parked near facilities, roads, an...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1797
图像路径: data/SAMRS/image/train_228_0002.png
[SEG]标记数量: 4
掩码数量: 11
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents an urban area integrating industrial zones, roads, and a waterfront, with ...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1823
图像路径: data/SAMRS/image/train_2375_0000.png
[SEG]标记数量: 0
掩码数量: 6
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents an industrial waterfront area featuring buildings, highways, and a body of...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1904
图像路径: data/SAMRS/image/train_2733_0003.png
[SEG]标记数量: 5
掩码数量: 10
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: The image presents an aerial view of a port or dock area where various vessels are moored or navigat...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1918
图像路径: data/SAMRS/image/train_278_0004.png
[SEG]标记数量: 1
掩码数量: 3
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a bustling urban landscape featuring a waterfront, intersecting roads, and...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 1931
图像路径: data/SAMRS/image/train_2838_0062.png
[SEG]标记数量: 7
掩码数量: 6
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents a bustling port area where various ships are positioned near the dock alon...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2072
图像路径: data/SAMRS/image/train_3483_0000.png
[SEG]标记数量: 1
掩码数量: 2
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view showcases a riverside or coastal area where extensive water bodies meet land covere...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2088
图像路径: data/SAMRS/image/train_3573_0002.png
[SEG]标记数量: 0
掩码数量: 4
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a busy airport tarmac with several aircraft positioned around terminal str...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2128
图像路径: data/SAMRS/image/train_373_0001.png
[SEG]标记数量: 1
掩码数量: 5
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view depicts an industrial port area by the water, featuring docks, roads, and various f...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2131
图像路径: data/SAMRS/image/train_3753_0003.png
[SEG]标记数量: 5
掩码数量: 9
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a bustling port environment where various ships are moored alongside indus...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2169
图像路径: data/SAMRS/image/train_3904_0001.png
[SEG]标记数量: 1
掩码数量: 2
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents a port area with adjacent land that includes roads, parking lots, building...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2202
图像路径: data/SAMRS/image/train_4053_0000.png
[SEG]标记数量: 1
掩码数量: 17
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: The image presents an aerial view of a water area with numerous ships scattered across different sec...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2209
图像路径: data/SAMRS/image/train_4076_0003.png
[SEG]标记数量: 0
掩码数量: 4
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents a rural or suburban area featuring expansive grassy fields, a paved road, ...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2304
图像路径: data/SAMRS/image/train_441_0002.png
[SEG]标记数量: 10
掩码数量: 9
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: The aerial view presents a mixed urban layout with residential areas, roads, railroad tracks, and tr...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2387
图像路径: data/SAMRS/image/train_4813_0000.png
[SEG]标记数量: 0
掩码数量: 5
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: Aerial view of an airport tarmac reveals multiple airplanes parked near industrial structures, with ...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2417
图像路径: data/SAMRS/image/train_4927_0001.png
[SEG]标记数量: 0
掩码数量: 7
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: The image depicts an aerial view of a bustling port area with industrial facilities and several carg...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2459
图像路径: data/SAMRS/image/train_5060_0000.png
[SEG]标记数量: 1
掩码数量: 9
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents a busy airport scene with runways, taxiways, and several airplanes parked ...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2481
图像路径: data/SAMRS/image/train_5193_0003.png
[SEG]标记数量: 2
掩码数量: 5
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents an airport complex with expansive tarmacs, buildings, and surrounding road...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2482
图像路径: data/SAMRS/image/train_5198_0000.png
[SEG]标记数量: 2
掩码数量: 4
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view depicts a bustling industrial port area featuring various facilities, storage zones...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2515
图像路径: data/SAMRS/image/train_5318_0002.png
[SEG]标记数量: 0
掩码数量: 4
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures an airport scene with runways, taxiways, and multiple airplanes situated a...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2567
图像路径: data/SAMRS/image/train_5507_0001.png
[SEG]标记数量: 0
掩码数量: 5
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: An aerial view captures a landscape featuring roads, lush green fields, and dense clusters of trees,...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2609
图像路径: data/SAMRS/image/train_5656_0001.png
[SEG]标记数量: 0
掩码数量: 4
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: The image depicts a port area with calm waters where several warships are docked near piers. <p> War...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2626
图像路径: data/SAMRS/image/train_5743_0000.png
[SEG]标记数量: 1
掩码数量: 8
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures an outdoor area that combines recreational and transportation spaces, feat...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2637
图像路径: data/SAMRS/image/train_5790_0050.png
[SEG]标记数量: 0
掩码数量: 7
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a busy airport tarmac with multiple airplanes parked near runways and taxi...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2638
图像路径: data/SAMRS/image/train_5794_0004.png
[SEG]标记数量: 1
掩码数量: 2
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a bustling port area featuring a waterfront, industrial infrastructure, an...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2645
图像路径: data/SAMRS/image/train_5820_0000.png
[SEG]标记数量: 0
掩码数量: 5
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a busy airport scene with multiple aircraft parked on the tarmac, adjacent...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2821
图像路径: data/SAMRS/image/train_643_0000.png
[SEG]标记数量: 0
掩码数量: 4
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: The image presents an aerial view of a calm sea with several fishing boats scattered across the wate...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2877
图像路径: data/SAMRS/image/train_6710_0000.png
[SEG]标记数量: 3
掩码数量: 8
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a mixed urban - suburban area featuring residential neighborhoods, a multi...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2889
图像路径: data/SAMRS/image/train_673_0006.png
[SEG]标记数量: 3
掩码数量: 5
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents an area with a port, parking lots, buildings, and intersecting roads, show...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2893
图像路径: data/SAMRS/image/train_675_0001.png
[SEG]标记数量: 2
掩码数量: 9
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures an industrial waterfront scene with large storage tanks, docks, and variou...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2917
图像路径: data/SAMRS/image/train_6816_0002.png
[SEG]标记数量: 0
掩码数量: 3
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view showcases a waterfront area featuring water bodies, urban infrastructure, and marit...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2918
图像路径: data/SAMRS/image/train_6816_0003.png
[SEG]标记数量: 0
掩码数量: 11
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a harbor area where fishing boats are moored near docks, with surrounding ...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2972
图像路径: data/SAMRS/image/train_7077_0000.png
[SEG]标记数量: 6
掩码数量: 9
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view showcases a suburban landscape that combines recreational spaces, residential areas...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 2997
图像路径: data/SAMRS/image/train_7182_0003.png
[SEG]标记数量: 0
掩码数量: 2
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view showcases an airport scene with winding runways, taxiways, and patches of greenery,...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 3026
图像路径: data/SAMRS/image/train_7340_0000.png
[SEG]标记数量: 10
掩码数量: 9
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a busy airport tarmac where multiple aircraft are parked at gates, surroun...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 3029
图像路径: data/SAMRS/image/train_7348_0003.png
[SEG]标记数量: 1
掩码数量: 3
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: An aerial view of a park presents a well - arranged space featuring winding paths, abundant greenery...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 3135
图像路径: data/SAMRS/image/train_7754_0001.png
[SEG]标记数量: 2
掩码数量: 6
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents a landscape featuring a body of water, a bridge, and several motorboats ne...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 3142
图像路径: data/SAMRS/image/train_7759_0002.png
[SEG]标记数量: 5
掩码数量: 10
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a coastal or port water area, showcasing a layout with vessels distributed...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 3157
图像路径: data/SAMRS/image/train_7849_0000.png
[SEG]标记数量: 0
掩码数量: 8
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: Aerial view of an airport tarmac with multiple airplanes parked near runways, showcasing an orderly ...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 3165
图像路径: data/SAMRS/image/train_7888_0000.png
[SEG]标记数量: 2
掩码数量: 4
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents a port area with industrial constructions, docks, and a vast water body, r...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 3167
图像路径: data/SAMRS/image/train_7895_0001.png
[SEG]标记数量: 3
掩码数量: 8
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a mixed-use area with parking lots, roads, lush greenery, and infrastructu...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 3184
图像路径: data/SAMRS/image/train_7958_0003.png
[SEG]标记数量: 0
掩码数量: 3
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents an airport tarmac where multiple aircraft are positioned on the marked con...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 3217
图像路径: data/SAMRS/image/train_8078_0001.png
[SEG]标记数量: 2
掩码数量: 3
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view depicts a section of a water body adjacent to industrial port facilities, with seve...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 3294
图像路径: data/SAMRS/image/train_8403_0003.png
[SEG]标记数量: 4
掩码数量: 6
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a busy airport tarmac with multiple aircraft parked near terminal building...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 3331
图像路径: data/SAMRS/image/train_8563_0000.png
[SEG]标记数量: 0
掩码数量: 3
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a bustling port environment where a wide expanse of dark water meets a bus...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 3438
图像路径: data/SAMRS/image/train_8936_0000.png
[SEG]标记数量: 2
掩码数量: 6
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view presents a calm water area featuring a dock and a bridge, showcasing a blend of mar...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 3448
图像路径: data/SAMRS/image/train_8988_0003.png
[SEG]标记数量: 0
掩码数量: 5
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures a busy airport tarmac and surrounding taxiways, where multiple aircraft ar...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 3475
图像路径: data/SAMRS/image/train_9095_0002.png
[SEG]标记数量: 2
掩码数量: 4
对话文本片段:
[human]: Could you perform an in-depth analysis of this photo, including interleaved segmentation masks to ma...
[gpt]: This aerial view captures an airport tarmac with several aircraft parked and taxiing, surrounded by ...
============================================================
[MISMATCH] 发现不匹配: 文件 data/SAMRSDatas_filtered.json
样本索引: 3476
图像路径: data/SAMRS/image/train_9096_0000.png
[SEG]标记数量: 10
掩码数量: 9