-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest_mini.jsonl
More file actions
1050 lines (1050 loc) · 375 KB
/
test_mini.jsonl
File metadata and controls
1050 lines (1050 loc) · 375 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
{"id": 0, "image": "./data/test/area/area/chart_0/image.png", "type": {"chart": "area", "image": "area", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a area chart, instead of combination chart."}, {"label": "No", "query": "This graph is a combination chart, instead of area chart."}]}
{"id": 1, "image": "./data/test/area/area/chart_0/image.png", "type": {"chart": "area", "image": "area", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Revenue of Retailer E at Month 6 is 70.00."}, {"label": "No", "query": "According to this chart, the Revenue of Retailer E at Month 6 is 62.00."}]}
{"id": 2, "image": "./data/test/area/area/chart_0/image.png", "type": {"chart": "area", "image": "area", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Month 3, the Revenue of Retailer B is higher than Retailer D."}, {"label": "No", "query": "According to this chart, at Month 3, the Revenue of Retailer D is higher than Retailer B."}]}
{"id": 3, "image": "./data/test/area/area/chart_0/image.png", "type": {"chart": "area", "image": "area", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Retailer A at Month 12 has the highest Revenue 110.00."}, {"label": "No", "query": "According to this chart, the Retailer A at Month 5 has the highest Revenue 110.00."}]}
{"id": 4, "image": "./data/test/area/area/chart_0/image.png", "type": {"chart": "area", "image": "area", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "78.0", "query": "According to this chart, what is the Revenue of Retailer D at Month 6?"}]}
{"id": 5, "image": "./data/test/area/area/chart_1/image.png", "type": {"chart": "area", "image": "area", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a area chart, instead of node_link chart."}, {"label": "No", "query": "This graph is a node_link chart, instead of area chart."}]}
{"id": 6, "image": "./data/test/area/area/chart_1/image.png", "type": {"chart": "area", "image": "area", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Sales of Product B at Quarter Q3 is 310.00."}, {"label": "No", "query": "According to this chart, the Sales of Product B at Quarter Q3 is 280.00."}]}
{"id": 7, "image": "./data/test/area/area/chart_1/image.png", "type": {"chart": "area", "image": "area", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Quarter Q2, the Sales of Product A is higher than Product C."}, {"label": "No", "query": "According to this chart, at Quarter Q2, the Sales of Product C is higher than Product A."}]}
{"id": 8, "image": "./data/test/area/area/chart_1/image.png", "type": {"chart": "area", "image": "area", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Product A at Quarter Q4 has the highest Sales 400.00."}, {"label": "No", "query": "According to this chart, the Product A at Quarter Q1 has the highest Sales 400.00."}]}
{"id": 9, "image": "./data/test/area/area/chart_1/image.png", "type": {"chart": "area", "image": "area", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "200.0", "query": "According to this chart, what is the Sales of Product C at Quarter Q1?"}]}
{"id": 10, "image": "./data/test/area/area/chart_10/image.png", "type": {"chart": "area", "image": "area", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a area chart, instead of box chart."}, {"label": "No", "query": "This graph is a box chart, instead of area chart."}]}
{"id": 11, "image": "./data/test/area/area/chart_10/image.png", "type": {"chart": "area", "image": "area", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Engagement Score of Website Y at Month 8 is 84.00."}, {"label": "No", "query": "According to this chart, the Engagement Score of Website Y at Month 8 is 82.00."}]}
{"id": 12, "image": "./data/test/area/area/chart_10/image.png", "type": {"chart": "area", "image": "area", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Month 11, the Engagement Score of Website Z is higher than Website X."}, {"label": "No", "query": "According to this chart, at Month 11, the Engagement Score of Website X is higher than Website Z."}]}
{"id": 13, "image": "./data/test/area/area/chart_10/image.png", "type": {"chart": "area", "image": "area", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Website Z at Month 12 has the highest Engagement Score 108.00."}, {"label": "No", "query": "According to this chart, the Website Z at Month 3 has the highest Engagement Score 108.00."}]}
{"id": 14, "image": "./data/test/area/area/chart_10/image.png", "type": {"chart": "area", "image": "area", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "100.0", "query": "According to this chart, what is the Engagement Score of Website X at Month 11?"}]}
{"id": 15, "image": "./data/test/area/area/chart_11/image.png", "type": {"chart": "area", "image": "area", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a area chart, instead of line chart."}, {"label": "No", "query": "This graph is a line chart, instead of area chart."}]}
{"id": 16, "image": "./data/test/area/area/chart_11/image.png", "type": {"chart": "area", "image": "area", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Satisfaction Rating of Department A at Quarter Q4 is 4.50."}, {"label": "No", "query": "According to this chart, the Satisfaction Rating of Department A at Quarter Q4 is 4.30."}]}
{"id": 17, "image": "./data/test/area/area/chart_11/image.png", "type": {"chart": "area", "image": "area", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Quarter Q3, the Satisfaction Rating of Department B is higher than Department C."}, {"label": "No", "query": "According to this chart, at Quarter Q3, the Satisfaction Rating of Department C is higher than Department B."}]}
{"id": 18, "image": "./data/test/area/area/chart_11/image.png", "type": {"chart": "area", "image": "area", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Department B at Quarter Q4 has the highest Satisfaction Rating 4.80."}, {"label": "No", "query": "According to this chart, the Department B at Quarter Q1 has the highest Satisfaction Rating 4.80."}]}
{"id": 19, "image": "./data/test/area/area/chart_11/image.png", "type": {"chart": "area", "image": "area", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "4.6", "query": "According to this chart, what is the Satisfaction Rating of Department B at Quarter Q2?"}]}
{"id": 20, "image": "./data/test/area/area/chart_12/image.png", "type": {"chart": "area", "image": "area", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a area chart, instead of bar chart."}, {"label": "No", "query": "This graph is a bar chart, instead of area chart."}]}
{"id": 21, "image": "./data/test/area/area/chart_12/image.png", "type": {"chart": "area", "image": "area", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Activity of Platform X at Month 1 is 180.00."}, {"label": "No", "query": "According to this chart, the Activity of Platform X at Month 1 is 250.00."}]}
{"id": 22, "image": "./data/test/area/area/chart_12/image.png", "type": {"chart": "area", "image": "area", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Month 12, the Activity of Platform Z is higher than Platform X."}, {"label": "No", "query": "According to this chart, at Month 12, the Activity of Platform X is higher than Platform Z."}]}
{"id": 23, "image": "./data/test/area/area/chart_12/image.png", "type": {"chart": "area", "image": "area", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Platform Z at Month 12 has the highest Activity 330.00."}, {"label": "No", "query": "According to this chart, the Platform Z at Month 6 has the highest Activity 330.00."}]}
{"id": 24, "image": "./data/test/area/area/chart_12/image.png", "type": {"chart": "area", "image": "area", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "260.0", "query": "According to this chart, what is the Activity of Platform X at Month 9?"}]}
{"id": 250, "image": "./data/test/area/area_percent/chart_0/image.png", "type": {"chart": "area", "image": "area_percent", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a area chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of area chart."}]}
{"id": 251, "image": "./data/test/area/area_percent/chart_0/image.png", "type": {"chart": "area", "image": "area_percent", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Retailer D at Month 1 is 6.86."}, {"label": "No", "query": "According to this chart, the percentage of Retailer D at Month 1 is 9.49."}]}
{"id": 252, "image": "./data/test/area/area_percent/chart_0/image.png", "type": {"chart": "area", "image": "area_percent", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Month 2, the percentage of Retailer E is higher than Retailer D."}, {"label": "No", "query": "According to this chart, at Month 2, the percentage of Retailer D is higher than Retailer E."}]}
{"id": 253, "image": "./data/test/area/area_percent/chart_0/image.png", "type": {"chart": "area", "image": "area_percent", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Retailer E at Month 12 has the highest percentage 9.73."}, {"label": "No", "query": "According to this chart, the Retailer E at Month 8 has the highest percentage 9.73."}]}
{"id": 254, "image": "./data/test/area/area_percent/chart_0/image.png", "type": {"chart": "area", "image": "area_percent", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "8.2%", "query": "According to this chart, what is the percentage of Retailer A at Month 6?"}]}
{"id": 255, "image": "./data/test/area/area_percent/chart_1/image.png", "type": {"chart": "area", "image": "area_percent", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a area chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of area chart."}]}
{"id": 256, "image": "./data/test/area/area_percent/chart_1/image.png", "type": {"chart": "area", "image": "area_percent", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Product B at Quarter Q4 is 28.21."}, {"label": "No", "query": "According to this chart, the percentage of Product B at Quarter Q4 is 26.50."}]}
{"id": 257, "image": "./data/test/area/area_percent/chart_1/image.png", "type": {"chart": "area", "image": "area_percent", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Quarter Q2, the percentage of Product A is higher than Product B."}, {"label": "No", "query": "According to this chart, at Quarter Q2, the percentage of Product B is higher than Product A."}]}
{"id": 258, "image": "./data/test/area/area_percent/chart_1/image.png", "type": {"chart": "area", "image": "area_percent", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Product D at Quarter Q4 has the highest percentage 28.57."}, {"label": "No", "query": "According to this chart, the Product D at Quarter Q3 has the highest percentage 28.57."}]}
{"id": 259, "image": "./data/test/area/area_percent/chart_1/image.png", "type": {"chart": "area", "image": "area_percent", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "21.7%", "query": "According to this chart, what is the percentage of Product C at Quarter Q1?"}]}
{"id": 260, "image": "./data/test/area/area_percent/chart_10/image.png", "type": {"chart": "area", "image": "area_percent", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a area chart, instead of bar chart."}, {"label": "No", "query": "This graph is a bar chart, instead of area chart."}]}
{"id": 261, "image": "./data/test/area/area_percent/chart_10/image.png", "type": {"chart": "area", "image": "area_percent", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Website Y at Month 12 is 9.47."}, {"label": "No", "query": "According to this chart, the percentage of Website Y at Month 12 is 7.82."}]}
{"id": 262, "image": "./data/test/area/area_percent/chart_10/image.png", "type": {"chart": "area", "image": "area_percent", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Month 10, the percentage of Website X is higher than Website Z."}, {"label": "No", "query": "According to this chart, at Month 10, the percentage of Website Z is higher than Website X."}]}
{"id": 263, "image": "./data/test/area/area_percent/chart_10/image.png", "type": {"chart": "area", "image": "area_percent", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Website Z at Month 12 has the highest percentage 9.61."}, {"label": "No", "query": "According to this chart, the Website Z at Month 5 has the highest percentage 9.61."}]}
{"id": 264, "image": "./data/test/area/area_percent/chart_10/image.png", "type": {"chart": "area", "image": "area_percent", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "8.3%", "query": "According to this chart, what is the percentage of Website X at Month 6?"}]}
{"id": 265, "image": "./data/test/area/area_percent/chart_11/image.png", "type": {"chart": "area", "image": "area_percent", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a area chart, instead of combination chart."}, {"label": "No", "query": "This graph is a combination chart, instead of area chart."}]}
{"id": 266, "image": "./data/test/area/area_percent/chart_11/image.png", "type": {"chart": "area", "image": "area_percent", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Department B at Quarter Q2 is 24.73."}, {"label": "No", "query": "According to this chart, the percentage of Department B at Quarter Q2 is 25.81."}]}
{"id": 267, "image": "./data/test/area/area_percent/chart_11/image.png", "type": {"chart": "area", "image": "area_percent", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Quarter Q3, the percentage of Department C is higher than Department A."}, {"label": "No", "query": "According to this chart, at Quarter Q3, the percentage of Department A is higher than Department C."}]}
{"id": 268, "image": "./data/test/area/area_percent/chart_11/image.png", "type": {"chart": "area", "image": "area_percent", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Department C at Quarter Q4 has the highest percentage 25.90."}, {"label": "No", "query": "According to this chart, the Department C at Quarter Q2 has the highest percentage 25.90."}]}
{"id": 269, "image": "./data/test/area/area_percent/chart_11/image.png", "type": {"chart": "area", "image": "area_percent", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "24.7%", "query": "According to this chart, what is the percentage of Department A at Quarter Q2?"}]}
{"id": 270, "image": "./data/test/area/area_percent/chart_12/image.png", "type": {"chart": "area", "image": "area_percent", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a area chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of area chart."}]}
{"id": 271, "image": "./data/test/area/area_percent/chart_12/image.png", "type": {"chart": "area", "image": "area_percent", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Platform X at Month 6 is 8.16."}, {"label": "No", "query": "According to this chart, the percentage of Platform X at Month 6 is 6.74."}]}
{"id": 272, "image": "./data/test/area/area_percent/chart_12/image.png", "type": {"chart": "area", "image": "area_percent", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Month 12, the percentage of Platform Y is higher than Platform X."}, {"label": "No", "query": "According to this chart, at Month 12, the percentage of Platform X is higher than Platform Y."}]}
{"id": 273, "image": "./data/test/area/area_percent/chart_12/image.png", "type": {"chart": "area", "image": "area_percent", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Platform Y at Month 12 has the highest percentage 10.57."}, {"label": "No", "query": "According to this chart, the Platform Y at Month 2 has the highest percentage 10.57."}]}
{"id": 274, "image": "./data/test/area/area_percent/chart_12/image.png", "type": {"chart": "area", "image": "area_percent", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "10.6%", "query": "According to this chart, what is the percentage of Platform Y at Month 12?"}]}
{"id": 500, "image": "./data/test/area/area_stack/chart_0/image.png", "type": {"chart": "area", "image": "area_stack", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a area chart, instead of box chart."}, {"label": "No", "query": "This graph is a box chart, instead of area chart."}]}
{"id": 501, "image": "./data/test/area/area_stack/chart_0/image.png", "type": {"chart": "area", "image": "area_stack", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Revenue of Retailer E at Month 3 is 66.00."}, {"label": "No", "query": "According to this chart, the Revenue of Retailer E at Month 3 is 68.00."}]}
{"id": 502, "image": "./data/test/area/area_stack/chart_0/image.png", "type": {"chart": "area", "image": "area_stack", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Month 11, the Revenue of Retailer B is higher than Retailer D."}, {"label": "No", "query": "According to this chart, at Month 11, the Revenue of Retailer D is higher than Retailer B."}]}
{"id": 503, "image": "./data/test/area/area_stack/chart_0/image.png", "type": {"chart": "area", "image": "area_stack", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Retailer A at Month 12 has the highest Revenue 110.00."}, {"label": "No", "query": "According to this chart, the Retailer A at Month 2 has the highest Revenue 110.00."}]}
{"id": 504, "image": "./data/test/area/area_stack/chart_0/image.png", "type": {"chart": "area", "image": "area_stack", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "94.0", "query": "According to this chart, what is the Revenue of Retailer C at Month 11?"}]}
{"id": 505, "image": "./data/test/area/area_stack/chart_1/image.png", "type": {"chart": "area", "image": "area_stack", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a area chart, instead of bar chart."}, {"label": "No", "query": "This graph is a bar chart, instead of area chart."}]}
{"id": 506, "image": "./data/test/area/area_stack/chart_1/image.png", "type": {"chart": "area", "image": "area_stack", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Sales of Product D at Quarter Q4 is 240.00."}, {"label": "No", "query": "According to this chart, the Sales of Product D at Quarter Q4 is 200.00."}]}
{"id": 507, "image": "./data/test/area/area_stack/chart_1/image.png", "type": {"chart": "area", "image": "area_stack", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Quarter Q4, the Sales of Product B is higher than Product D."}, {"label": "No", "query": "According to this chart, at Quarter Q4, the Sales of Product D is higher than Product B."}]}
{"id": 508, "image": "./data/test/area/area_stack/chart_1/image.png", "type": {"chart": "area", "image": "area_stack", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Product A at Quarter Q4 has the highest Sales 400.00."}, {"label": "No", "query": "According to this chart, the Product A at Quarter Q1 has the highest Sales 400.00."}]}
{"id": 509, "image": "./data/test/area/area_stack/chart_1/image.png", "type": {"chart": "area", "image": "area_stack", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "240.0", "query": "According to this chart, what is the Sales of Product D at Quarter Q4?"}]}
{"id": 510, "image": "./data/test/area/area_stack/chart_10/image.png", "type": {"chart": "area", "image": "area_stack", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a area chart, instead of scatter chart."}, {"label": "No", "query": "This graph is a scatter chart, instead of area chart."}]}
{"id": 511, "image": "./data/test/area/area_stack/chart_10/image.png", "type": {"chart": "area", "image": "area_stack", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Engagement Score of Website X at Month 10 is 97.00."}, {"label": "No", "query": "According to this chart, the Engagement Score of Website X at Month 10 is 82.00."}]}
{"id": 512, "image": "./data/test/area/area_stack/chart_10/image.png", "type": {"chart": "area", "image": "area_stack", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Month 8, the Engagement Score of Website Z is higher than Website Y."}, {"label": "No", "query": "According to this chart, at Month 8, the Engagement Score of Website Y is higher than Website Z."}]}
{"id": 513, "image": "./data/test/area/area_stack/chart_10/image.png", "type": {"chart": "area", "image": "area_stack", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Website Z at Month 12 has the highest Engagement Score 108.00."}, {"label": "No", "query": "According to this chart, the Website Z at Month 10 has the highest Engagement Score 108.00."}]}
{"id": 514, "image": "./data/test/area/area_stack/chart_10/image.png", "type": {"chart": "area", "image": "area_stack", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "86.0", "query": "According to this chart, what is the Engagement Score of Website Y at Month 9?"}]}
{"id": 515, "image": "./data/test/area/area_stack/chart_11/image.png", "type": {"chart": "area", "image": "area_stack", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a area chart, instead of combination chart."}, {"label": "No", "query": "This graph is a combination chart, instead of area chart."}]}
{"id": 516, "image": "./data/test/area/area_stack/chart_11/image.png", "type": {"chart": "area", "image": "area_stack", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Satisfaction Rating of Department A at Quarter Q3 is 4.40."}, {"label": "No", "query": "According to this chart, the Satisfaction Rating of Department A at Quarter Q3 is 4.50."}]}
{"id": 517, "image": "./data/test/area/area_stack/chart_11/image.png", "type": {"chart": "area", "image": "area_stack", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Quarter Q2, the Satisfaction Rating of Department B is higher than Department C."}, {"label": "No", "query": "According to this chart, at Quarter Q2, the Satisfaction Rating of Department C is higher than Department B."}]}
{"id": 518, "image": "./data/test/area/area_stack/chart_11/image.png", "type": {"chart": "area", "image": "area_stack", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Department B at Quarter Q4 has the highest Satisfaction Rating 4.80."}, {"label": "No", "query": "According to this chart, the Department B at Quarter Q3 has the highest Satisfaction Rating 4.80."}]}
{"id": 519, "image": "./data/test/area/area_stack/chart_11/image.png", "type": {"chart": "area", "image": "area_stack", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "4.2", "query": "According to this chart, what is the Satisfaction Rating of Department A at Quarter Q1?"}]}
{"id": 520, "image": "./data/test/area/area_stack/chart_12/image.png", "type": {"chart": "area", "image": "area_stack", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a area chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of area chart."}]}
{"id": 521, "image": "./data/test/area/area_stack/chart_12/image.png", "type": {"chart": "area", "image": "area_stack", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Activity of Platform Y at Month 7 is 210.00."}, {"label": "No", "query": "According to this chart, the Activity of Platform Y at Month 7 is 190.00."}]}
{"id": 522, "image": "./data/test/area/area_stack/chart_12/image.png", "type": {"chart": "area", "image": "area_stack", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Month 12, the Activity of Platform Z is higher than Platform Y."}, {"label": "No", "query": "According to this chart, at Month 12, the Activity of Platform Y is higher than Platform Z."}]}
{"id": 523, "image": "./data/test/area/area_stack/chart_12/image.png", "type": {"chart": "area", "image": "area_stack", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Platform Z at Month 12 has the highest Activity 330.00."}, {"label": "No", "query": "According to this chart, the Platform Z at Month 5 has the highest Activity 330.00."}]}
{"id": 524, "image": "./data/test/area/area_stack/chart_12/image.png", "type": {"chart": "area", "image": "area_stack", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "250.0", "query": "According to this chart, what is the Activity of Platform X at Month 8?"}]}
{"id": 750, "image": "./data/test/bar/horizontal_multi/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of radar chart."}, {"label": "No", "query": "This graph is a radar chart, instead of bar chart."}]}
{"id": 751, "image": "./data/test/bar/horizontal_multi/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Growth Rate of Indonesia at Year 2020 is 2.70."}, {"label": "No", "query": "According to this chart, the Growth Rate of Indonesia at Year 2020 is 3.40."}]}
{"id": 752, "image": "./data/test/bar/horizontal_multi/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2021, the Growth Rate of Vietnam is higher than Thailand."}, {"label": "No", "query": "According to this chart, at Year 2021, the Growth Rate of Thailand is higher than Vietnam."}]}
{"id": 753, "image": "./data/test/bar/horizontal_multi/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Vietnam at Year 2016 has the highest Growth Rate 6.80."}, {"label": "No", "query": "According to this chart, the Vietnam at Year 2021 has the highest Growth Rate 6.80."}]}
{"id": 754, "image": "./data/test/bar/horizontal_multi/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "1.9", "query": "According to this chart, what is the Growth Rate of Singapore at Year 2021?"}]}
{"id": 755, "image": "./data/test/bar/horizontal_multi/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of bar chart."}]}
{"id": 756, "image": "./data/test/bar/horizontal_multi/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Energy Consumption of Renewable at Year 2021 is 120.00."}, {"label": "No", "query": "According to this chart, the Energy Consumption of Renewable at Year 2021 is 95.00."}]}
{"id": 757, "image": "./data/test/bar/horizontal_multi/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2017, the Energy Consumption of Natural Gas is higher than Renewable."}, {"label": "No", "query": "According to this chart, at Year 2017, the Energy Consumption of Renewable is higher than Natural Gas."}]}
{"id": 758, "image": "./data/test/bar/horizontal_multi/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Oil at Year 2022 has the highest Energy Consumption 188.00."}, {"label": "No", "query": "According to this chart, the Oil at Year 2018 has the highest Energy Consumption 188.00."}]}
{"id": 759, "image": "./data/test/bar/horizontal_multi/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "182.0", "query": "According to this chart, what is the Energy Consumption of Oil at Year 2019?"}]}
{"id": 760, "image": "./data/test/bar/horizontal_multi/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of radar chart."}, {"label": "No", "query": "This graph is a radar chart, instead of bar chart."}]}
{"id": 761, "image": "./data/test/bar/horizontal_multi/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Population of Country A at Year 2021 is 125.00."}, {"label": "No", "query": "According to this chart, the Population of Country A at Year 2021 is 130.00."}]}
{"id": 762, "image": "./data/test/bar/horizontal_multi/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2022, the Population of Country C is higher than Country A."}, {"label": "No", "query": "According to this chart, at Year 2022, the Population of Country A is higher than Country C."}]}
{"id": 763, "image": "./data/test/bar/horizontal_multi/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Country E at Year 2022 has the highest Population 330.00."}, {"label": "No", "query": "According to this chart, the Country E at Year 2020 has the highest Population 330.00."}]}
{"id": 764, "image": "./data/test/bar/horizontal_multi/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "170.0", "query": "According to this chart, what is the Population of Country B at Year 2020?"}]}
{"id": 765, "image": "./data/test/bar/horizontal_multi/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of box chart."}, {"label": "No", "query": "This graph is a box chart, instead of bar chart."}]}
{"id": 766, "image": "./data/test/bar/horizontal_multi/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Average Temperature of City C at Month May is 26.70."}, {"label": "No", "query": "According to this chart, the Average Temperature of City C at Month May is 15.20."}]}
{"id": 767, "image": "./data/test/bar/horizontal_multi/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Month Apr, the Average Temperature of City C is higher than City B."}, {"label": "No", "query": "According to this chart, at Month Apr, the Average Temperature of City B is higher than City C."}]}
{"id": 768, "image": "./data/test/bar/horizontal_multi/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the City C at Month Jul has the highest Average Temperature 32.40."}, {"label": "No", "query": "According to this chart, the City C at Month Apr has the highest Average Temperature 32.40."}]}
{"id": 769, "image": "./data/test/bar/horizontal_multi/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "30.1", "query": "According to this chart, what is the Average Temperature of City C at Month Jun?"}]}
{"id": 770, "image": "./data/test/bar/horizontal_multi/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of combination chart."}, {"label": "No", "query": "This graph is a combination chart, instead of bar chart."}]}
{"id": 771, "image": "./data/test/bar/horizontal_multi/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Price of Company C at Date 2022-01-05 is 78.50."}, {"label": "No", "query": "According to this chart, the Price of Company C at Date 2022-01-05 is 77.20."}]}
{"id": 772, "image": "./data/test/bar/horizontal_multi/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Date 2022-01-01, the Price of Company C is higher than Company B."}, {"label": "No", "query": "According to this chart, at Date 2022-01-01, the Price of Company B is higher than Company C."}]}
{"id": 773, "image": "./data/test/bar/horizontal_multi/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Company A at Date 2022-01-06 has the highest Price 105.70."}, {"label": "No", "query": "According to this chart, the Company A at Date 2022-01-05 has the highest Price 105.70."}]}
{"id": 774, "image": "./data/test/bar/horizontal_multi/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "77.2", "query": "According to this chart, what is the Price of Company C at Date 2022-01-04?"}]}
{"id": 1000, "image": "./data/test/bar/horizontal_percent_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of bar chart."}]}
{"id": 1001, "image": "./data/test/bar/horizontal_percent_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Malaysia at Year 2022 is 5.78."}, {"label": "No", "query": "According to this chart, the percentage of Malaysia at Year 2022 is 14.80."}]}
{"id": 1002, "image": "./data/test/bar/horizontal_percent_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2016, the percentage of Philippines is higher than Vietnam."}, {"label": "No", "query": "According to this chart, at Year 2016, the percentage of Vietnam is higher than Philippines."}]}
{"id": 1003, "image": "./data/test/bar/horizontal_percent_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Singapore at Year 2016 has the highest percentage 23.46."}, {"label": "No", "query": "According to this chart, the Singapore at Year 2022 has the highest percentage 23.46."}]}
{"id": 1004, "image": "./data/test/bar/horizontal_percent_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "19.6%", "query": "According to this chart, what is the Growth Rate percentage of Vietnam at Year 2017?"}]}
{"id": 1005, "image": "./data/test/bar/horizontal_percent_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of combination chart."}, {"label": "No", "query": "This graph is a combination chart, instead of bar chart."}]}
{"id": 1006, "image": "./data/test/bar/horizontal_percent_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Renewable at Year 2016 is 12.34."}, {"label": "No", "query": "According to this chart, the percentage of Renewable at Year 2016 is 14.29."}]}
{"id": 1007, "image": "./data/test/bar/horizontal_percent_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2019, the percentage of Oil is higher than Renewable."}, {"label": "No", "query": "According to this chart, at Year 2019, the percentage of Renewable is higher than Oil."}]}
{"id": 1008, "image": "./data/test/bar/horizontal_percent_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Renewable at Year 2022 has the highest percentage 16.23."}, {"label": "No", "query": "According to this chart, the Renewable at Year 2020 has the highest percentage 16.23."}]}
{"id": 1009, "image": "./data/test/bar/horizontal_percent_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "13.6%", "query": "According to this chart, what is the Energy Consumption percentage of Renewable at Year 2018?"}]}
{"id": 1010, "image": "./data/test/bar/horizontal_percent_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of bar chart."}]}
{"id": 1011, "image": "./data/test/bar/horizontal_percent_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Country A at Year 2018 is 13.66."}, {"label": "No", "query": "According to this chart, the percentage of Country A at Year 2018 is 13.04."}]}
{"id": 1012, "image": "./data/test/bar/horizontal_percent_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2017, the percentage of Country E is higher than Country B."}, {"label": "No", "query": "According to this chart, at Year 2017, the percentage of Country B is higher than Country E."}]}
{"id": 1013, "image": "./data/test/bar/horizontal_percent_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Country A at Year 2022 has the highest percentage 16.15."}, {"label": "No", "query": "According to this chart, the Country A at Year 2021 has the highest percentage 16.15."}]}
{"id": 1014, "image": "./data/test/bar/horizontal_percent_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "14.0%", "query": "According to this chart, what is the Population percentage of Country C at Year 2018?"}]}
{"id": 1015, "image": "./data/test/bar/horizontal_percent_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of area chart."}, {"label": "No", "query": "This graph is a area chart, instead of bar chart."}]}
{"id": 1016, "image": "./data/test/bar/horizontal_percent_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of City A at Month Jul is 12.04."}, {"label": "No", "query": "According to this chart, the percentage of City A at Month Jul is 6.88."}]}
{"id": 1017, "image": "./data/test/bar/horizontal_percent_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Month Sep, the percentage of City D is higher than City C."}, {"label": "No", "query": "According to this chart, at Month Sep, the percentage of City C is higher than City D."}]}
{"id": 1018, "image": "./data/test/bar/horizontal_percent_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the City B at Month Jul has the highest percentage 14.23."}, {"label": "No", "query": "According to this chart, the City B at Month Oct has the highest percentage 14.23."}]}
{"id": 1019, "image": "./data/test/bar/horizontal_percent_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "11.1%", "query": "According to this chart, what is the Average Temperature percentage of City D at Month Sep?"}]}
{"id": 1020, "image": "./data/test/bar/horizontal_percent_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of bar chart."}]}
{"id": 1021, "image": "./data/test/bar/horizontal_percent_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Company A at Date 2022-01-02 is 16.33."}, {"label": "No", "query": "According to this chart, the percentage of Company A at Date 2022-01-02 is 16.59."}]}
{"id": 1022, "image": "./data/test/bar/horizontal_percent_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Date 2022-01-02, the percentage of Company A is higher than Company C."}, {"label": "No", "query": "According to this chart, at Date 2022-01-02, the percentage of Company C is higher than Company A."}]}
{"id": 1023, "image": "./data/test/bar/horizontal_percent_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Company B at Date 2022-01-06 has the highest percentage 17.29."}, {"label": "No", "query": "According to this chart, the Company B at Date 2022-01-02 has the highest percentage 17.29."}]}
{"id": 1024, "image": "./data/test/bar/horizontal_percent_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_percent_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "16.3%", "query": "According to this chart, what is the Price percentage of Company A at Date 2022-01-02?"}]}
{"id": 1250, "image": "./data/test/bar/horizontal_single/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of radar chart."}, {"label": "No", "query": "This graph is a radar chart, instead of bar chart."}]}
{"id": 1251, "image": "./data/test/bar/horizontal_single/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Revenue of Year 2019 is 14.80."}, {"label": "No", "query": "According to this chart, the Revenue of Year 2019 is 12.50."}]}
{"id": 1252, "image": "./data/test/bar/horizontal_single/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Revenue of Year 2018 is higher than Year 2017."}, {"label": "No", "query": "According to this chart, the Revenue of Year 2017 is higher than Year 2018."}]}
{"id": 1253, "image": "./data/test/bar/horizontal_single/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Year 2020 has the highest Revenue 20.10."}, {"label": "No", "query": "According to this chart, the Year 2021 has the highest Revenue 20.10."}]}
{"id": 1254, "image": "./data/test/bar/horizontal_single/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "14.8", "query": "According to this chart, what is the Revenue of 2019?"}]}
{"id": 1255, "image": "./data/test/bar/horizontal_single/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of combination chart."}, {"label": "No", "query": "This graph is a combination chart, instead of bar chart."}]}
{"id": 1256, "image": "./data/test/bar/horizontal_single/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Conversion Rate of Year 2020 is 4.20."}, {"label": "No", "query": "According to this chart, the Conversion Rate of Year 2020 is 4.10."}]}
{"id": 1257, "image": "./data/test/bar/horizontal_single/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Conversion Rate of Year 2022 is higher than Year 2020."}, {"label": "No", "query": "According to this chart, the Conversion Rate of Year 2020 is higher than Year 2022."}]}
{"id": 1258, "image": "./data/test/bar/horizontal_single/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Year 2022 has the highest Conversion Rate 4.30."}, {"label": "No", "query": "According to this chart, the Year 2018 has the highest Conversion Rate 4.30."}]}
{"id": 1259, "image": "./data/test/bar/horizontal_single/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "3.5", "query": "According to this chart, what is the Conversion Rate of 2017?"}]}
{"id": 1260, "image": "./data/test/bar/horizontal_single/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of box chart."}, {"label": "No", "query": "This graph is a box chart, instead of bar chart."}]}
{"id": 1261, "image": "./data/test/bar/horizontal_single/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Downloads of Month 2016 is 5000.00."}, {"label": "No", "query": "According to this chart, the Number of Downloads of Month 2016 is 5600.00."}]}
{"id": 1262, "image": "./data/test/bar/horizontal_single/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Downloads of Month 2022 is higher than Month 2019."}, {"label": "No", "query": "According to this chart, the Number of Downloads of Month 2019 is higher than Month 2022."}]}
{"id": 1263, "image": "./data/test/bar/horizontal_single/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Month 2022 has the highest Number of Downloads 6000.00."}, {"label": "No", "query": "According to this chart, the Month 2020 has the highest Number of Downloads 6000.00."}]}
{"id": 1264, "image": "./data/test/bar/horizontal_single/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "5000.0", "query": "According to this chart, what is the Number of Downloads of 2016?"}]}
{"id": 1265, "image": "./data/test/bar/horizontal_single/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of line chart."}, {"label": "No", "query": "This graph is a line chart, instead of bar chart."}]}
{"id": 1266, "image": "./data/test/bar/horizontal_single/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Grade of Subject Economics is 84.00."}, {"label": "No", "query": "According to this chart, the Grade of Subject Economics is 90.00."}]}
{"id": 1267, "image": "./data/test/bar/horizontal_single/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Grade of Subject Geography is higher than Subject Art."}, {"label": "No", "query": "According to this chart, the Grade of Subject Art is higher than Subject Geography."}]}
{"id": 1268, "image": "./data/test/bar/horizontal_single/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Subject Science has the highest Grade 92.00."}, {"label": "No", "query": "According to this chart, the Subject Art has the highest Grade 92.00."}]}
{"id": 1269, "image": "./data/test/bar/horizontal_single/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "82.0", "query": "According to this chart, what is the Grade of Music?"}]}
{"id": 1270, "image": "./data/test/bar/horizontal_single/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of area chart."}, {"label": "No", "query": "This graph is a area chart, instead of bar chart."}]}
{"id": 1271, "image": "./data/test/bar/horizontal_single/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Medals of Medal Type Silver is 41.00."}, {"label": "No", "query": "According to this chart, the Number of Medals of Medal Type Silver is 39.00."}]}
{"id": 1272, "image": "./data/test/bar/horizontal_single/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Medals of Medal Type Silver is higher than Medal Type Bronze."}, {"label": "No", "query": "According to this chart, the Number of Medals of Medal Type Bronze is higher than Medal Type Silver."}]}
{"id": 1273, "image": "./data/test/bar/horizontal_single/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Medal Type Silver has the highest Number of Medals 41.00."}, {"label": "No", "query": "According to this chart, the Medal Type Bronze has the highest Number of Medals 41.00."}]}
{"id": 1274, "image": "./data/test/bar/horizontal_single/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_single", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "39.0", "query": "According to this chart, what is the Number of Medals of Gold?"}]}
{"id": 1500, "image": "./data/test/bar/horizontal_single_wi_anno/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of bar chart."}]}
{"id": 1501, "image": "./data/test/bar/horizontal_single_wi_anno/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Revenue of Year 2022 is 19.30."}, {"label": "No", "query": "According to this chart, the Revenue of Year 2022 is 12.50."}]}
{"id": 1502, "image": "./data/test/bar/horizontal_single_wi_anno/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Revenue of Year 2018 is higher than Year 2016."}, {"label": "No", "query": "According to this chart, the Revenue of Year 2016 is higher than Year 2018."}]}
{"id": 1503, "image": "./data/test/bar/horizontal_single_wi_anno/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Year 2020 has the highest Revenue 20.10."}, {"label": "No", "query": "According to this chart, the Year 2022 has the highest Revenue 20.10."}]}
{"id": 1504, "image": "./data/test/bar/horizontal_single_wi_anno/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "16.9", "query": "According to this chart, what is the Revenue of 2021?"}]}
{"id": 1505, "image": "./data/test/bar/horizontal_single_wi_anno/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of combination chart."}, {"label": "No", "query": "This graph is a combination chart, instead of bar chart."}]}
{"id": 1506, "image": "./data/test/bar/horizontal_single_wi_anno/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Conversion Rate of Year 2021 is 4.00."}, {"label": "No", "query": "According to this chart, the Conversion Rate of Year 2021 is 4.30."}]}
{"id": 1507, "image": "./data/test/bar/horizontal_single_wi_anno/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Conversion Rate of Year 2020 is higher than Year 2017."}, {"label": "No", "query": "According to this chart, the Conversion Rate of Year 2017 is higher than Year 2020."}]}
{"id": 1508, "image": "./data/test/bar/horizontal_single_wi_anno/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Year 2022 has the highest Conversion Rate 4.30."}, {"label": "No", "query": "According to this chart, the Year 2017 has the highest Conversion Rate 4.30."}]}
{"id": 1509, "image": "./data/test/bar/horizontal_single_wi_anno/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "3.8", "query": "According to this chart, what is the Conversion Rate of 2018?"}]}
{"id": 1510, "image": "./data/test/bar/horizontal_single_wi_anno/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of line chart."}, {"label": "No", "query": "This graph is a line chart, instead of bar chart."}]}
{"id": 1511, "image": "./data/test/bar/horizontal_single_wi_anno/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Downloads of Month 2018 is 5600.00."}, {"label": "No", "query": "According to this chart, the Number of Downloads of Month 2018 is 5700.00."}]}
{"id": 1512, "image": "./data/test/bar/horizontal_single_wi_anno/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Downloads of Month 2022 is higher than Month 2019."}, {"label": "No", "query": "According to this chart, the Number of Downloads of Month 2019 is higher than Month 2022."}]}
{"id": 1513, "image": "./data/test/bar/horizontal_single_wi_anno/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Month 2022 has the highest Number of Downloads 6000.00."}, {"label": "No", "query": "According to this chart, the Month 2017 has the highest Number of Downloads 6000.00."}]}
{"id": 1514, "image": "./data/test/bar/horizontal_single_wi_anno/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "5200.0", "query": "According to this chart, what is the Number of Downloads of 2017?"}]}
{"id": 1515, "image": "./data/test/bar/horizontal_single_wi_anno/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of box chart."}, {"label": "No", "query": "This graph is a box chart, instead of bar chart."}]}
{"id": 1516, "image": "./data/test/bar/horizontal_single_wi_anno/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Grade of Subject Computer is 91.00."}, {"label": "No", "query": "According to this chart, the Grade of Subject Computer is 88.00."}]}
{"id": 1517, "image": "./data/test/bar/horizontal_single_wi_anno/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Grade of Subject Science is higher than Subject Art."}, {"label": "No", "query": "According to this chart, the Grade of Subject Art is higher than Subject Science."}]}
{"id": 1518, "image": "./data/test/bar/horizontal_single_wi_anno/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Subject Science has the highest Grade 92.00."}, {"label": "No", "query": "According to this chart, the Subject Economics has the highest Grade 92.00."}]}
{"id": 1519, "image": "./data/test/bar/horizontal_single_wi_anno/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "90.0", "query": "According to this chart, what is the Grade of Geography?"}]}
{"id": 1520, "image": "./data/test/bar/horizontal_single_wi_anno/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of combination chart."}, {"label": "No", "query": "This graph is a combination chart, instead of bar chart."}]}
{"id": 1521, "image": "./data/test/bar/horizontal_single_wi_anno/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Medals of Medal Type Gold is 39.00."}, {"label": "No", "query": "According to this chart, the Number of Medals of Medal Type Gold is 41.00."}]}
{"id": 1522, "image": "./data/test/bar/horizontal_single_wi_anno/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Medals of Medal Type Gold is higher than Medal Type Bronze."}, {"label": "No", "query": "According to this chart, the Number of Medals of Medal Type Bronze is higher than Medal Type Gold."}]}
{"id": 1523, "image": "./data/test/bar/horizontal_single_wi_anno/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Medal Type Silver has the highest Number of Medals 41.00."}, {"label": "No", "query": "According to this chart, the Medal Type Gold has the highest Number of Medals 41.00."}]}
{"id": 1524, "image": "./data/test/bar/horizontal_single_wi_anno/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_single_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "39.0", "query": "According to this chart, what is the Number of Medals of Gold?"}]}
{"id": 1750, "image": "./data/test/bar/horizontal_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of radar chart."}, {"label": "No", "query": "This graph is a radar chart, instead of bar chart."}]}
{"id": 1751, "image": "./data/test/bar/horizontal_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Growth Rate of Laos at Year 2016 is 6.10."}, {"label": "No", "query": "According to this chart, the Growth Rate of Laos at Year 2016 is 4.00."}]}
{"id": 1752, "image": "./data/test/bar/horizontal_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2018, the Growth Rate of Thailand is higher than Singapore."}, {"label": "No", "query": "According to this chart, at Year 2018, the Growth Rate of Singapore is higher than Thailand."}]}
{"id": 1753, "image": "./data/test/bar/horizontal_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Vietnam at Year 2016 has the highest Growth Rate 6.80."}, {"label": "No", "query": "According to this chart, the Vietnam at Year 2020 has the highest Growth Rate 6.80."}]}
{"id": 1754, "image": "./data/test/bar/horizontal_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "5.0", "query": "According to this chart, what is the Growth Rate of Cambodia at Year 2018?"}]}
{"id": 1755, "image": "./data/test/bar/horizontal_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of line chart."}, {"label": "No", "query": "This graph is a line chart, instead of bar chart."}]}
{"id": 1756, "image": "./data/test/bar/horizontal_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Energy Consumption of Natural Gas at Year 2022 is 165.00."}, {"label": "No", "query": "According to this chart, the Energy Consumption of Natural Gas at Year 2022 is 140.00."}]}
{"id": 1757, "image": "./data/test/bar/horizontal_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2021, the Energy Consumption of Natural Gas is higher than Nuclear."}, {"label": "No", "query": "According to this chart, at Year 2021, the Energy Consumption of Nuclear is higher than Natural Gas."}]}
{"id": 1758, "image": "./data/test/bar/horizontal_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Oil at Year 2022 has the highest Energy Consumption 188.00."}, {"label": "No", "query": "According to this chart, the Oil at Year 2019 has the highest Energy Consumption 188.00."}]}
{"id": 1759, "image": "./data/test/bar/horizontal_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "86.0", "query": "According to this chart, what is the Energy Consumption of Nuclear at Year 2019?"}]}
{"id": 1760, "image": "./data/test/bar/horizontal_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of box chart."}, {"label": "No", "query": "This graph is a box chart, instead of bar chart."}]}
{"id": 1761, "image": "./data/test/bar/horizontal_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Population of Country C at Year 2021 is 225.00."}, {"label": "No", "query": "According to this chart, the Population of Country C at Year 2021 is 200.00."}]}
{"id": 1762, "image": "./data/test/bar/horizontal_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2020, the Population of Country E is higher than Country C."}, {"label": "No", "query": "According to this chart, at Year 2020, the Population of Country C is higher than Country E."}]}
{"id": 1763, "image": "./data/test/bar/horizontal_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Country E at Year 2022 has the highest Population 330.00."}, {"label": "No", "query": "According to this chart, the Country E at Year 2016 has the highest Population 330.00."}]}
{"id": 1764, "image": "./data/test/bar/horizontal_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "210.0", "query": "According to this chart, what is the Population of Country C at Year 2018?"}]}
{"id": 1765, "image": "./data/test/bar/horizontal_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of bar chart."}]}
{"id": 1766, "image": "./data/test/bar/horizontal_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Average Temperature of City B at Month Jul is 23.70."}, {"label": "No", "query": "According to this chart, the Average Temperature of City B at Month Jul is 23.20."}]}
{"id": 1767, "image": "./data/test/bar/horizontal_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Month Nov, the Average Temperature of City C is higher than City B."}, {"label": "No", "query": "According to this chart, at Month Nov, the Average Temperature of City B is higher than City C."}]}
{"id": 1768, "image": "./data/test/bar/horizontal_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the City C at Month Jul has the highest Average Temperature 32.40."}, {"label": "No", "query": "According to this chart, the City C at Month Dec has the highest Average Temperature 32.40."}]}
{"id": 1769, "image": "./data/test/bar/horizontal_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "19.8", "query": "According to this chart, what is the Average Temperature of City C at Month Nov?"}]}
{"id": 1770, "image": "./data/test/bar/horizontal_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of node_link chart."}, {"label": "No", "query": "This graph is a node_link chart, instead of bar chart."}]}
{"id": 1771, "image": "./data/test/bar/horizontal_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Price of Company A at Date 2022-01-06 is 105.70."}, {"label": "No", "query": "According to this chart, the Price of Company A at Date 2022-01-06 is 104.30."}]}
{"id": 1772, "image": "./data/test/bar/horizontal_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Date 2022-01-03, the Price of Company A is higher than Company C."}, {"label": "No", "query": "According to this chart, at Date 2022-01-03, the Price of Company C is higher than Company A."}]}
{"id": 1773, "image": "./data/test/bar/horizontal_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Company A at Date 2022-01-06 has the highest Price 105.70."}, {"label": "No", "query": "According to this chart, the Company A at Date 2022-01-05 has the highest Price 105.70."}]}
{"id": 1774, "image": "./data/test/bar/horizontal_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "horizontal_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "78.5", "query": "According to this chart, what is the Price of Company C at Date 2022-01-05?"}]}
{"id": 2000, "image": "./data/test/bar/threeD_bar_multi/chart_1/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of combination chart."}, {"label": "No", "query": "This graph is a combination chart, instead of bar chart."}]}
{"id": 2001, "image": "./data/test/bar/threeD_bar_multi/chart_1/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Growth Rate of Malaysia at Year 2017 is 5.40."}, {"label": "No", "query": "According to this chart, the Growth Rate of Malaysia at Year 2017 is 3.30."}]}
{"id": 2002, "image": "./data/test/bar/threeD_bar_multi/chart_1/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2022, the Growth Rate of Thailand is higher than Cambodia."}, {"label": "No", "query": "According to this chart, at Year 2022, the Growth Rate of Cambodia is higher than Thailand."}]}
{"id": 2003, "image": "./data/test/bar/threeD_bar_multi/chart_1/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Vietnam at Year 2016 has the highest Growth Rate 6.80."}, {"label": "No", "query": "According to this chart, the Vietnam at Year 2021 has the highest Growth Rate 6.80."}]}
{"id": 2004, "image": "./data/test/bar/threeD_bar_multi/chart_1/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "1.3", "query": "According to this chart, what is the Growth Rate of Singapore at Year 2022?"}]}
{"id": 2005, "image": "./data/test/bar/threeD_bar_multi/chart_10/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of bar chart."}]}
{"id": 2006, "image": "./data/test/bar/threeD_bar_multi/chart_10/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Energy Consumption of Renewable at Year 2020 is 115.00."}, {"label": "No", "query": "According to this chart, the Energy Consumption of Renewable at Year 2020 is 125.00."}]}
{"id": 2007, "image": "./data/test/bar/threeD_bar_multi/chart_10/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2021, the Energy Consumption of Renewable is higher than Nuclear."}, {"label": "No", "query": "According to this chart, at Year 2021, the Energy Consumption of Nuclear is higher than Renewable."}]}
{"id": 2008, "image": "./data/test/bar/threeD_bar_multi/chart_10/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Oil at Year 2022 has the highest Energy Consumption 188.00."}, {"label": "No", "query": "According to this chart, the Oil at Year 2016 has the highest Energy Consumption 188.00."}]}
{"id": 2009, "image": "./data/test/bar/threeD_bar_multi/chart_10/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "90.0", "query": "According to this chart, what is the Energy Consumption of Nuclear at Year 2021?"}]}
{"id": 2010, "image": "./data/test/bar/threeD_bar_multi/chart_11/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of bar chart."}]}
{"id": 2011, "image": "./data/test/bar/threeD_bar_multi/chart_11/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Population of Country D at Year 2020 is 270.00."}, {"label": "No", "query": "According to this chart, the Population of Country D at Year 2020 is 275.00."}]}
{"id": 2012, "image": "./data/test/bar/threeD_bar_multi/chart_11/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2022, the Population of Country E is higher than Country A."}, {"label": "No", "query": "According to this chart, at Year 2022, the Population of Country A is higher than Country E."}]}
{"id": 2013, "image": "./data/test/bar/threeD_bar_multi/chart_11/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Country E at Year 2022 has the highest Population 330.00."}, {"label": "No", "query": "According to this chart, the Country E at Year 2021 has the highest Population 330.00."}]}
{"id": 2014, "image": "./data/test/bar/threeD_bar_multi/chart_11/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "260.0", "query": "According to this chart, what is the Population of Country D at Year 2018?"}]}
{"id": 2015, "image": "./data/test/bar/threeD_bar_multi/chart_12/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of node_link chart."}, {"label": "No", "query": "This graph is a node_link chart, instead of bar chart."}]}
{"id": 2016, "image": "./data/test/bar/threeD_bar_multi/chart_12/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Average Temperature of City C at Month Apr is 23.40."}, {"label": "No", "query": "According to this chart, the Average Temperature of City C at Month Apr is 16.10."}]}
{"id": 2017, "image": "./data/test/bar/threeD_bar_multi/chart_12/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Month Apr, the Average Temperature of City D is higher than City B."}, {"label": "No", "query": "According to this chart, at Month Apr, the Average Temperature of City B is higher than City D."}]}
{"id": 2018, "image": "./data/test/bar/threeD_bar_multi/chart_12/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the City C at Month Jul has the highest Average Temperature 32.40."}, {"label": "No", "query": "According to this chart, the City C at Month Jun has the highest Average Temperature 32.40."}]}
{"id": 2019, "image": "./data/test/bar/threeD_bar_multi/chart_12/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "12.3", "query": "According to this chart, what is the Average Temperature of City A at Month Feb?"}]}
{"id": 2020, "image": "./data/test/bar/threeD_bar_multi/chart_13/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of node_link chart."}, {"label": "No", "query": "This graph is a node_link chart, instead of bar chart."}]}
{"id": 2021, "image": "./data/test/bar/threeD_bar_multi/chart_13/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Price of Company C at Date 2022-01-05 is 78.50."}, {"label": "No", "query": "According to this chart, the Price of Company C at Date 2022-01-05 is 77.20."}]}
{"id": 2022, "image": "./data/test/bar/threeD_bar_multi/chart_13/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Date 2022-01-03, the Price of Company C is higher than Company B."}, {"label": "No", "query": "According to this chart, at Date 2022-01-03, the Price of Company B is higher than Company C."}]}
{"id": 2023, "image": "./data/test/bar/threeD_bar_multi/chart_13/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Company A at Date 2022-01-06 has the highest Price 105.70."}, {"label": "No", "query": "According to this chart, the Company A at Date 2022-01-05 has the highest Price 105.70."}]}
{"id": 2024, "image": "./data/test/bar/threeD_bar_multi/chart_13/image.png", "type": {"chart": "bar", "image": "threeD_bar_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "77.2", "query": "According to this chart, what is the Price of Company C at Date 2022-01-04?"}]}
{"id": 2250, "image": "./data/test/bar/threeD_percent_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of radar chart."}, {"label": "No", "query": "This graph is a radar chart, instead of bar chart."}]}
{"id": 2251, "image": "./data/test/bar/threeD_percent_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Singapore at Year 2020 is 11.52."}, {"label": "No", "query": "According to this chart, the percentage of Singapore at Year 2020 is 20.16."}]}
{"id": 2252, "image": "./data/test/bar/threeD_percent_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2016, the percentage of Singapore is higher than Malaysia."}, {"label": "No", "query": "According to this chart, at Year 2016, the percentage of Malaysia is higher than Singapore."}]}
{"id": 2253, "image": "./data/test/bar/threeD_percent_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Singapore at Year 2016 has the highest percentage 23.46."}, {"label": "No", "query": "According to this chart, the Singapore at Year 2022 has the highest percentage 23.46."}]}
{"id": 2254, "image": "./data/test/bar/threeD_percent_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "11.9%", "query": "According to this chart, what is the Growth Rate percentage of Laos at Year 2020?"}]}
{"id": 2255, "image": "./data/test/bar/threeD_percent_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of node_link chart."}, {"label": "No", "query": "This graph is a node_link chart, instead of bar chart."}]}
{"id": 2256, "image": "./data/test/bar/threeD_percent_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Coal at Year 2018 is 14.81."}, {"label": "No", "query": "According to this chart, the percentage of Coal at Year 2018 is 13.71."}]}
{"id": 2257, "image": "./data/test/bar/threeD_percent_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2022, the percentage of Renewable is higher than Natural Gas."}, {"label": "No", "query": "According to this chart, at Year 2022, the percentage of Natural Gas is higher than Renewable."}]}
{"id": 2258, "image": "./data/test/bar/threeD_percent_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Renewable at Year 2022 has the highest percentage 16.23."}, {"label": "No", "query": "According to this chart, the Renewable at Year 2021 has the highest percentage 16.23."}]}
{"id": 2259, "image": "./data/test/bar/threeD_percent_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "15.6%", "query": "According to this chart, what is the Energy Consumption percentage of Renewable at Year 2021?"}]}
{"id": 2260, "image": "./data/test/bar/threeD_percent_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of bar chart."}]}
{"id": 2261, "image": "./data/test/bar/threeD_percent_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Country A at Year 2018 is 13.66."}, {"label": "No", "query": "According to this chart, the percentage of Country A at Year 2018 is 13.04."}]}
{"id": 2262, "image": "./data/test/bar/threeD_percent_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2019, the percentage of Country D is higher than Country B."}, {"label": "No", "query": "According to this chart, at Year 2019, the percentage of Country B is higher than Country D."}]}
{"id": 2263, "image": "./data/test/bar/threeD_percent_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Country A at Year 2022 has the highest percentage 16.15."}, {"label": "No", "query": "According to this chart, the Country A at Year 2018 has the highest percentage 16.15."}]}
{"id": 2264, "image": "./data/test/bar/threeD_percent_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "16.1%", "query": "According to this chart, what is the Population percentage of Country A at Year 2022?"}]}
{"id": 2265, "image": "./data/test/bar/threeD_percent_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of scatter chart."}, {"label": "No", "query": "This graph is a scatter chart, instead of bar chart."}]}
{"id": 2266, "image": "./data/test/bar/threeD_percent_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of City B at Month Dec is 3.72."}, {"label": "No", "query": "According to this chart, the percentage of City B at Month Dec is 3.72."}]}
{"id": 2267, "image": "./data/test/bar/threeD_percent_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Month Jul, the percentage of City D is higher than City C."}, {"label": "No", "query": "According to this chart, at Month Jul, the percentage of City C is higher than City D."}]}
{"id": 2268, "image": "./data/test/bar/threeD_percent_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the City B at Month Jul has the highest percentage 14.23."}, {"label": "No", "query": "According to this chart, the City B at Month Jun has the highest percentage 14.23."}]}
{"id": 2269, "image": "./data/test/bar/threeD_percent_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "11.4%", "query": "According to this chart, what is the Average Temperature percentage of City C at Month Jul?"}]}
{"id": 2270, "image": "./data/test/bar/threeD_percent_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of combination chart."}, {"label": "No", "query": "This graph is a combination chart, instead of bar chart."}]}
{"id": 2271, "image": "./data/test/bar/threeD_percent_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Company B at Date 2022-01-06 is 17.29."}, {"label": "No", "query": "According to this chart, the percentage of Company B at Date 2022-01-06 is 16.94."}]}
{"id": 2272, "image": "./data/test/bar/threeD_percent_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Date 2022-01-06, the percentage of Company B is higher than Company C."}, {"label": "No", "query": "According to this chart, at Date 2022-01-06, the percentage of Company C is higher than Company B."}]}
{"id": 2273, "image": "./data/test/bar/threeD_percent_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Company B at Date 2022-01-06 has the highest percentage 17.29."}, {"label": "No", "query": "According to this chart, the Company B at Date 2022-01-04 has the highest percentage 17.29."}]}
{"id": 2274, "image": "./data/test/bar/threeD_percent_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "threeD_percent_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "17.0%", "query": "According to this chart, what is the Price percentage of Company A at Date 2022-01-05?"}]}
{"id": 2500, "image": "./data/test/bar/threeD_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of radar chart."}, {"label": "No", "query": "This graph is a radar chart, instead of bar chart."}]}
{"id": 2501, "image": "./data/test/bar/threeD_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Growth Rate of Thailand at Year 2020 is 3.60."}, {"label": "No", "query": "According to this chart, the Growth Rate of Thailand at Year 2020 is 1.70."}]}
{"id": 2502, "image": "./data/test/bar/threeD_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2017, the Growth Rate of Vietnam is higher than Indonesia."}, {"label": "No", "query": "According to this chart, at Year 2017, the Growth Rate of Indonesia is higher than Vietnam."}]}
{"id": 2503, "image": "./data/test/bar/threeD_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Vietnam at Year 2016 has the highest Growth Rate 6.80."}, {"label": "No", "query": "According to this chart, the Vietnam at Year 2020 has the highest Growth Rate 6.80."}]}
{"id": 2504, "image": "./data/test/bar/threeD_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "5.9", "query": "According to this chart, what is the Growth Rate of Philippines at Year 2016?"}]}
{"id": 2505, "image": "./data/test/bar/threeD_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of combination chart."}, {"label": "No", "query": "This graph is a combination chart, instead of bar chart."}]}
{"id": 2506, "image": "./data/test/bar/threeD_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Energy Consumption of Renewable at Year 2017 is 100.00."}, {"label": "No", "query": "According to this chart, the Energy Consumption of Renewable at Year 2017 is 115.00."}]}
{"id": 2507, "image": "./data/test/bar/threeD_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2019, the Energy Consumption of Oil is higher than Coal."}, {"label": "No", "query": "According to this chart, at Year 2019, the Energy Consumption of Coal is higher than Oil."}]}
{"id": 2508, "image": "./data/test/bar/threeD_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Oil at Year 2022 has the highest Energy Consumption 188.00."}, {"label": "No", "query": "According to this chart, the Oil at Year 2019 has the highest Energy Consumption 188.00."}]}
{"id": 2509, "image": "./data/test/bar/threeD_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "95.0", "query": "According to this chart, what is the Energy Consumption of Renewable at Year 2016?"}]}
{"id": 2510, "image": "./data/test/bar/threeD_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of bar chart."}]}
{"id": 2511, "image": "./data/test/bar/threeD_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Population of Country B at Year 2021 is 175.00."}, {"label": "No", "query": "According to this chart, the Population of Country B at Year 2021 is 150.00."}]}
{"id": 2512, "image": "./data/test/bar/threeD_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2018, the Population of Country E is higher than Country A."}, {"label": "No", "query": "According to this chart, at Year 2018, the Population of Country A is higher than Country E."}]}
{"id": 2513, "image": "./data/test/bar/threeD_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Country E at Year 2022 has the highest Population 330.00."}, {"label": "No", "query": "According to this chart, the Country E at Year 2018 has the highest Population 330.00."}]}
{"id": 2514, "image": "./data/test/bar/threeD_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "310.0", "query": "According to this chart, what is the Population of Country E at Year 2018?"}]}
{"id": 2515, "image": "./data/test/bar/threeD_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of node_link chart."}, {"label": "No", "query": "This graph is a node_link chart, instead of bar chart."}]}
{"id": 2516, "image": "./data/test/bar/threeD_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Average Temperature of City C at Month Dec is 16.10."}, {"label": "No", "query": "According to this chart, the Average Temperature of City C at Month Dec is 31.80."}]}
{"id": 2517, "image": "./data/test/bar/threeD_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Month May, the Average Temperature of City A is higher than City B."}, {"label": "No", "query": "According to this chart, at Month May, the Average Temperature of City B is higher than City A."}]}
{"id": 2518, "image": "./data/test/bar/threeD_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the City C at Month Jul has the highest Average Temperature 32.40."}, {"label": "No", "query": "According to this chart, the City C at Month Aug has the highest Average Temperature 32.40."}]}
{"id": 2519, "image": "./data/test/bar/threeD_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "23.4", "query": "According to this chart, what is the Average Temperature of City A at Month Sep?"}]}
{"id": 2520, "image": "./data/test/bar/threeD_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of bar chart."}]}
{"id": 2521, "image": "./data/test/bar/threeD_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Price of Company C at Date 2022-01-03 is 76.10."}, {"label": "No", "query": "According to this chart, the Price of Company C at Date 2022-01-03 is 74.90."}]}
{"id": 2522, "image": "./data/test/bar/threeD_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Date 2022-01-06, the Price of Company C is higher than Company B."}, {"label": "No", "query": "According to this chart, at Date 2022-01-06, the Price of Company B is higher than Company C."}]}
{"id": 2523, "image": "./data/test/bar/threeD_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Company A at Date 2022-01-06 has the highest Price 105.70."}, {"label": "No", "query": "According to this chart, the Company A at Date 2022-01-04 has the highest Price 105.70."}]}
{"id": 2524, "image": "./data/test/bar/threeD_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "threeD_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "100.5", "query": "According to this chart, what is the Price of Company A at Date 2022-01-01?"}]}
{"id": 2750, "image": "./data/test/bar/vertical_multi/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of combination chart."}, {"label": "No", "query": "This graph is a combination chart, instead of bar chart."}]}
{"id": 2751, "image": "./data/test/bar/vertical_multi/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Growth Rate of Indonesia at Year 2018 is 4.10."}, {"label": "No", "query": "According to this chart, the Growth Rate of Indonesia at Year 2018 is 1.80."}]}
{"id": 2752, "image": "./data/test/bar/vertical_multi/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2019, the Growth Rate of Malaysia is higher than Laos."}, {"label": "No", "query": "According to this chart, at Year 2019, the Growth Rate of Laos is higher than Malaysia."}]}
{"id": 2753, "image": "./data/test/bar/vertical_multi/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Vietnam at Year 2016 has the highest Growth Rate 6.80."}, {"label": "No", "query": "According to this chart, the Vietnam at Year 2022 has the highest Growth Rate 6.80."}]}
{"id": 2754, "image": "./data/test/bar/vertical_multi/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "6.2", "query": "According to this chart, what is the Growth Rate of Malaysia at Year 2016?"}]}
{"id": 2755, "image": "./data/test/bar/vertical_multi/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of combination chart."}, {"label": "No", "query": "This graph is a combination chart, instead of bar chart."}]}
{"id": 2756, "image": "./data/test/bar/vertical_multi/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Energy Consumption of Nuclear at Year 2018 is 84.00."}, {"label": "No", "query": "According to this chart, the Energy Consumption of Nuclear at Year 2018 is 80.00."}]}
{"id": 2757, "image": "./data/test/bar/vertical_multi/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2020, the Energy Consumption of Oil is higher than Renewable."}, {"label": "No", "query": "According to this chart, at Year 2020, the Energy Consumption of Renewable is higher than Oil."}]}
{"id": 2758, "image": "./data/test/bar/vertical_multi/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Oil at Year 2022 has the highest Energy Consumption 188.00."}, {"label": "No", "query": "According to this chart, the Oil at Year 2021 has the highest Energy Consumption 188.00."}]}
{"id": 2759, "image": "./data/test/bar/vertical_multi/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "184.0", "query": "According to this chart, what is the Energy Consumption of Oil at Year 2020?"}]}
{"id": 2760, "image": "./data/test/bar/vertical_multi/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of bar chart."}]}
{"id": 2761, "image": "./data/test/bar/vertical_multi/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Population of Country B at Year 2022 is 180.00."}, {"label": "No", "query": "According to this chart, the Population of Country B at Year 2022 is 160.00."}]}
{"id": 2762, "image": "./data/test/bar/vertical_multi/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2016, the Population of Country E is higher than Country A."}, {"label": "No", "query": "According to this chart, at Year 2016, the Population of Country A is higher than Country E."}]}
{"id": 2763, "image": "./data/test/bar/vertical_multi/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Country E at Year 2022 has the highest Population 330.00."}, {"label": "No", "query": "According to this chart, the Country E at Year 2017 has the highest Population 330.00."}]}
{"id": 2764, "image": "./data/test/bar/vertical_multi/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "115.0", "query": "According to this chart, what is the Population of Country A at Year 2019?"}]}
{"id": 2765, "image": "./data/test/bar/vertical_multi/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of area chart."}, {"label": "No", "query": "This graph is a area chart, instead of bar chart."}]}
{"id": 2766, "image": "./data/test/bar/vertical_multi/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Average Temperature of City D at Month Mar is 14.30."}, {"label": "No", "query": "According to this chart, the Average Temperature of City D at Month Mar is 25.90."}]}
{"id": 2767, "image": "./data/test/bar/vertical_multi/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Month May, the Average Temperature of City C is higher than City B."}, {"label": "No", "query": "According to this chart, at Month May, the Average Temperature of City B is higher than City C."}]}
{"id": 2768, "image": "./data/test/bar/vertical_multi/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the City C at Month Jul has the highest Average Temperature 32.40."}, {"label": "No", "query": "According to this chart, the City C at Month Jun has the highest Average Temperature 32.40."}]}
{"id": 2769, "image": "./data/test/bar/vertical_multi/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "26.6", "query": "According to this chart, what is the Average Temperature of City A at Month Aug?"}]}
{"id": 2770, "image": "./data/test/bar/vertical_multi/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of bar chart."}]}
{"id": 2771, "image": "./data/test/bar/vertical_multi/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Price of Company C at Date 2022-01-06 is 79.10."}, {"label": "No", "query": "According to this chart, the Price of Company C at Date 2022-01-06 is 77.20."}]}
{"id": 2772, "image": "./data/test/bar/vertical_multi/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Date 2022-01-02, the Price of Company C is higher than Company B."}, {"label": "No", "query": "According to this chart, at Date 2022-01-02, the Price of Company B is higher than Company C."}]}
{"id": 2773, "image": "./data/test/bar/vertical_multi/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Company A at Date 2022-01-06 has the highest Price 105.70."}, {"label": "No", "query": "According to this chart, the Company A at Date 2022-01-05 has the highest Price 105.70."}]}
{"id": 2774, "image": "./data/test/bar/vertical_multi/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "53.8", "query": "According to this chart, what is the Price of Company B at Date 2022-01-05?"}]}
{"id": 3000, "image": "./data/test/bar/vertical_percent_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of node_link chart."}, {"label": "No", "query": "This graph is a node_link chart, instead of bar chart."}]}
{"id": 3001, "image": "./data/test/bar/vertical_percent_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Singapore at Year 2021 is 7.82."}, {"label": "No", "query": "According to this chart, the percentage of Singapore at Year 2021 is 5.35."}]}
{"id": 3002, "image": "./data/test/bar/vertical_percent_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2022, the percentage of Malaysia is higher than Laos."}, {"label": "No", "query": "According to this chart, at Year 2022, the percentage of Laos is higher than Malaysia."}]}
{"id": 3003, "image": "./data/test/bar/vertical_percent_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Singapore at Year 2016 has the highest percentage 23.46."}, {"label": "No", "query": "According to this chart, the Singapore at Year 2021 has the highest percentage 23.46."}]}
{"id": 3004, "image": "./data/test/bar/vertical_percent_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "19.8%", "query": "According to this chart, what is the Growth Rate percentage of Indonesia at Year 2017?"}]}
{"id": 3005, "image": "./data/test/bar/vertical_percent_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of combination chart."}, {"label": "No", "query": "This graph is a combination chart, instead of bar chart."}]}
{"id": 3006, "image": "./data/test/bar/vertical_percent_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Oil at Year 2017 is 13.97."}, {"label": "No", "query": "According to this chart, the percentage of Oil at Year 2017 is 14.76."}]}
{"id": 3007, "image": "./data/test/bar/vertical_percent_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2021, the percentage of Renewable is higher than Nuclear."}, {"label": "No", "query": "According to this chart, at Year 2021, the percentage of Nuclear is higher than Renewable."}]}
{"id": 3008, "image": "./data/test/bar/vertical_percent_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Renewable at Year 2022 has the highest percentage 16.23."}, {"label": "No", "query": "According to this chart, the Renewable at Year 2021 has the highest percentage 16.23."}]}
{"id": 3009, "image": "./data/test/bar/vertical_percent_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "14.3%", "query": "According to this chart, what is the Energy Consumption percentage of Renewable at Year 2019?"}]}
{"id": 3010, "image": "./data/test/bar/vertical_percent_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of line chart."}, {"label": "No", "query": "This graph is a line chart, instead of bar chart."}]}
{"id": 3011, "image": "./data/test/bar/vertical_percent_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Country C at Year 2016 is 13.29."}, {"label": "No", "query": "According to this chart, the percentage of Country C at Year 2016 is 14.29."}]}
{"id": 3012, "image": "./data/test/bar/vertical_percent_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2020, the percentage of Country B is higher than Country D."}, {"label": "No", "query": "According to this chart, at Year 2020, the percentage of Country D is higher than Country B."}]}
{"id": 3013, "image": "./data/test/bar/vertical_percent_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Country A at Year 2022 has the highest percentage 16.15."}, {"label": "No", "query": "According to this chart, the Country A at Year 2021 has the highest percentage 16.15."}]}
{"id": 3014, "image": "./data/test/bar/vertical_percent_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "12.4%", "query": "According to this chart, what is the Population percentage of Country A at Year 2016?"}]}
{"id": 3015, "image": "./data/test/bar/vertical_percent_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of scatter chart."}, {"label": "No", "query": "This graph is a scatter chart, instead of bar chart."}]}
{"id": 3016, "image": "./data/test/bar/vertical_percent_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of City B at Month Jul is 14.23."}, {"label": "No", "query": "According to this chart, the percentage of City B at Month Jul is 3.72."}]}
{"id": 3017, "image": "./data/test/bar/vertical_percent_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Month Jul, the percentage of City D is higher than City C."}, {"label": "No", "query": "According to this chart, at Month Jul, the percentage of City C is higher than City D."}]}
{"id": 3018, "image": "./data/test/bar/vertical_percent_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the City B at Month Jul has the highest percentage 14.23."}, {"label": "No", "query": "According to this chart, the City B at Month Dec has the highest percentage 14.23."}]}
{"id": 3019, "image": "./data/test/bar/vertical_percent_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "5.1%", "query": "According to this chart, what is the Average Temperature percentage of City A at Month Dec?"}]}
{"id": 3020, "image": "./data/test/bar/vertical_percent_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of area chart."}, {"label": "No", "query": "This graph is a area chart, instead of bar chart."}]}
{"id": 3021, "image": "./data/test/bar/vertical_percent_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Company C at Date 2022-01-06 is 17.15."}, {"label": "No", "query": "According to this chart, the percentage of Company C at Date 2022-01-06 is 17.02."}]}
{"id": 3022, "image": "./data/test/bar/vertical_percent_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Date 2022-01-06, the percentage of Company B is higher than Company A."}, {"label": "No", "query": "According to this chart, at Date 2022-01-06, the percentage of Company A is higher than Company B."}]}
{"id": 3023, "image": "./data/test/bar/vertical_percent_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Company B at Date 2022-01-06 has the highest percentage 17.29."}, {"label": "No", "query": "According to this chart, the Company B at Date 2022-01-01 has the highest percentage 17.29."}]}
{"id": 3024, "image": "./data/test/bar/vertical_percent_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_percent_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "16.9%", "query": "According to this chart, what is the Price percentage of Company B at Date 2022-01-04?"}]}
{"id": 3250, "image": "./data/test/bar/vertical_single/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of node_link chart."}, {"label": "No", "query": "This graph is a node_link chart, instead of bar chart."}]}
{"id": 3251, "image": "./data/test/bar/vertical_single/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Revenue of Year 2021 is 16.90."}, {"label": "No", "query": "According to this chart, the Revenue of Year 2021 is 19.30."}]}
{"id": 3252, "image": "./data/test/bar/vertical_single/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Revenue of Year 2020 is higher than Year 2016."}, {"label": "No", "query": "According to this chart, the Revenue of Year 2016 is higher than Year 2020."}]}
{"id": 3253, "image": "./data/test/bar/vertical_single/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Year 2020 has the highest Revenue 20.10."}, {"label": "No", "query": "According to this chart, the Year 2019 has the highest Revenue 20.10."}]}
{"id": 3254, "image": "./data/test/bar/vertical_single/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "14.8", "query": "According to this chart, what is the Revenue of 2019?"}]}
{"id": 3255, "image": "./data/test/bar/vertical_single/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of radar chart."}, {"label": "No", "query": "This graph is a radar chart, instead of bar chart."}]}
{"id": 3256, "image": "./data/test/bar/vertical_single/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Conversion Rate of Year 2022 is 4.30."}, {"label": "No", "query": "According to this chart, the Conversion Rate of Year 2022 is 3.20."}]}
{"id": 3257, "image": "./data/test/bar/vertical_single/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Conversion Rate of Year 2022 is higher than Year 2021."}, {"label": "No", "query": "According to this chart, the Conversion Rate of Year 2021 is higher than Year 2022."}]}
{"id": 3258, "image": "./data/test/bar/vertical_single/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Year 2022 has the highest Conversion Rate 4.30."}, {"label": "No", "query": "According to this chart, the Year 2017 has the highest Conversion Rate 4.30."}]}
{"id": 3259, "image": "./data/test/bar/vertical_single/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "3.5", "query": "According to this chart, what is the Conversion Rate of 2017?"}]}
{"id": 3260, "image": "./data/test/bar/vertical_single/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of radar chart."}, {"label": "No", "query": "This graph is a radar chart, instead of bar chart."}]}
{"id": 3261, "image": "./data/test/bar/vertical_single/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Downloads of Month 2016 is 5000.00."}, {"label": "No", "query": "According to this chart, the Number of Downloads of Month 2016 is 5900.00."}]}
{"id": 3262, "image": "./data/test/bar/vertical_single/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Downloads of Month 2022 is higher than Month 2021."}, {"label": "No", "query": "According to this chart, the Number of Downloads of Month 2021 is higher than Month 2022."}]}
{"id": 3263, "image": "./data/test/bar/vertical_single/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Month 2022 has the highest Number of Downloads 6000.00."}, {"label": "No", "query": "According to this chart, the Month 2018 has the highest Number of Downloads 6000.00."}]}
{"id": 3264, "image": "./data/test/bar/vertical_single/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "5600.0", "query": "According to this chart, what is the Number of Downloads of 2018?"}]}
{"id": 3265, "image": "./data/test/bar/vertical_single/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of combination chart."}, {"label": "No", "query": "This graph is a combination chart, instead of bar chart."}]}
{"id": 3266, "image": "./data/test/bar/vertical_single/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Grade of Subject English is 88.00."}, {"label": "No", "query": "According to this chart, the Grade of Subject English is 92.00."}]}
{"id": 3267, "image": "./data/test/bar/vertical_single/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Grade of Subject Science is higher than Subject English."}, {"label": "No", "query": "According to this chart, the Grade of Subject English is higher than Subject Science."}]}
{"id": 3268, "image": "./data/test/bar/vertical_single/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Subject Science has the highest Grade 92.00."}, {"label": "No", "query": "According to this chart, the Subject English has the highest Grade 92.00."}]}
{"id": 3269, "image": "./data/test/bar/vertical_single/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "92.0", "query": "According to this chart, what is the Grade of Science?"}]}
{"id": 3270, "image": "./data/test/bar/vertical_single/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of node_link chart."}, {"label": "No", "query": "This graph is a node_link chart, instead of bar chart."}]}
{"id": 3271, "image": "./data/test/bar/vertical_single/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Medals of Medal Type Bronze is 33.00."}, {"label": "No", "query": "According to this chart, the Number of Medals of Medal Type Bronze is 41.00."}]}
{"id": 3272, "image": "./data/test/bar/vertical_single/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Medals of Medal Type Silver is higher than Medal Type Gold."}, {"label": "No", "query": "According to this chart, the Number of Medals of Medal Type Gold is higher than Medal Type Silver."}]}
{"id": 3273, "image": "./data/test/bar/vertical_single/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Medal Type Silver has the highest Number of Medals 41.00."}, {"label": "No", "query": "According to this chart, the Medal Type Bronze has the highest Number of Medals 41.00."}]}
{"id": 3274, "image": "./data/test/bar/vertical_single/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_single", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "41.0", "query": "According to this chart, what is the Number of Medals of Silver?"}]}
{"id": 3500, "image": "./data/test/bar/vertical_single_wi_anno/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of bar chart."}]}
{"id": 3501, "image": "./data/test/bar/vertical_single_wi_anno/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Revenue of Year 2019 is 14.80."}, {"label": "No", "query": "According to this chart, the Revenue of Year 2019 is 19.30."}]}
{"id": 3502, "image": "./data/test/bar/vertical_single_wi_anno/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Revenue of Year 2020 is higher than Year 2022."}, {"label": "No", "query": "According to this chart, the Revenue of Year 2022 is higher than Year 2020."}]}
{"id": 3503, "image": "./data/test/bar/vertical_single_wi_anno/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Year 2020 has the highest Revenue 20.10."}, {"label": "No", "query": "According to this chart, the Year 2019 has the highest Revenue 20.10."}]}
{"id": 3504, "image": "./data/test/bar/vertical_single_wi_anno/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "19.3", "query": "According to this chart, what is the Revenue of 2022?"}]}
{"id": 3505, "image": "./data/test/bar/vertical_single_wi_anno/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of bar chart."}]}
{"id": 3506, "image": "./data/test/bar/vertical_single_wi_anno/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Conversion Rate of Year 2016 is 3.20."}, {"label": "No", "query": "According to this chart, the Conversion Rate of Year 2016 is 3.50."}]}
{"id": 3507, "image": "./data/test/bar/vertical_single_wi_anno/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Conversion Rate of Year 2018 is higher than Year 2016."}, {"label": "No", "query": "According to this chart, the Conversion Rate of Year 2016 is higher than Year 2018."}]}
{"id": 3508, "image": "./data/test/bar/vertical_single_wi_anno/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Year 2022 has the highest Conversion Rate 4.30."}, {"label": "No", "query": "According to this chart, the Year 2017 has the highest Conversion Rate 4.30."}]}
{"id": 3509, "image": "./data/test/bar/vertical_single_wi_anno/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "4.0", "query": "According to this chart, what is the Conversion Rate of 2021?"}]}
{"id": 3510, "image": "./data/test/bar/vertical_single_wi_anno/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of bar chart."}]}
{"id": 3511, "image": "./data/test/bar/vertical_single_wi_anno/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Downloads of Month 2019 is 5300.00."}, {"label": "No", "query": "According to this chart, the Number of Downloads of Month 2019 is 6000.00."}]}
{"id": 3512, "image": "./data/test/bar/vertical_single_wi_anno/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Downloads of Month 2020 is higher than Month 2016."}, {"label": "No", "query": "According to this chart, the Number of Downloads of Month 2016 is higher than Month 2020."}]}
{"id": 3513, "image": "./data/test/bar/vertical_single_wi_anno/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Month 2022 has the highest Number of Downloads 6000.00."}, {"label": "No", "query": "According to this chart, the Month 2020 has the highest Number of Downloads 6000.00."}]}
{"id": 3514, "image": "./data/test/bar/vertical_single_wi_anno/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "5900.0", "query": "According to this chart, what is the Number of Downloads of 2020?"}]}
{"id": 3515, "image": "./data/test/bar/vertical_single_wi_anno/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of radar chart."}, {"label": "No", "query": "This graph is a radar chart, instead of bar chart."}]}
{"id": 3516, "image": "./data/test/bar/vertical_single_wi_anno/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Grade of Subject Geography is 90.00."}, {"label": "No", "query": "According to this chart, the Grade of Subject Geography is 82.00."}]}
{"id": 3517, "image": "./data/test/bar/vertical_single_wi_anno/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Grade of Subject Math is higher than Subject Art."}, {"label": "No", "query": "According to this chart, the Grade of Subject Art is higher than Subject Math."}]}
{"id": 3518, "image": "./data/test/bar/vertical_single_wi_anno/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Subject Science has the highest Grade 92.00."}, {"label": "No", "query": "According to this chart, the Subject English has the highest Grade 92.00."}]}
{"id": 3519, "image": "./data/test/bar/vertical_single_wi_anno/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "85.0", "query": "According to this chart, what is the Grade of Math?"}]}
{"id": 3520, "image": "./data/test/bar/vertical_single_wi_anno/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of radar chart."}, {"label": "No", "query": "This graph is a radar chart, instead of bar chart."}]}
{"id": 3521, "image": "./data/test/bar/vertical_single_wi_anno/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Medals of Medal Type Silver is 41.00."}, {"label": "No", "query": "According to this chart, the Number of Medals of Medal Type Silver is 33.00."}]}
{"id": 3522, "image": "./data/test/bar/vertical_single_wi_anno/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Medals of Medal Type Gold is higher than Medal Type Bronze."}, {"label": "No", "query": "According to this chart, the Number of Medals of Medal Type Bronze is higher than Medal Type Gold."}]}
{"id": 3523, "image": "./data/test/bar/vertical_single_wi_anno/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Medal Type Silver has the highest Number of Medals 41.00."}, {"label": "No", "query": "According to this chart, the Medal Type Gold has the highest Number of Medals 41.00."}]}
{"id": 3524, "image": "./data/test/bar/vertical_single_wi_anno/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_single_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "39.0", "query": "According to this chart, what is the Number of Medals of Gold?"}]}
{"id": 3750, "image": "./data/test/bar/vertical_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of box chart."}, {"label": "No", "query": "This graph is a box chart, instead of bar chart."}]}
{"id": 3751, "image": "./data/test/bar/vertical_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Growth Rate of Cambodia at Year 2018 is 5.00."}, {"label": "No", "query": "According to this chart, the Growth Rate of Cambodia at Year 2018 is 4.20."}]}
{"id": 3752, "image": "./data/test/bar/vertical_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2020, the Growth Rate of Malaysia is higher than Philippines."}, {"label": "No", "query": "According to this chart, at Year 2020, the Growth Rate of Philippines is higher than Malaysia."}]}
{"id": 3753, "image": "./data/test/bar/vertical_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Vietnam at Year 2016 has the highest Growth Rate 6.80."}, {"label": "No", "query": "According to this chart, the Vietnam at Year 2017 has the highest Growth Rate 6.80."}]}
{"id": 3754, "image": "./data/test/bar/vertical_stacked/chart_1/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "4.6", "query": "According to this chart, what is the Growth Rate of Indonesia at Year 2017?"}]}
{"id": 3755, "image": "./data/test/bar/vertical_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of line chart."}, {"label": "No", "query": "This graph is a line chart, instead of bar chart."}]}
{"id": 3756, "image": "./data/test/bar/vertical_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Energy Consumption of Coal at Year 2020 is 155.00."}, {"label": "No", "query": "According to this chart, the Energy Consumption of Coal at Year 2020 is 160.00."}]}
{"id": 3757, "image": "./data/test/bar/vertical_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2018, the Energy Consumption of Oil is higher than Coal."}, {"label": "No", "query": "According to this chart, at Year 2018, the Energy Consumption of Coal is higher than Oil."}]}
{"id": 3758, "image": "./data/test/bar/vertical_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Oil at Year 2022 has the highest Energy Consumption 188.00."}, {"label": "No", "query": "According to this chart, the Oil at Year 2019 has the highest Energy Consumption 188.00."}]}
{"id": 3759, "image": "./data/test/bar/vertical_stacked/chart_10/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "152.0", "query": "According to this chart, what is the Energy Consumption of Coal at Year 2021?"}]}
{"id": 3760, "image": "./data/test/bar/vertical_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of box chart."}, {"label": "No", "query": "This graph is a box chart, instead of bar chart."}]}
{"id": 3761, "image": "./data/test/bar/vertical_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Population of Country B at Year 2017 is 155.00."}, {"label": "No", "query": "According to this chart, the Population of Country B at Year 2017 is 170.00."}]}
{"id": 3762, "image": "./data/test/bar/vertical_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Year 2018, the Population of Country B is higher than Country A."}, {"label": "No", "query": "According to this chart, at Year 2018, the Population of Country A is higher than Country B."}]}
{"id": 3763, "image": "./data/test/bar/vertical_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Country E at Year 2022 has the highest Population 330.00."}, {"label": "No", "query": "According to this chart, the Country E at Year 2016 has the highest Population 330.00."}]}
{"id": 3764, "image": "./data/test/bar/vertical_stacked/chart_11/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "260.0", "query": "According to this chart, what is the Population of Country D at Year 2018?"}]}
{"id": 3765, "image": "./data/test/bar/vertical_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of bar chart."}]}
{"id": 3766, "image": "./data/test/bar/vertical_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Average Temperature of City D at Month Jan is 8.60."}, {"label": "No", "query": "According to this chart, the Average Temperature of City D at Month Jan is 25.90."}]}
{"id": 3767, "image": "./data/test/bar/vertical_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Month Feb, the Average Temperature of City A is higher than City D."}, {"label": "No", "query": "According to this chart, at Month Feb, the Average Temperature of City D is higher than City A."}]}
{"id": 3768, "image": "./data/test/bar/vertical_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the City C at Month Jul has the highest Average Temperature 32.40."}, {"label": "No", "query": "According to this chart, the City C at Month Feb has the highest Average Temperature 32.40."}]}
{"id": 3769, "image": "./data/test/bar/vertical_stacked/chart_12/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "20.3", "query": "According to this chart, what is the Average Temperature of City B at Month Jun?"}]}
{"id": 3770, "image": "./data/test/bar/vertical_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a bar chart, instead of scatter chart."}, {"label": "No", "query": "This graph is a scatter chart, instead of bar chart."}]}
{"id": 3771, "image": "./data/test/bar/vertical_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Price of Company C at Date 2022-01-05 is 78.50."}, {"label": "No", "query": "According to this chart, the Price of Company C at Date 2022-01-05 is 75.30."}]}
{"id": 3772, "image": "./data/test/bar/vertical_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, at Date 2022-01-05, the Price of Company C is higher than Company B."}, {"label": "No", "query": "According to this chart, at Date 2022-01-05, the Price of Company B is higher than Company C."}]}
{"id": 3773, "image": "./data/test/bar/vertical_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Company A at Date 2022-01-06 has the highest Price 105.70."}, {"label": "No", "query": "According to this chart, the Company A at Date 2022-01-01 has the highest Price 105.70."}]}
{"id": 3774, "image": "./data/test/bar/vertical_stacked/chart_13/image.png", "type": {"chart": "bar", "image": "vertical_stacked", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "76.1", "query": "According to this chart, what is the Price of Company C at Date 2022-01-03?"}]}
{"id": 4000, "image": "./data/test/box/box_h/chart_0/image.png", "type": {"chart": "box", "image": "box_h", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a box chart, instead of radar chart."}, {"label": "No", "query": "This graph is a radar chart, instead of box chart."}]}
{"id": 4001, "image": "./data/test/box/box_h/chart_0/image.png", "type": {"chart": "box", "image": "box_h", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the medium Rainfall (in millimeters) number of Year 2018 is around 336.0."}, {"label": "No", "query": "According to this chart, the medium Rainfall (in millimeters) number of Year 2018 is around 636.5."}]}
{"id": 4002, "image": "./data/test/box/box_h/chart_0/image.png", "type": {"chart": "box", "image": "box_h", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the medium Rainfall (in millimeters) number of Year 2015 is higher than 2018."}, {"label": "No", "query": "According to this chart, the medium Rainfall (in millimeters) number of Year 2018 is higher than 2015."}]}
{"id": 4003, "image": "./data/test/box/box_h/chart_0/image.png", "type": {"chart": "box", "image": "box_h", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Year 2017 has the highest medium Rainfall (in millimeters) number."}, {"label": "No", "query": "According to this chart, the Year 2015 has the highest medium Rainfall (in millimeters) number."}]}
{"id": 4004, "image": "./data/test/box/box_h/chart_0/image.png", "type": {"chart": "box", "image": "box_h", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "505.5", "query": "According to this chart, what is the medium number of Group 2016 around?"}]}
{"id": 4005, "image": "./data/test/box/box_h/chart_1/image.png", "type": {"chart": "box", "image": "box_h", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a box chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of box chart."}]}
{"id": 4006, "image": "./data/test/box/box_h/chart_1/image.png", "type": {"chart": "box", "image": "box_h", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the medium Revenue (in thousands of dollars) number of Month May is around 275.0."}, {"label": "No", "query": "According to this chart, the medium Revenue (in thousands of dollars) number of Month May is around 299.5."}]}
{"id": 4007, "image": "./data/test/box/box_h/chart_1/image.png", "type": {"chart": "box", "image": "box_h", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the medium Revenue (in thousands of dollars) number of Month March is higher than January."}, {"label": "No", "query": "According to this chart, the medium Revenue (in thousands of dollars) number of Month January is higher than March."}]}
{"id": 4008, "image": "./data/test/box/box_h/chart_1/image.png", "type": {"chart": "box", "image": "box_h", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Month February has the highest medium Revenue (in thousands of dollars) number."}, {"label": "No", "query": "According to this chart, the Month January has the highest medium Revenue (in thousands of dollars) number."}]}
{"id": 4009, "image": "./data/test/box/box_h/chart_1/image.png", "type": {"chart": "box", "image": "box_h", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "236.0", "query": "According to this chart, what is the medium number of Group April around?"}]}
{"id": 4010, "image": "./data/test/box/box_h/chart_10/image.png", "type": {"chart": "box", "image": "box_h", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a box chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of box chart."}]}
{"id": 4011, "image": "./data/test/box/box_h/chart_10/image.png", "type": {"chart": "box", "image": "box_h", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the medium Churn Rate (in percentage) number of Month January is around 14.0."}, {"label": "No", "query": "According to this chart, the medium Churn Rate (in percentage) number of Month January is around 10.0."}]}
{"id": 4012, "image": "./data/test/box/box_h/chart_10/image.png", "type": {"chart": "box", "image": "box_h", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the medium Churn Rate (in percentage) number of Month January is higher than March."}, {"label": "No", "query": "According to this chart, the medium Churn Rate (in percentage) number of Month March is higher than January."}]}
{"id": 4013, "image": "./data/test/box/box_h/chart_10/image.png", "type": {"chart": "box", "image": "box_h", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Month January has the highest medium Churn Rate (in percentage) number."}, {"label": "No", "query": "According to this chart, the Month March has the highest medium Churn Rate (in percentage) number."}]}
{"id": 4014, "image": "./data/test/box/box_h/chart_10/image.png", "type": {"chart": "box", "image": "box_h", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "14.0", "query": "According to this chart, what is the medium number of Group January around?"}]}
{"id": 4015, "image": "./data/test/box/box_h/chart_11/image.png", "type": {"chart": "box", "image": "box_h", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a box chart, instead of scatter chart."}, {"label": "No", "query": "This graph is a scatter chart, instead of box chart."}]}
{"id": 4016, "image": "./data/test/box/box_h/chart_11/image.png", "type": {"chart": "box", "image": "box_h", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the medium Conversion Rate (in percentage) number of Year 2018 is around 1.0."}, {"label": "No", "query": "According to this chart, the medium Conversion Rate (in percentage) number of Year 2018 is around 1.0."}]}
{"id": 4017, "image": "./data/test/box/box_h/chart_11/image.png", "type": {"chart": "box", "image": "box_h", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the medium Conversion Rate (in percentage) number of Year 2016 is higher than 2019."}, {"label": "No", "query": "According to this chart, the medium Conversion Rate (in percentage) number of Year 2019 is higher than 2016."}]}
{"id": 4018, "image": "./data/test/box/box_h/chart_11/image.png", "type": {"chart": "box", "image": "box_h", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Year 2015 has the highest medium Conversion Rate (in percentage) number."}, {"label": "No", "query": "According to this chart, the Year 2018 has the highest medium Conversion Rate (in percentage) number."}]}
{"id": 4019, "image": "./data/test/box/box_h/chart_11/image.png", "type": {"chart": "box", "image": "box_h", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "1.0", "query": "According to this chart, what is the medium number of Group 2018 around?"}]}
{"id": 4020, "image": "./data/test/box/box_h/chart_12/image.png", "type": {"chart": "box", "image": "box_h", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a box chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of box chart."}]}
{"id": 4021, "image": "./data/test/box/box_h/chart_12/image.png", "type": {"chart": "box", "image": "box_h", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the medium Number of Downloads number of Month March is around 312.0."}, {"label": "No", "query": "According to this chart, the medium Number of Downloads number of Month March is around 697.0."}]}
{"id": 4022, "image": "./data/test/box/box_h/chart_12/image.png", "type": {"chart": "box", "image": "box_h", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the medium Number of Downloads number of Month May is higher than March."}, {"label": "No", "query": "According to this chart, the medium Number of Downloads number of Month March is higher than May."}]}
{"id": 4023, "image": "./data/test/box/box_h/chart_12/image.png", "type": {"chart": "box", "image": "box_h", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Month May has the highest medium Number of Downloads number."}, {"label": "No", "query": "According to this chart, the Month January has the highest medium Number of Downloads number."}]}
{"id": 4024, "image": "./data/test/box/box_h/chart_12/image.png", "type": {"chart": "box", "image": "box_h", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "634.5", "query": "According to this chart, what is the medium number of Group January around?"}]}
{"id": 4250, "image": "./data/test/box/box_v/chart_0/image.png", "type": {"chart": "box", "image": "box_v", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a box chart, instead of bar chart."}, {"label": "No", "query": "This graph is a bar chart, instead of box chart."}]}
{"id": 4251, "image": "./data/test/box/box_v/chart_0/image.png", "type": {"chart": "box", "image": "box_v", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the medium Rainfall (in millimeters) number of Year 2016 is around 505.5."}, {"label": "No", "query": "According to this chart, the medium Rainfall (in millimeters) number of Year 2016 is around 636.5."}]}
{"id": 4252, "image": "./data/test/box/box_v/chart_0/image.png", "type": {"chart": "box", "image": "box_v", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the medium Rainfall (in millimeters) number of Year 2017 is higher than 2018."}, {"label": "No", "query": "According to this chart, the medium Rainfall (in millimeters) number of Year 2018 is higher than 2017."}]}
{"id": 4253, "image": "./data/test/box/box_v/chart_0/image.png", "type": {"chart": "box", "image": "box_v", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Year 2017 has the highest medium Rainfall (in millimeters) number."}, {"label": "No", "query": "According to this chart, the Year 2015 has the highest medium Rainfall (in millimeters) number."}]}
{"id": 4254, "image": "./data/test/box/box_v/chart_0/image.png", "type": {"chart": "box", "image": "box_v", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "636.5", "query": "According to this chart, what is the medium number of Group 2015 around?"}]}
{"id": 4255, "image": "./data/test/box/box_v/chart_1/image.png", "type": {"chart": "box", "image": "box_v", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a box chart, instead of bar chart."}, {"label": "No", "query": "This graph is a bar chart, instead of box chart."}]}
{"id": 4256, "image": "./data/test/box/box_v/chart_1/image.png", "type": {"chart": "box", "image": "box_v", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the medium Revenue (in thousands of dollars) number of Month March is around 266.5."}, {"label": "No", "query": "According to this chart, the medium Revenue (in thousands of dollars) number of Month March is around 222.5."}]}
{"id": 4257, "image": "./data/test/box/box_v/chart_1/image.png", "type": {"chart": "box", "image": "box_v", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the medium Revenue (in thousands of dollars) number of Month May is higher than January."}, {"label": "No", "query": "According to this chart, the medium Revenue (in thousands of dollars) number of Month January is higher than May."}]}
{"id": 4258, "image": "./data/test/box/box_v/chart_1/image.png", "type": {"chart": "box", "image": "box_v", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Month February has the highest medium Revenue (in thousands of dollars) number."}, {"label": "No", "query": "According to this chart, the Month March has the highest medium Revenue (in thousands of dollars) number."}]}
{"id": 4259, "image": "./data/test/box/box_v/chart_1/image.png", "type": {"chart": "box", "image": "box_v", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "236.0", "query": "According to this chart, what is the medium number of Group April around?"}]}
{"id": 4260, "image": "./data/test/box/box_v/chart_10/image.png", "type": {"chart": "box", "image": "box_v", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a box chart, instead of line chart."}, {"label": "No", "query": "This graph is a line chart, instead of box chart."}]}
{"id": 4261, "image": "./data/test/box/box_v/chart_10/image.png", "type": {"chart": "box", "image": "box_v", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the medium Churn Rate (in percentage) number of Month May is around 7.0."}, {"label": "No", "query": "According to this chart, the medium Churn Rate (in percentage) number of Month May is around 10.0."}]}
{"id": 4262, "image": "./data/test/box/box_v/chart_10/image.png", "type": {"chart": "box", "image": "box_v", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the medium Churn Rate (in percentage) number of Month January is higher than March."}, {"label": "No", "query": "According to this chart, the medium Churn Rate (in percentage) number of Month March is higher than January."}]}
{"id": 4263, "image": "./data/test/box/box_v/chart_10/image.png", "type": {"chart": "box", "image": "box_v", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Month January has the highest medium Churn Rate (in percentage) number."}, {"label": "No", "query": "According to this chart, the Month April has the highest medium Churn Rate (in percentage) number."}]}
{"id": 4264, "image": "./data/test/box/box_v/chart_10/image.png", "type": {"chart": "box", "image": "box_v", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "14.0", "query": "According to this chart, what is the medium number of Group January around?"}]}
{"id": 4265, "image": "./data/test/box/box_v/chart_11/image.png", "type": {"chart": "box", "image": "box_v", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a box chart, instead of scatter chart."}, {"label": "No", "query": "This graph is a scatter chart, instead of box chart."}]}
{"id": 4266, "image": "./data/test/box/box_v/chart_11/image.png", "type": {"chart": "box", "image": "box_v", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the medium Conversion Rate (in percentage) number of Year 2015 is around 1.0."}, {"label": "No", "query": "According to this chart, the medium Conversion Rate (in percentage) number of Year 2015 is around 1.0."}]}
{"id": 4267, "image": "./data/test/box/box_v/chart_11/image.png", "type": {"chart": "box", "image": "box_v", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the medium Conversion Rate (in percentage) number of Year 2016 is higher than 2017."}, {"label": "No", "query": "According to this chart, the medium Conversion Rate (in percentage) number of Year 2017 is higher than 2016."}]}
{"id": 4268, "image": "./data/test/box/box_v/chart_11/image.png", "type": {"chart": "box", "image": "box_v", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Year 2015 has the highest medium Conversion Rate (in percentage) number."}, {"label": "No", "query": "According to this chart, the Year 2016 has the highest medium Conversion Rate (in percentage) number."}]}
{"id": 4269, "image": "./data/test/box/box_v/chart_11/image.png", "type": {"chart": "box", "image": "box_v", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "0.0", "query": "According to this chart, what is the medium number of Group 2019 around?"}]}
{"id": 4270, "image": "./data/test/box/box_v/chart_12/image.png", "type": {"chart": "box", "image": "box_v", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a box chart, instead of node_link chart."}, {"label": "No", "query": "This graph is a node_link chart, instead of box chart."}]}
{"id": 4271, "image": "./data/test/box/box_v/chart_12/image.png", "type": {"chart": "box", "image": "box_v", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the medium Number of Downloads number of Month May is around 697.0."}, {"label": "No", "query": "According to this chart, the medium Number of Downloads number of Month May is around 312.0."}]}
{"id": 4272, "image": "./data/test/box/box_v/chart_12/image.png", "type": {"chart": "box", "image": "box_v", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the medium Number of Downloads number of Month April is higher than March."}, {"label": "No", "query": "According to this chart, the medium Number of Downloads number of Month March is higher than April."}]}
{"id": 4273, "image": "./data/test/box/box_v/chart_12/image.png", "type": {"chart": "box", "image": "box_v", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Month May has the highest medium Number of Downloads number."}, {"label": "No", "query": "According to this chart, the Month April has the highest medium Number of Downloads number."}]}
{"id": 4274, "image": "./data/test/box/box_v/chart_12/image.png", "type": {"chart": "box", "image": "box_v", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "634.5", "query": "According to this chart, what is the medium number of Group January around?"}]}
{"id": 4500, "image": "./data/test/box/stock/chart_1/image.png", "type": {"chart": "box", "image": "stock", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a stock chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of stock chart."}]}
{"id": 4501, "image": "./data/test/box/stock/chart_1/image.png", "type": {"chart": "box", "image": "stock", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the lastest opening price of this stock is 232.00."}, {"label": "No", "query": "According to this chart, the lastest opening price of this stock is 260.61."}]}
{"id": 4502, "image": "./data/test/box/stock/chart_1/image.png", "type": {"chart": "box", "image": "stock", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the closing price of this stock on Sep 11 is 273.58."}, {"label": "No", "query": "According to this chart, the closing price of this stock on Sep 11 is 237.39."}]}
{"id": 4503, "image": "./data/test/box/stock/chart_1/image.png", "type": {"chart": "box", "image": "stock", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the lastest highest price of this stock is 237.39."}, {"label": "No", "query": "According to this chart, the lastest highest price of this stock is 260.61."}]}
{"id": 4504, "image": "./data/test/box/stock/chart_1/image.png", "type": {"chart": "box", "image": "stock", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "234.30", "query": "What is the lastest closing price of this stock?"}]}
{"id": 4505, "image": "./data/test/box/stock/chart_10/image.png", "type": {"chart": "box", "image": "stock", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a stock chart, instead of node_link chart."}, {"label": "No", "query": "This graph is a node_link chart, instead of stock chart."}]}
{"id": 4506, "image": "./data/test/box/stock/chart_10/image.png", "type": {"chart": "box", "image": "stock", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the lastest lowest price of this stock is 94.90."}, {"label": "No", "query": "According to this chart, the lastest lowest price of this stock is 80.62."}]}
{"id": 4507, "image": "./data/test/box/stock/chart_10/image.png", "type": {"chart": "box", "image": "stock", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the lastest opening price of this stock is 97.00."}, {"label": "No", "query": "According to this chart, the lastest opening price of this stock is 99.05."}]}
{"id": 4508, "image": "./data/test/box/stock/chart_10/image.png", "type": {"chart": "box", "image": "stock", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the lastest closing price of this stock is 99.05."}, {"label": "No", "query": "According to this chart, the lastest closing price of this stock is 97.00."}]}
{"id": 4509, "image": "./data/test/box/stock/chart_10/image.png", "type": {"chart": "box", "image": "stock", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "80.62", "query": "What is the closing price of this stock on Sep 11?"}]}
{"id": 4510, "image": "./data/test/box/stock/chart_11/image.png", "type": {"chart": "box", "image": "stock", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a stock chart, instead of bar chart."}, {"label": "No", "query": "This graph is a bar chart, instead of stock chart."}]}
{"id": 4511, "image": "./data/test/box/stock/chart_11/image.png", "type": {"chart": "box", "image": "stock", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the lowest price of this stock on Sep 18 is 15.07."}, {"label": "No", "query": "According to this chart, the lowest price of this stock on Sep 18 is 19.68."}]}
{"id": 4512, "image": "./data/test/box/stock/chart_11/image.png", "type": {"chart": "box", "image": "stock", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the lastest closing price of this stock is 20.49."}, {"label": "No", "query": "According to this chart, the lastest closing price of this stock is 19.68."}]}
{"id": 4513, "image": "./data/test/box/stock/chart_11/image.png", "type": {"chart": "box", "image": "stock", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the lowest price of this stock on Sep 18 is 15.07."}, {"label": "No", "query": "According to this chart, the lowest price of this stock on Sep 18 is 15.46."}]}
{"id": 4514, "image": "./data/test/box/stock/chart_11/image.png", "type": {"chart": "box", "image": "stock", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "20.58", "query": "What is the lastest highest price of this stock?"}]}
{"id": 4515, "image": "./data/test/box/stock/chart_12/image.png", "type": {"chart": "box", "image": "stock", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a stock chart, instead of area chart."}, {"label": "No", "query": "This graph is a area chart, instead of stock chart."}]}
{"id": 4516, "image": "./data/test/box/stock/chart_12/image.png", "type": {"chart": "box", "image": "stock", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the lastest closing price of this stock is 77.60."}, {"label": "No", "query": "According to this chart, the lastest closing price of this stock is 85.77."}]}
{"id": 4517, "image": "./data/test/box/stock/chart_12/image.png", "type": {"chart": "box", "image": "stock", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the highest price of this stock on Sep 25 is 87.27."}, {"label": "No", "query": "According to this chart, the highest price of this stock on Sep 25 is 85.88."}]}
{"id": 4518, "image": "./data/test/box/stock/chart_12/image.png", "type": {"chart": "box", "image": "stock", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the opening price of this stock on Sep 25 is 85.88."}, {"label": "No", "query": "According to this chart, the opening price of this stock on Sep 25 is 78.47."}]}
{"id": 4519, "image": "./data/test/box/stock/chart_12/image.png", "type": {"chart": "box", "image": "stock", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "85.88", "query": "What is the opening price of this stock on Sep 25?"}]}
{"id": 4520, "image": "./data/test/box/stock/chart_13/image.png", "type": {"chart": "box", "image": "stock", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a stock chart, instead of node_link chart."}, {"label": "No", "query": "This graph is a node_link chart, instead of stock chart."}]}
{"id": 4521, "image": "./data/test/box/stock/chart_13/image.png", "type": {"chart": "box", "image": "stock", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the lastest opening price of this stock is 137.82."}, {"label": "No", "query": "According to this chart, the lastest opening price of this stock is 136.70."}]}
{"id": 4522, "image": "./data/test/box/stock/chart_13/image.png", "type": {"chart": "box", "image": "stock", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the trading volume of this stock on Oct 9 is 16.599M."}, {"label": "No", "query": "According to this chart, the trading volume of this stock on Oct 9 is 138.00."}]}
{"id": 4523, "image": "./data/test/box/stock/chart_13/image.png", "type": {"chart": "box", "image": "stock", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the closing price of this stock on Oct 9 is 139.50."}, {"label": "No", "query": "According to this chart, the closing price of this stock on Oct 9 is 137.99."}]}
{"id": 4524, "image": "./data/test/box/stock/chart_13/image.png", "type": {"chart": "box", "image": "stock", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "16.599M", "query": "What is the trading volume of this stock on Oct 9?"}]}
{"id": 4750, "image": "./data/test/combination/bar_line/chart_0/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a combination chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of combination chart."}]}
{"id": 4751, "image": "./data/test/combination/bar_line/chart_0/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for USA, the Millions of Units Sold at Years 2016 is 120.0."}, {"label": "No", "query": "According to this chart, for USA, the Millions of Units Sold at Years 2016 is 180.0."}]}
{"id": 4752, "image": "./data/test/combination/bar_line/chart_0/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Millions of Units Sold of China is higher than USA at Years 2020."}, {"label": "No", "query": "According to this chart, the Millions of Units Sold of USA is higher than China at Years 2020."}]}
{"id": 4753, "image": "./data/test/combination/bar_line/chart_0/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the China has the highest Millions of Units Sold 300.0 at Years 2022."}, {"label": "No", "query": "According to this chart, the China has the highest Millions of Units Sold 300.0 at Years 2017."}]}
{"id": 4754, "image": "./data/test/combination/bar_line/chart_0/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "180.0", "query": "According to this chart, for USA, what is the Millions of Units Sold at Years 2019 around?"}]}
{"id": 4755, "image": "./data/test/combination/bar_line/chart_1/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a combination chart, instead of line chart."}, {"label": "No", "query": "This graph is a line chart, instead of combination chart."}]}
{"id": 4756, "image": "./data/test/combination/bar_line/chart_1/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for Coal, the Quadrillion BTUs at Years 2015 is 25.0."}, {"label": "No", "query": "According to this chart, for Coal, the Quadrillion BTUs at Years 2015 is 16.0."}]}
{"id": 4757, "image": "./data/test/combination/bar_line/chart_1/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Quadrillion BTUs of Natural Gas is higher than Coal at Years 2017."}, {"label": "No", "query": "According to this chart, the Quadrillion BTUs of Coal is higher than Natural Gas at Years 2017."}]}
{"id": 4758, "image": "./data/test/combination/bar_line/chart_1/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Natural Gas has the highest Quadrillion BTUs 48.0 at Years 2022."}, {"label": "No", "query": "According to this chart, the Natural Gas has the highest Quadrillion BTUs 48.0 at Years 2018."}]}
{"id": 4759, "image": "./data/test/combination/bar_line/chart_1/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "32.0", "query": "According to this chart, for Natural Gas, what is the Quadrillion BTUs at Years 2016 around?"}]}
{"id": 4760, "image": "./data/test/combination/bar_line/chart_10/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a combination chart, instead of area chart."}, {"label": "No", "query": "This graph is a area chart, instead of combination chart."}]}
{"id": 4761, "image": "./data/test/combination/bar_line/chart_10/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for China, the Millions of units at Years 2015 is 150.0."}, {"label": "No", "query": "According to this chart, for China, the Millions of units at Years 2015 is 200.0."}]}
{"id": 4762, "image": "./data/test/combination/bar_line/chart_10/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Millions of units of China is higher than USA at Years 2017."}, {"label": "No", "query": "According to this chart, the Millions of units of USA is higher than China at Years 2017."}]}
{"id": 4763, "image": "./data/test/combination/bar_line/chart_10/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the China has the highest Millions of units 325.0 at Years 2022."}, {"label": "No", "query": "According to this chart, the China has the highest Millions of units 325.0 at Years 2018."}]}
{"id": 4764, "image": "./data/test/combination/bar_line/chart_10/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "135.0", "query": "According to this chart, for USA, what is the Millions of units at Years 2018 around?"}]}
{"id": 4765, "image": "./data/test/combination/bar_line/chart_11/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a combination chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of combination chart."}]}
{"id": 4766, "image": "./data/test/combination/bar_line/chart_11/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for Brazil, the Millions of kilograms at Years 2017 is 6.0."}, {"label": "No", "query": "According to this chart, for Brazil, the Millions of kilograms at Years 2017 is 3.8."}]}
{"id": 4767, "image": "./data/test/combination/bar_line/chart_11/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Millions of kilograms of Brazil is higher than USA at Years 2012."}, {"label": "No", "query": "According to this chart, the Millions of kilograms of USA is higher than Brazil at Years 2012."}]}
{"id": 4768, "image": "./data/test/combination/bar_line/chart_11/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Brazil has the highest Millions of kilograms 6.0 at Years 2017."}, {"label": "No", "query": "According to this chart, the Brazil has the highest Millions of kilograms 6.0 at Years 2015."}]}
{"id": 4769, "image": "./data/test/combination/bar_line/chart_11/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "3.2", "query": "According to this chart, for USA, what is the Millions of kilograms at Years 2016 around?"}]}
{"id": 4770, "image": "./data/test/combination/bar_line/chart_12/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a combination chart, instead of box chart."}, {"label": "No", "query": "This graph is a box chart, instead of combination chart."}]}
{"id": 4771, "image": "./data/test/combination/bar_line/chart_12/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for China, the Terawatt hours at Years 2015 is 90.0."}, {"label": "No", "query": "According to this chart, for China, the Terawatt hours at Years 2015 is 45.0."}]}
{"id": 4772, "image": "./data/test/combination/bar_line/chart_12/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Terawatt hours of China is higher than USA at Years 2014."}, {"label": "No", "query": "According to this chart, the Terawatt hours of USA is higher than China at Years 2014."}]}
{"id": 4773, "image": "./data/test/combination/bar_line/chart_12/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the China has the highest Terawatt hours 130.0 at Years 2017."}, {"label": "No", "query": "According to this chart, the China has the highest Terawatt hours 130.0 at Years 2015."}]}
{"id": 4774, "image": "./data/test/combination/bar_line/chart_12/image.png", "type": {"chart": "combination", "image": "bar_line", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "50.0", "query": "According to this chart, for USA, what is the Terawatt hours at Years 2016 around?"}]}
{"id": 5000, "image": "./data/test/combination/line_line/chart_0/image.png", "type": {"chart": "combination", "image": "line_line", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a combination chart, instead of radar chart."}, {"label": "No", "query": "This graph is a radar chart, instead of combination chart."}]}
{"id": 5001, "image": "./data/test/combination/line_line/chart_0/image.png", "type": {"chart": "combination", "image": "line_line", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for India, the Millions of Units Sold at Years 2022 is 220.0."}, {"label": "No", "query": "According to this chart, for India, the Millions of Units Sold at Years 2022 is 80.0."}]}
{"id": 5002, "image": "./data/test/combination/line_line/chart_0/image.png", "type": {"chart": "combination", "image": "line_line", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Millions of Units Sold of India is higher than Brazil at Years 2020."}, {"label": "No", "query": "According to this chart, the Millions of Units Sold of Brazil is higher than India at Years 2020."}]}
{"id": 5003, "image": "./data/test/combination/line_line/chart_0/image.png", "type": {"chart": "combination", "image": "line_line", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the India has the highest Millions of Units Sold 220.0 at Years 2022."}, {"label": "No", "query": "According to this chart, the India has the highest Millions of Units Sold 220.0 at Years 2019."}]}
{"id": 5004, "image": "./data/test/combination/line_line/chart_0/image.png", "type": {"chart": "combination", "image": "line_line", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "100.0", "query": "According to this chart, for Brazil, what is the Millions of Units Sold at Years 2020 around?"}]}
{"id": 5005, "image": "./data/test/combination/line_line/chart_1/image.png", "type": {"chart": "combination", "image": "line_line", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a combination chart, instead of area chart."}, {"label": "No", "query": "This graph is a area chart, instead of combination chart."}]}
{"id": 5006, "image": "./data/test/combination/line_line/chart_1/image.png", "type": {"chart": "combination", "image": "line_line", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for Nuclear, the Quadrillion BTUs at Years 2015 is 10.0."}, {"label": "No", "query": "According to this chart, for Nuclear, the Quadrillion BTUs at Years 2015 is 14.0."}]}
{"id": 5007, "image": "./data/test/combination/line_line/chart_1/image.png", "type": {"chart": "combination", "image": "line_line", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Quadrillion BTUs of Renewables is higher than Nuclear at Years 2020."}, {"label": "No", "query": "According to this chart, the Quadrillion BTUs of Nuclear is higher than Renewables at Years 2020."}]}
{"id": 5008, "image": "./data/test/combination/line_line/chart_1/image.png", "type": {"chart": "combination", "image": "line_line", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Renewables has the highest Quadrillion BTUs 45.0 at Years 2022."}, {"label": "No", "query": "According to this chart, the Renewables has the highest Quadrillion BTUs 45.0 at Years 2015."}]}
{"id": 5009, "image": "./data/test/combination/line_line/chart_1/image.png", "type": {"chart": "combination", "image": "line_line", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "22.0", "query": "According to this chart, for Nuclear, what is the Quadrillion BTUs at Years 2021 around?"}]}
{"id": 5010, "image": "./data/test/combination/line_line/chart_10/image.png", "type": {"chart": "combination", "image": "line_line", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a combination chart, instead of radar chart."}, {"label": "No", "query": "This graph is a radar chart, instead of combination chart."}]}
{"id": 5011, "image": "./data/test/combination/line_line/chart_10/image.png", "type": {"chart": "combination", "image": "line_line", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for EU, the Millions of units at Years 2021 is 225.0."}, {"label": "No", "query": "According to this chart, for EU, the Millions of units at Years 2021 is 175.0."}]}
{"id": 5012, "image": "./data/test/combination/line_line/chart_10/image.png", "type": {"chart": "combination", "image": "line_line", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Millions of units of EU is higher than SE Asia at Years 2015."}, {"label": "No", "query": "According to this chart, the Millions of units of SE Asia is higher than EU at Years 2015."}]}
{"id": 5013, "image": "./data/test/combination/line_line/chart_10/image.png", "type": {"chart": "combination", "image": "line_line", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the EU has the highest Millions of units 250.0 at Years 2022."}, {"label": "No", "query": "According to this chart, the EU has the highest Millions of units 250.0 at Years 2017."}]}
{"id": 5014, "image": "./data/test/combination/line_line/chart_10/image.png", "type": {"chart": "combination", "image": "line_line", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "175.0", "query": "According to this chart, for EU, what is the Millions of units at Years 2016 around?"}]}
{"id": 5015, "image": "./data/test/combination/line_line/chart_11/image.png", "type": {"chart": "combination", "image": "line_line", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a combination chart, instead of line chart."}, {"label": "No", "query": "This graph is a line chart, instead of combination chart."}]}
{"id": 5016, "image": "./data/test/combination/line_line/chart_11/image.png", "type": {"chart": "combination", "image": "line_line", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for Japan, the Millions of kilograms at Years 2011 is 0.6."}, {"label": "No", "query": "According to this chart, for Japan, the Millions of kilograms at Years 2011 is 0.9."}]}
{"id": 5017, "image": "./data/test/combination/line_line/chart_11/image.png", "type": {"chart": "combination", "image": "line_line", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Millions of kilograms of Italy is higher than Japan at Years 2016."}, {"label": "No", "query": "According to this chart, the Millions of kilograms of Japan is higher than Italy at Years 2016."}]}
{"id": 5018, "image": "./data/test/combination/line_line/chart_11/image.png", "type": {"chart": "combination", "image": "line_line", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Italy has the highest Millions of kilograms 1.6 at Years 2017."}, {"label": "No", "query": "According to this chart, the Italy has the highest Millions of kilograms 1.6 at Years 2013."}]}
{"id": 5019, "image": "./data/test/combination/line_line/chart_11/image.png", "type": {"chart": "combination", "image": "line_line", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "1.6", "query": "According to this chart, for Italy, what is the Millions of kilograms at Years 2017 around?"}]}
{"id": 5020, "image": "./data/test/combination/line_line/chart_12/image.png", "type": {"chart": "combination", "image": "line_line", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a combination chart, instead of box chart."}, {"label": "No", "query": "This graph is a box chart, instead of combination chart."}]}
{"id": 5021, "image": "./data/test/combination/line_line/chart_12/image.png", "type": {"chart": "combination", "image": "line_line", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for Brazil, the Terawatt hours at Years 2015 is 13.0."}, {"label": "No", "query": "According to this chart, for Brazil, the Terawatt hours at Years 2015 is 7.0."}]}
{"id": 5022, "image": "./data/test/combination/line_line/chart_12/image.png", "type": {"chart": "combination", "image": "line_line", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Terawatt hours of India is higher than Brazil at Years 2011."}, {"label": "No", "query": "According to this chart, the Terawatt hours of Brazil is higher than India at Years 2011."}]}
{"id": 5023, "image": "./data/test/combination/line_line/chart_12/image.png", "type": {"chart": "combination", "image": "line_line", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the India has the highest Terawatt hours 25.0 at Years 2017."}, {"label": "No", "query": "According to this chart, the India has the highest Terawatt hours 25.0 at Years 2014."}]}
{"id": 5024, "image": "./data/test/combination/line_line/chart_12/image.png", "type": {"chart": "combination", "image": "line_line", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "11.0", "query": "According to this chart, for Brazil, what is the Terawatt hours at Years 2014 around?"}]}
{"id": 5250, "image": "./data/test/combination/pie_bar/chart_0/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a combination chart, instead of bar chart."}, {"label": "No", "query": "This graph is a bar chart, instead of combination chart."}]}
{"id": 5251, "image": "./data/test/combination/pie_bar/chart_0/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Years 2020 is 14.6%."}, {"label": "No", "query": "According to this chart, the percentage of Years 2020 is 15.98%."}]}
{"id": 5252, "image": "./data/test/combination/pie_bar/chart_0/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of China is higher than USA at Years 2022."}, {"label": "No", "query": "According to this chart, the percentage of USA is higher than China at Years 2022."}]}
{"id": 5253, "image": "./data/test/combination/pie_bar/chart_0/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the China has the highest percentage 300.0 at Years 2022."}, {"label": "No", "query": "According to this chart, the India has the highest percentage 300.0 at Years 2022."}]}
{"id": 5254, "image": "./data/test/combination/pie_bar/chart_0/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "17.4%", "query": "According to this chart, what is the percentage of Years 2022 around?"}]}
{"id": 5255, "image": "./data/test/combination/pie_bar/chart_1/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a combination chart, instead of line chart."}, {"label": "No", "query": "This graph is a line chart, instead of combination chart."}]}
{"id": 5256, "image": "./data/test/combination/pie_bar/chart_1/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Years 2015 is 9.82%."}, {"label": "No", "query": "According to this chart, the percentage of Years 2015 is 12.76%."}]}
{"id": 5257, "image": "./data/test/combination/pie_bar/chart_1/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Natural Gas is higher than Coal at Years 2022."}, {"label": "No", "query": "According to this chart, the percentage of Coal is higher than Natural Gas at Years 2022."}]}
{"id": 5258, "image": "./data/test/combination/pie_bar/chart_1/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Natural Gas has the highest percentage 48.0 at Years 2022."}, {"label": "No", "query": "According to this chart, the Nuclear has the highest percentage 48.0 at Years 2022."}]}
{"id": 5259, "image": "./data/test/combination/pie_bar/chart_1/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "9.8%", "query": "According to this chart, what is the percentage of Years 2015 around?"}]}
{"id": 5260, "image": "./data/test/combination/pie_bar/chart_10/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a combination chart, instead of scatter chart."}, {"label": "No", "query": "This graph is a scatter chart, instead of combination chart."}]}
{"id": 5261, "image": "./data/test/combination/pie_bar/chart_10/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Years 2016 is 10.48%."}, {"label": "No", "query": "According to this chart, the percentage of Years 2016 is 10.24%."}]}
{"id": 5262, "image": "./data/test/combination/pie_bar/chart_10/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of China is higher than USA at Years 2022."}, {"label": "No", "query": "According to this chart, the percentage of USA is higher than China at Years 2022."}]}
{"id": 5263, "image": "./data/test/combination/pie_bar/chart_10/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the China has the highest percentage 325.0 at Years 2022."}, {"label": "No", "query": "According to this chart, the SE Asia has the highest percentage 325.0 at Years 2022."}]}
{"id": 5264, "image": "./data/test/combination/pie_bar/chart_10/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "12.1%", "query": "According to this chart, what is the percentage of Years 2018 around?"}]}
{"id": 5265, "image": "./data/test/combination/pie_bar/chart_11/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a combination chart, instead of bar chart."}, {"label": "No", "query": "This graph is a bar chart, instead of combination chart."}]}
{"id": 5266, "image": "./data/test/combination/pie_bar/chart_11/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Years 2016 is 15.07%."}, {"label": "No", "query": "According to this chart, the percentage of Years 2016 is 12.97%."}]}
{"id": 5267, "image": "./data/test/combination/pie_bar/chart_11/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Brazil is higher than USA at Years 2017."}, {"label": "No", "query": "According to this chart, the percentage of USA is higher than Brazil at Years 2017."}]}
{"id": 5268, "image": "./data/test/combination/pie_bar/chart_11/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Brazil has the highest percentage 6.0 at Years 2017."}, {"label": "No", "query": "According to this chart, the Germany has the highest percentage 6.0 at Years 2017."}]}
{"id": 5269, "image": "./data/test/combination/pie_bar/chart_11/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "10.5%", "query": "According to this chart, what is the percentage of Years 2012 around?"}]}
{"id": 5270, "image": "./data/test/combination/pie_bar/chart_12/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a combination chart, instead of node_link chart."}, {"label": "No", "query": "This graph is a node_link chart, instead of combination chart."}]}
{"id": 5271, "image": "./data/test/combination/pie_bar/chart_12/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Years 2012 is 8.45%."}, {"label": "No", "query": "According to this chart, the percentage of Years 2012 is 6.95%."}]}
{"id": 5272, "image": "./data/test/combination/pie_bar/chart_12/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of China is higher than USA at Years 2017."}, {"label": "No", "query": "According to this chart, the percentage of USA is higher than China at Years 2017."}]}
{"id": 5273, "image": "./data/test/combination/pie_bar/chart_12/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the China has the highest percentage 130.0 at Years 2017."}, {"label": "No", "query": "According to this chart, the Brazil has the highest percentage 130.0 at Years 2017."}]}
{"id": 5274, "image": "./data/test/combination/pie_bar/chart_12/image.png", "type": {"chart": "combination", "image": "pie_bar", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "8.4%", "query": "According to this chart, what is the percentage of Years 2012 around?"}]}
{"id": 5500, "image": "./data/test/combination/pie_pie/chart_0/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a combination chart, instead of radar chart."}, {"label": "No", "query": "This graph is a radar chart, instead of combination chart."}]}
{"id": 5501, "image": "./data/test/combination/pie_pie/chart_0/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Years 2022 is 17.4%."}, {"label": "No", "query": "According to this chart, the percentage of Years 2022 is 7.5%."}]}
{"id": 5502, "image": "./data/test/combination/pie_pie/chart_0/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of China is higher than USA at Years 2022."}, {"label": "No", "query": "According to this chart, the percentage of USA is higher than China at Years 2022."}]}
{"id": 5503, "image": "./data/test/combination/pie_pie/chart_0/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the China has the highest percentage 34.1% at Years 2022."}, {"label": "No", "query": "According to this chart, the Brazil has the highest percentage 34.1% at Years 2022."}]}
{"id": 5504, "image": "./data/test/combination/pie_pie/chart_0/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "14.6%", "query": "According to this chart, what is the percentage of Years 2020 around?"}]}
{"id": 5505, "image": "./data/test/combination/pie_pie/chart_1/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a combination chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of combination chart."}]}
{"id": 5506, "image": "./data/test/combination/pie_pie/chart_1/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Years 2015 is 9.8%."}, {"label": "No", "query": "According to this chart, the percentage of Years 2015 is 12.8%."}]}
{"id": 5507, "image": "./data/test/combination/pie_pie/chart_1/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Natural Gas is higher than Coal at Years 2022."}, {"label": "No", "query": "According to this chart, the percentage of Coal is higher than Natural Gas at Years 2022."}]}
{"id": 5508, "image": "./data/test/combination/pie_pie/chart_1/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Natural Gas has the highest percentage 37.8% at Years 2022."}, {"label": "No", "query": "According to this chart, the Coal has the highest percentage 37.8% at Years 2022."}]}
{"id": 5509, "image": "./data/test/combination/pie_pie/chart_1/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "15.6%", "query": "According to this chart, what is the percentage of Years 2022 around?"}]}
{"id": 5510, "image": "./data/test/combination/pie_pie/chart_10/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a combination chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of combination chart."}]}
{"id": 5511, "image": "./data/test/combination/pie_pie/chart_10/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Years 2019 is 11.2%."}, {"label": "No", "query": "According to this chart, the percentage of Years 2019 is 15.9%."}]}
{"id": 5512, "image": "./data/test/combination/pie_pie/chart_10/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of China is higher than USA at Years 2022."}, {"label": "No", "query": "According to this chart, the percentage of USA is higher than China at Years 2022."}]}
{"id": 5513, "image": "./data/test/combination/pie_pie/chart_10/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the China has the highest percentage 28.9% at Years 2022."}, {"label": "No", "query": "According to this chart, the SE Asia has the highest percentage 28.9% at Years 2022."}]}
{"id": 5514, "image": "./data/test/combination/pie_pie/chart_10/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "15.9%", "query": "According to this chart, what is the percentage of Years 2021 around?"}]}
{"id": 5515, "image": "./data/test/combination/pie_pie/chart_11/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a combination chart, instead of node_link chart."}, {"label": "No", "query": "This graph is a node_link chart, instead of combination chart."}]}
{"id": 5516, "image": "./data/test/combination/pie_pie/chart_11/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Years 2015 is 13.0%."}, {"label": "No", "query": "According to this chart, the percentage of Years 2015 is 12.2%."}]}
{"id": 5517, "image": "./data/test/combination/pie_pie/chart_11/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Brazil is higher than USA at Years 2017."}, {"label": "No", "query": "According to this chart, the percentage of USA is higher than Brazil at Years 2017."}]}
{"id": 5518, "image": "./data/test/combination/pie_pie/chart_11/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Brazil has the highest percentage 42.9% at Years 2017."}, {"label": "No", "query": "According to this chart, the Japan has the highest percentage 42.9% at Years 2017."}]}
{"id": 5519, "image": "./data/test/combination/pie_pie/chart_11/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "17.3%", "query": "According to this chart, what is the percentage of Years 2017 around?"}]}
{"id": 5520, "image": "./data/test/combination/pie_pie/chart_12/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a combination chart, instead of area chart."}, {"label": "No", "query": "This graph is a area chart, instead of combination chart."}]}
{"id": 5521, "image": "./data/test/combination/pie_pie/chart_12/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Years 2017 is 21.9%."}, {"label": "No", "query": "According to this chart, the percentage of Years 2017 is 13.1%."}]}
{"id": 5522, "image": "./data/test/combination/pie_pie/chart_12/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of China is higher than USA at Years 2017."}, {"label": "No", "query": "According to this chart, the percentage of USA is higher than China at Years 2017."}]}
{"id": 5523, "image": "./data/test/combination/pie_pie/chart_12/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the China has the highest percentage 46.9% at Years 2017."}, {"label": "No", "query": "According to this chart, the USA has the highest percentage 46.9% at Years 2017."}]}
{"id": 5524, "image": "./data/test/combination/pie_pie/chart_12/image.png", "type": {"chart": "combination", "image": "pie_pie", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "21.9%", "query": "According to this chart, what is the percentage of Years 2017 around?"}]}
{"id": 5750, "image": "./data/test/line/line_err/chart_0/image.png", "type": {"chart": "line", "image": "line_err", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of scatter chart."}, {"label": "No", "query": "This graph is a scatter chart, instead of line chart."}]}
{"id": 5751, "image": "./data/test/line/line_err/chart_0/image.png", "type": {"chart": "line", "image": "line_err", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for Widget B, the mean value of Revenue at Month Feb is 440.00."}, {"label": "No", "query": "According to this chart, for Widget A, the mean value of Revenue at Month Feb is 440.00."}]}
{"id": 5752, "image": "./data/test/line/line_err/chart_0/image.png", "type": {"chart": "line", "image": "line_err", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Revenue standard deviation of Widget A is higher than Widget B at Month Jan."}, {"label": "No", "query": "According to this chart, the Revenue standard deviation of Widget B is higher than Widget A at Month Jan."}]}
{"id": 5753, "image": "./data/test/line/line_err/chart_0/image.png", "type": {"chart": "line", "image": "line_err", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Widget A has the highest mean Revenue value 623.33 at Month Apr."}, {"label": "No", "query": "According to this chart, the Widget A has the highest mean Revenue value 623.33 at Month Feb."}]}
{"id": 5754, "image": "./data/test/line/line_err/chart_0/image.png", "type": {"chart": "line", "image": "line_err", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "623.3", "query": "According to this chart, for Widget A, what is the mean value of Revenue at Month Apr?"}]}
{"id": 5755, "image": "./data/test/line/line_err/chart_1/image.png", "type": {"chart": "line", "image": "line_err", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of area chart."}, {"label": "No", "query": "This graph is a area chart, instead of line chart."}]}
{"id": 5756, "image": "./data/test/line/line_err/chart_1/image.png", "type": {"chart": "line", "image": "line_err", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for Los Angeles, the mean value of Temperature at Month Jan is 15.33."}, {"label": "No", "query": "According to this chart, for New York, the mean value of Temperature at Month Jan is 15.33."}]}
{"id": 5757, "image": "./data/test/line/line_err/chart_1/image.png", "type": {"chart": "line", "image": "line_err", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Temperature standard deviation of New York is higher than Los Angeles at Month Mar."}, {"label": "No", "query": "According to this chart, the Temperature standard deviation of Los Angeles is higher than New York at Month Mar."}]}
{"id": 5758, "image": "./data/test/line/line_err/chart_1/image.png", "type": {"chart": "line", "image": "line_err", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Los Angeles has the highest mean Temperature value 22.33 at Month Apr."}, {"label": "No", "query": "According to this chart, the Los Angeles has the highest mean Temperature value 22.33 at Month Jan."}]}
{"id": 5759, "image": "./data/test/line/line_err/chart_1/image.png", "type": {"chart": "line", "image": "line_err", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "9.7", "query": "According to this chart, for New York, what is the mean value of Temperature at Month Apr?"}]}
{"id": 5760, "image": "./data/test/line/line_err/chart_10/image.png", "type": {"chart": "line", "image": "line_err", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of combination chart."}, {"label": "No", "query": "This graph is a combination chart, instead of line chart."}]}
{"id": 5761, "image": "./data/test/line/line_err/chart_10/image.png", "type": {"chart": "line", "image": "line_err", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for Product B, the mean value of Revenue at Month Feb is 9.40."}, {"label": "No", "query": "According to this chart, for Product A, the mean value of Revenue at Month Feb is 9.40."}]}
{"id": 5762, "image": "./data/test/line/line_err/chart_10/image.png", "type": {"chart": "line", "image": "line_err", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Revenue standard deviation of Product A is higher than Product B at Month Jan."}, {"label": "No", "query": "According to this chart, the Revenue standard deviation of Product B is higher than Product A at Month Jan."}]}
{"id": 5763, "image": "./data/test/line/line_err/chart_10/image.png", "type": {"chart": "line", "image": "line_err", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Product A has the highest mean Revenue value 12.87 at Month Mar."}, {"label": "No", "query": "According to this chart, the Product A has the highest mean Revenue value 12.87 at Month Feb."}]}
{"id": 5764, "image": "./data/test/line/line_err/chart_10/image.png", "type": {"chart": "line", "image": "line_err", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "12.9", "query": "According to this chart, for Product A, what is the mean value of Revenue at Month Mar?"}]}
{"id": 5765, "image": "./data/test/line/line_err/chart_11/image.png", "type": {"chart": "line", "image": "line_err", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of line chart."}]}
{"id": 5766, "image": "./data/test/line/line_err/chart_11/image.png", "type": {"chart": "line", "image": "line_err", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for New York, the mean value of Temperature at Month 3 is 4.47."}, {"label": "No", "query": "According to this chart, for London, the mean value of Temperature at Month 3 is 4.47."}]}
{"id": 5767, "image": "./data/test/line/line_err/chart_11/image.png", "type": {"chart": "line", "image": "line_err", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Temperature standard deviation of Los Angeles is higher than London at Month 2."}, {"label": "No", "query": "According to this chart, the Temperature standard deviation of London is higher than Los Angeles at Month 2."}]}
{"id": 5768, "image": "./data/test/line/line_err/chart_11/image.png", "type": {"chart": "line", "image": "line_err", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Los Angeles has the highest mean Temperature value 17.23 at Month 3."}, {"label": "No", "query": "According to this chart, the Los Angeles has the highest mean Temperature value 17.23 at Month 2."}]}
{"id": 5769, "image": "./data/test/line/line_err/chart_11/image.png", "type": {"chart": "line", "image": "line_err", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "6.1", "query": "According to this chart, for London, what is the mean value of Temperature at Month 1?"}]}
{"id": 5770, "image": "./data/test/line/line_err/chart_12/image.png", "type": {"chart": "line", "image": "line_err", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of node_link chart."}, {"label": "No", "query": "This graph is a node_link chart, instead of line chart."}]}
{"id": 5771, "image": "./data/test/line/line_err/chart_12/image.png", "type": {"chart": "line", "image": "line_err", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for Apple Inc., the mean value of Stock Price at Month Jan is 150.18."}, {"label": "No", "query": "According to this chart, for Microsoft, the mean value of Stock Price at Month Jan is 150.18."}]}
{"id": 5772, "image": "./data/test/line/line_err/chart_12/image.png", "type": {"chart": "line", "image": "line_err", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Stock Price standard deviation of Amazon is higher than Apple Inc. at Month Jan."}, {"label": "No", "query": "According to this chart, the Stock Price standard deviation of Apple Inc. is higher than Amazon at Month Jan."}]}
{"id": 5773, "image": "./data/test/line/line_err/chart_12/image.png", "type": {"chart": "line", "image": "line_err", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Amazon has the highest mean Stock Price value 3323.60 at Month Mar."}, {"label": "No", "query": "According to this chart, the Amazon has the highest mean Stock Price value 3323.60 at Month Feb."}]}
{"id": 5774, "image": "./data/test/line/line_err/chart_12/image.png", "type": {"chart": "line", "image": "line_err", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "3323.6", "query": "According to this chart, for Amazon, what is the mean value of Stock Price at Month Mar?"}]}
{"id": 6000, "image": "./data/test/line/line_multi/chart_0/image.png", "type": {"chart": "line", "image": "line_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of line chart."}]}
{"id": 6001, "image": "./data/test/line/line_multi/chart_0/image.png", "type": {"chart": "line", "image": "line_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for USA, the Millions of Units Sold at Years 2022 is 240.0."}, {"label": "No", "query": "According to this chart, for USA, the Millions of Units Sold at Years 2022 is 220.0."}]}
{"id": 6002, "image": "./data/test/line/line_multi/chart_0/image.png", "type": {"chart": "line", "image": "line_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Millions of Units Sold of USA is higher than India at Years 2019."}, {"label": "No", "query": "According to this chart, the Millions of Units Sold of India is higher than USA at Years 2019."}]}
{"id": 6003, "image": "./data/test/line/line_multi/chart_0/image.png", "type": {"chart": "line", "image": "line_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the China has the highest Millions of Units Sold 300.0 at Years 2022."}, {"label": "No", "query": "According to this chart, the China has the highest Millions of Units Sold 300.0 at Years 2019."}]}
{"id": 6004, "image": "./data/test/line/line_multi/chart_0/image.png", "type": {"chart": "line", "image": "line_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "100.0", "query": "According to this chart, for India, what is the Millions of Units Sold at Years 2016?"}]}
{"id": 6005, "image": "./data/test/line/line_multi/chart_1/image.png", "type": {"chart": "line", "image": "line_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of bar chart."}, {"label": "No", "query": "This graph is a bar chart, instead of line chart."}]}
{"id": 6006, "image": "./data/test/line/line_multi/chart_1/image.png", "type": {"chart": "line", "image": "line_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for Nuclear, the Quadrillion BTUs at Years 2020 is 20.0."}, {"label": "No", "query": "According to this chart, for Nuclear, the Quadrillion BTUs at Years 2020 is 24.0."}]}
{"id": 6007, "image": "./data/test/line/line_multi/chart_1/image.png", "type": {"chart": "line", "image": "line_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Quadrillion BTUs of Renewables is higher than Coal at Years 2020."}, {"label": "No", "query": "According to this chart, the Quadrillion BTUs of Coal is higher than Renewables at Years 2020."}]}
{"id": 6008, "image": "./data/test/line/line_multi/chart_1/image.png", "type": {"chart": "line", "image": "line_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Natural Gas has the highest Quadrillion BTUs 48.0 at Years 2022."}, {"label": "No", "query": "According to this chart, the Natural Gas has the highest Quadrillion BTUs 48.0 at Years 2017."}]}
{"id": 6009, "image": "./data/test/line/line_multi/chart_1/image.png", "type": {"chart": "line", "image": "line_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "42.0", "query": "According to this chart, for Natural Gas, what is the Quadrillion BTUs at Years 2020?"}]}
{"id": 6010, "image": "./data/test/line/line_multi/chart_10/image.png", "type": {"chart": "line", "image": "line_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of radar chart."}, {"label": "No", "query": "This graph is a radar chart, instead of line chart."}]}
{"id": 6011, "image": "./data/test/line/line_multi/chart_10/image.png", "type": {"chart": "line", "image": "line_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for India, the Millions of units at Years 2016 is 90.0."}, {"label": "No", "query": "According to this chart, for India, the Millions of units at Years 2016 is 175.0."}]}
{"id": 6012, "image": "./data/test/line/line_multi/chart_10/image.png", "type": {"chart": "line", "image": "line_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Millions of units of USA is higher than India at Years 2017."}, {"label": "No", "query": "According to this chart, the Millions of units of India is higher than USA at Years 2017."}]}
{"id": 6013, "image": "./data/test/line/line_multi/chart_10/image.png", "type": {"chart": "line", "image": "line_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the China has the highest Millions of units 325.0 at Years 2022."}, {"label": "No", "query": "According to this chart, the China has the highest Millions of units 325.0 at Years 2021."}]}
{"id": 6014, "image": "./data/test/line/line_multi/chart_10/image.png", "type": {"chart": "line", "image": "line_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "200.0", "query": "According to this chart, for China, what is the Millions of units at Years 2016?"}]}
{"id": 6015, "image": "./data/test/line/line_multi/chart_11/image.png", "type": {"chart": "line", "image": "line_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of line chart."}]}
{"id": 6016, "image": "./data/test/line/line_multi/chart_11/image.png", "type": {"chart": "line", "image": "line_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for Italy, the Millions of kilograms at Years 2013 is 1.1."}, {"label": "No", "query": "According to this chart, for Italy, the Millions of kilograms at Years 2013 is 1.0."}]}
{"id": 6017, "image": "./data/test/line/line_multi/chart_11/image.png", "type": {"chart": "line", "image": "line_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Millions of kilograms of Brazil is higher than USA at Years 2017."}, {"label": "No", "query": "According to this chart, the Millions of kilograms of USA is higher than Brazil at Years 2017."}]}
{"id": 6018, "image": "./data/test/line/line_multi/chart_11/image.png", "type": {"chart": "line", "image": "line_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Brazil has the highest Millions of kilograms 6.0 at Years 2017."}, {"label": "No", "query": "According to this chart, the Brazil has the highest Millions of kilograms 6.0 at Years 2012."}]}
{"id": 6019, "image": "./data/test/line/line_multi/chart_11/image.png", "type": {"chart": "line", "image": "line_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "2.3", "query": "According to this chart, for USA, what is the Millions of kilograms at Years 2012?"}]}
{"id": 6020, "image": "./data/test/line/line_multi/chart_12/image.png", "type": {"chart": "line", "image": "line_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of scatter chart."}, {"label": "No", "query": "This graph is a scatter chart, instead of line chart."}]}
{"id": 6021, "image": "./data/test/line/line_multi/chart_12/image.png", "type": {"chart": "line", "image": "line_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for Brazil, the Terawatt hours at Years 2011 is 5.0."}, {"label": "No", "query": "According to this chart, for Brazil, the Terawatt hours at Years 2011 is 9.0."}]}
{"id": 6022, "image": "./data/test/line/line_multi/chart_12/image.png", "type": {"chart": "line", "image": "line_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Terawatt hours of USA is higher than Germany at Years 2017."}, {"label": "No", "query": "According to this chart, the Terawatt hours of Germany is higher than USA at Years 2017."}]}
{"id": 6023, "image": "./data/test/line/line_multi/chart_12/image.png", "type": {"chart": "line", "image": "line_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the China has the highest Terawatt hours 130.0 at Years 2017."}, {"label": "No", "query": "According to this chart, the China has the highest Terawatt hours 130.0 at Years 2010."}]}
{"id": 6024, "image": "./data/test/line/line_multi/chart_12/image.png", "type": {"chart": "line", "image": "line_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "90.0", "query": "According to this chart, for China, what is the Terawatt hours at Years 2015?"}]}
{"id": 6250, "image": "./data/test/line/line_multi_wi_anno/chart_0/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of area chart."}, {"label": "No", "query": "This graph is a area chart, instead of line chart."}]}
{"id": 6251, "image": "./data/test/line/line_multi_wi_anno/chart_0/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for USA, the Millions of Units Sold at Years 2022 is 240.0."}, {"label": "No", "query": "According to this chart, for USA, the Millions of Units Sold at Years 2022 is 180.0."}]}
{"id": 6252, "image": "./data/test/line/line_multi_wi_anno/chart_0/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Millions of Units Sold of India is higher than Brazil at Years 2015."}, {"label": "No", "query": "According to this chart, the Millions of Units Sold of Brazil is higher than India at Years 2015."}]}
{"id": 6253, "image": "./data/test/line/line_multi_wi_anno/chart_0/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the China has the highest Millions of Units Sold 300.0 at Years 2022."}, {"label": "No", "query": "According to this chart, the China has the highest Millions of Units Sold 300.0 at Years 2019."}]}
{"id": 6254, "image": "./data/test/line/line_multi_wi_anno/chart_0/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "240.0", "query": "According to this chart, for China, what is the Millions of Units Sold at Years 2019?"}]}
{"id": 6255, "image": "./data/test/line/line_multi_wi_anno/chart_1/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of line chart."}]}
{"id": 6256, "image": "./data/test/line/line_multi_wi_anno/chart_1/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for Renewables, the Quadrillion BTUs at Years 2022 is 45.0."}, {"label": "No", "query": "According to this chart, for Renewables, the Quadrillion BTUs at Years 2022 is 18.0."}]}
{"id": 6257, "image": "./data/test/line/line_multi_wi_anno/chart_1/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Quadrillion BTUs of Natural Gas is higher than Nuclear at Years 2018."}, {"label": "No", "query": "According to this chart, the Quadrillion BTUs of Nuclear is higher than Natural Gas at Years 2018."}]}
{"id": 6258, "image": "./data/test/line/line_multi_wi_anno/chart_1/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Natural Gas has the highest Quadrillion BTUs 48.0 at Years 2022."}, {"label": "No", "query": "According to this chart, the Natural Gas has the highest Quadrillion BTUs 48.0 at Years 2019."}]}
{"id": 6259, "image": "./data/test/line/line_multi_wi_anno/chart_1/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "32.0", "query": "According to this chart, for Natural Gas, what is the Quadrillion BTUs at Years 2016?"}]}
{"id": 6260, "image": "./data/test/line/line_multi_wi_anno/chart_10/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of scatter chart."}, {"label": "No", "query": "This graph is a scatter chart, instead of line chart."}]}
{"id": 6261, "image": "./data/test/line/line_multi_wi_anno/chart_10/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for USA, the Millions of units at Years 2020 is 150.0."}, {"label": "No", "query": "According to this chart, for USA, the Millions of units at Years 2020 is 130.0."}]}
{"id": 6262, "image": "./data/test/line/line_multi_wi_anno/chart_10/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Millions of units of China is higher than EU at Years 2020."}, {"label": "No", "query": "According to this chart, the Millions of units of EU is higher than China at Years 2020."}]}
{"id": 6263, "image": "./data/test/line/line_multi_wi_anno/chart_10/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the China has the highest Millions of units 325.0 at Years 2022."}, {"label": "No", "query": "According to this chart, the China has the highest Millions of units 325.0 at Years 2020."}]}
{"id": 6264, "image": "./data/test/line/line_multi_wi_anno/chart_10/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "115.0", "query": "According to this chart, for India, what is the Millions of units at Years 2019?"}]}
{"id": 6265, "image": "./data/test/line/line_multi_wi_anno/chart_11/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of box chart."}, {"label": "No", "query": "This graph is a box chart, instead of line chart."}]}
{"id": 6266, "image": "./data/test/line/line_multi_wi_anno/chart_11/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for Japan, the Millions of kilograms at Years 2013 is 0.8."}, {"label": "No", "query": "According to this chart, for Japan, the Millions of kilograms at Years 2013 is 1.1."}]}
{"id": 6267, "image": "./data/test/line/line_multi_wi_anno/chart_11/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Millions of kilograms of Brazil is higher than USA at Years 2011."}, {"label": "No", "query": "According to this chart, the Millions of kilograms of USA is higher than Brazil at Years 2011."}]}
{"id": 6268, "image": "./data/test/line/line_multi_wi_anno/chart_11/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Brazil has the highest Millions of kilograms 6.0 at Years 2017."}, {"label": "No", "query": "According to this chart, the Brazil has the highest Millions of kilograms 6.0 at Years 2016."}]}
{"id": 6269, "image": "./data/test/line/line_multi_wi_anno/chart_11/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "2.5", "query": "According to this chart, for USA, what is the Millions of kilograms at Years 2011?"}]}
{"id": 6270, "image": "./data/test/line/line_multi_wi_anno/chart_12/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of line chart."}]}
{"id": 6271, "image": "./data/test/line/line_multi_wi_anno/chart_12/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for Brazil, the Terawatt hours at Years 2013 is 9.0."}, {"label": "No", "query": "According to this chart, for Brazil, the Terawatt hours at Years 2013 is 13.0."}]}
{"id": 6272, "image": "./data/test/line/line_multi_wi_anno/chart_12/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Terawatt hours of China is higher than USA at Years 2013."}, {"label": "No", "query": "According to this chart, the Terawatt hours of USA is higher than China at Years 2013."}]}
{"id": 6273, "image": "./data/test/line/line_multi_wi_anno/chart_12/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the China has the highest Terawatt hours 130.0 at Years 2017."}, {"label": "No", "query": "According to this chart, the China has the highest Terawatt hours 130.0 at Years 2015."}]}
{"id": 6274, "image": "./data/test/line/line_multi_wi_anno/chart_12/image.png", "type": {"chart": "line", "image": "line_multi_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "40.0", "query": "According to this chart, for China, what is the Terawatt hours at Years 2011?"}]}
{"id": 6500, "image": "./data/test/line/line_single/chart_0/image.png", "type": {"chart": "line", "image": "line_single", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of line chart."}]}
{"id": 6501, "image": "./data/test/line/line_single/chart_0/image.png", "type": {"chart": "line", "image": "line_single", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Vehicles in Thousands of Years 2017 is around 120.0."}, {"label": "No", "query": "According to this chart, the Number of Vehicles in Thousands of Years 2017 is around 1000.0."}]}
{"id": 6502, "image": "./data/test/line/line_single/chart_0/image.png", "type": {"chart": "line", "image": "line_single", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Vehicles in Thousands of Years 2016 is higher than Years 2015."}, {"label": "No", "query": "According to this chart, the Number of Vehicles in Thousands of Years 2015 is higher than Years 2016."}]}
{"id": 6503, "image": "./data/test/line/line_single/chart_0/image.png", "type": {"chart": "line", "image": "line_single", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Years 2022 has the highest Number of Vehicles in Thousands."}, {"label": "No", "query": "According to this chart, the Years 2021 has the highest Number of Vehicles in Thousands."}]}
{"id": 6504, "image": "./data/test/line/line_single/chart_0/image.png", "type": {"chart": "line", "image": "line_single", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "120.0", "query": "According to this chart, what is the Number of Vehicles in Thousands of Years 2017 around?"}]}
{"id": 6505, "image": "./data/test/line/line_single/chart_1/image.png", "type": {"chart": "line", "image": "line_single", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of scatter chart."}, {"label": "No", "query": "This graph is a scatter chart, instead of line chart."}]}
{"id": 6506, "image": "./data/test/line/line_single/chart_1/image.png", "type": {"chart": "line", "image": "line_single", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Users in Millions of Years 2010 is around 500.0."}, {"label": "No", "query": "According to this chart, the Number of Users in Millions of Years 2010 is around 1000.0."}]}
{"id": 6507, "image": "./data/test/line/line_single/chart_1/image.png", "type": {"chart": "line", "image": "line_single", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Users in Millions of Years 2020 is higher than Years 2016."}, {"label": "No", "query": "According to this chart, the Number of Users in Millions of Years 2016 is higher than Years 2020."}]}
{"id": 6508, "image": "./data/test/line/line_single/chart_1/image.png", "type": {"chart": "line", "image": "line_single", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Years 2022 has the highest Number of Users in Millions."}, {"label": "No", "query": "According to this chart, the Years 2020 has the highest Number of Users in Millions."}]}
{"id": 6509, "image": "./data/test/line/line_single/chart_1/image.png", "type": {"chart": "line", "image": "line_single", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "2000.0", "query": "According to this chart, what is the Number of Users in Millions of Years 2014 around?"}]}
{"id": 6510, "image": "./data/test/line/line_single/chart_10/image.png", "type": {"chart": "line", "image": "line_single", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of radar chart."}, {"label": "No", "query": "This graph is a radar chart, instead of line chart."}]}
{"id": 6511, "image": "./data/test/line/line_single/chart_10/image.png", "type": {"chart": "line", "image": "line_single", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Units Sold of Months Oct is around 230.0."}, {"label": "No", "query": "According to this chart, the Number of Units Sold of Months Oct is around 180.0."}]}
{"id": 6512, "image": "./data/test/line/line_single/chart_10/image.png", "type": {"chart": "line", "image": "line_single", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Units Sold of Months Aug is higher than Months Jun."}, {"label": "No", "query": "According to this chart, the Number of Units Sold of Months Jun is higher than Months Aug."}]}
{"id": 6513, "image": "./data/test/line/line_single/chart_10/image.png", "type": {"chart": "line", "image": "line_single", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Months Aug has the highest Number of Units Sold."}, {"label": "No", "query": "According to this chart, the Months Jul has the highest Number of Units Sold."}]}
{"id": 6514, "image": "./data/test/line/line_single/chart_10/image.png", "type": {"chart": "line", "image": "line_single", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "180.0", "query": "According to this chart, what is the Number of Units Sold of Months Dec around?"}]}
{"id": 6515, "image": "./data/test/line/line_single/chart_11/image.png", "type": {"chart": "line", "image": "line_single", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of line chart."}]}
{"id": 6516, "image": "./data/test/line/line_single/chart_11/image.png", "type": {"chart": "line", "image": "line_single", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the AQI of Months Dec is around 70.0."}, {"label": "No", "query": "According to this chart, the AQI of Months Dec is around 120.0."}]}
{"id": 6517, "image": "./data/test/line/line_single/chart_11/image.png", "type": {"chart": "line", "image": "line_single", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the AQI of Months Sep is higher than Months May."}, {"label": "No", "query": "According to this chart, the AQI of Months May is higher than Months Sep."}]}
{"id": 6518, "image": "./data/test/line/line_single/chart_11/image.png", "type": {"chart": "line", "image": "line_single", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Months Jul has the highest AQI."}, {"label": "No", "query": "According to this chart, the Months Apr has the highest AQI."}]}
{"id": 6519, "image": "./data/test/line/line_single/chart_11/image.png", "type": {"chart": "line", "image": "line_single", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "120.0", "query": "According to this chart, what is the AQI of Months May around?"}]}
{"id": 6520, "image": "./data/test/line/line_single/chart_12/image.png", "type": {"chart": "line", "image": "line_single", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of combination chart."}, {"label": "No", "query": "This graph is a combination chart, instead of line chart."}]}
{"id": 6521, "image": "./data/test/line/line_single/chart_12/image.png", "type": {"chart": "line", "image": "line_single", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Visits in Thousands of Months Dec is around 1050.0."}, {"label": "No", "query": "According to this chart, the Number of Visits in Thousands of Months Dec is around 650.0."}]}
{"id": 6522, "image": "./data/test/line/line_single/chart_12/image.png", "type": {"chart": "line", "image": "line_single", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Visits in Thousands of Months Jul is higher than Months Feb."}, {"label": "No", "query": "According to this chart, the Number of Visits in Thousands of Months Feb is higher than Months Jul."}]}
{"id": 6523, "image": "./data/test/line/line_single/chart_12/image.png", "type": {"chart": "line", "image": "line_single", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Months Dec has the highest Number of Visits in Thousands."}, {"label": "No", "query": "According to this chart, the Months Feb has the highest Number of Visits in Thousands."}]}
{"id": 6524, "image": "./data/test/line/line_single/chart_12/image.png", "type": {"chart": "line", "image": "line_single", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "850.0", "query": "According to this chart, what is the Number of Visits in Thousands of Months Aug around?"}]}
{"id": 6750, "image": "./data/test/line/line_single_wi_anno/chart_0/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of line chart."}]}
{"id": 6751, "image": "./data/test/line/line_single_wi_anno/chart_0/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Vehicles in Thousands of Years 2021 is around 650.0."}, {"label": "No", "query": "According to this chart, the Number of Vehicles in Thousands of Years 2021 is around 50.0."}]}
{"id": 6752, "image": "./data/test/line/line_single_wi_anno/chart_0/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Vehicles in Thousands of Years 2022 is higher than Years 2019."}, {"label": "No", "query": "According to this chart, the Number of Vehicles in Thousands of Years 2019 is higher than Years 2022."}]}
{"id": 6753, "image": "./data/test/line/line_single_wi_anno/chart_0/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Years 2022 has the highest Number of Vehicles in Thousands."}, {"label": "No", "query": "According to this chart, the Years 2016 has the highest Number of Vehicles in Thousands."}]}
{"id": 6754, "image": "./data/test/line/line_single_wi_anno/chart_0/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "650.0", "query": "According to this chart, what is the Number of Vehicles in Thousands of Years 2021 around?"}]}
{"id": 6755, "image": "./data/test/line/line_single_wi_anno/chart_1/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of area chart."}, {"label": "No", "query": "This graph is a area chart, instead of line chart."}]}
{"id": 6756, "image": "./data/test/line/line_single_wi_anno/chart_1/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Users in Millions of Years 2014 is around 2000.0."}, {"label": "No", "query": "According to this chart, the Number of Users in Millions of Years 2014 is around 1000.0."}]}
{"id": 6757, "image": "./data/test/line/line_single_wi_anno/chart_1/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Users in Millions of Years 2020 is higher than Years 2010."}, {"label": "No", "query": "According to this chart, the Number of Users in Millions of Years 2010 is higher than Years 2020."}]}
{"id": 6758, "image": "./data/test/line/line_single_wi_anno/chart_1/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Years 2022 has the highest Number of Users in Millions."}, {"label": "No", "query": "According to this chart, the Years 2016 has the highest Number of Users in Millions."}]}
{"id": 6759, "image": "./data/test/line/line_single_wi_anno/chart_1/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "2000.0", "query": "According to this chart, what is the Number of Users in Millions of Years 2014 around?"}]}
{"id": 6760, "image": "./data/test/line/line_single_wi_anno/chart_10/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of bar chart."}, {"label": "No", "query": "This graph is a bar chart, instead of line chart."}]}
{"id": 6761, "image": "./data/test/line/line_single_wi_anno/chart_10/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Units Sold of Months Oct is around 230.0."}, {"label": "No", "query": "According to this chart, the Number of Units Sold of Months Oct is around 100.0."}]}
{"id": 6762, "image": "./data/test/line/line_single_wi_anno/chart_10/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Units Sold of Months Dec is higher than Months Jan."}, {"label": "No", "query": "According to this chart, the Number of Units Sold of Months Jan is higher than Months Dec."}]}
{"id": 6763, "image": "./data/test/line/line_single_wi_anno/chart_10/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Months Aug has the highest Number of Units Sold."}, {"label": "No", "query": "According to this chart, the Months May has the highest Number of Units Sold."}]}
{"id": 6764, "image": "./data/test/line/line_single_wi_anno/chart_10/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "280.0", "query": "According to this chart, what is the Number of Units Sold of Months Aug around?"}]}
{"id": 6765, "image": "./data/test/line/line_single_wi_anno/chart_11/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of line chart."}]}
{"id": 6766, "image": "./data/test/line/line_single_wi_anno/chart_11/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the AQI of Months Nov is around 80.0."}, {"label": "No", "query": "According to this chart, the AQI of Months Nov is around 160.0."}]}
{"id": 6767, "image": "./data/test/line/line_single_wi_anno/chart_11/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the AQI of Months Mar is higher than Months Dec."}, {"label": "No", "query": "According to this chart, the AQI of Months Dec is higher than Months Mar."}]}
{"id": 6768, "image": "./data/test/line/line_single_wi_anno/chart_11/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Months Jul has the highest AQI."}, {"label": "No", "query": "According to this chart, the Months Sep has the highest AQI."}]}
{"id": 6769, "image": "./data/test/line/line_single_wi_anno/chart_11/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "100.0", "query": "According to this chart, what is the AQI of Months Apr around?"}]}
{"id": 6770, "image": "./data/test/line/line_single_wi_anno/chart_12/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a line chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of line chart."}]}
{"id": 6771, "image": "./data/test/line/line_single_wi_anno/chart_12/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Visits in Thousands of Months Apr is around 650.0."}, {"label": "No", "query": "According to this chart, the Number of Visits in Thousands of Months Apr is around 1000.0."}]}
{"id": 6772, "image": "./data/test/line/line_single_wi_anno/chart_12/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Number of Visits in Thousands of Months Dec is higher than Months Jul."}, {"label": "No", "query": "According to this chart, the Number of Visits in Thousands of Months Jul is higher than Months Dec."}]}
{"id": 6773, "image": "./data/test/line/line_single_wi_anno/chart_12/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Months Dec has the highest Number of Visits in Thousands."}, {"label": "No", "query": "According to this chart, the Months Nov has the highest Number of Visits in Thousands."}]}
{"id": 6774, "image": "./data/test/line/line_single_wi_anno/chart_12/image.png", "type": {"chart": "line", "image": "line_single_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "850.0", "query": "According to this chart, what is the Number of Visits in Thousands of Months Aug around?"}]}
{"id": 7000, "image": "./data/test/node_link/node_link_dir/chart_0/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a node_link chart, instead of radar chart."}, {"label": "No", "query": "This graph is a radar chart, instead of node_link chart."}]}
{"id": 7001, "image": "./data/test/node_link/node_link_dir/chart_0/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node User D does not point to node User A."}, {"label": "No", "query": "According to this chart, the node User D points to node User A."}]}
{"id": 7002, "image": "./data/test/node_link/node_link_dir/chart_0/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node User E points to node User G."}, {"label": "No", "query": "According to this chart, the node User E does not point to node User G."}]}
{"id": 7003, "image": "./data/test/node_link/node_link_dir/chart_0/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node User F does not point to node User G."}, {"label": "No", "query": "According to this chart, the node User F points to node User G."}]}
{"id": 7004, "image": "./data/test/node_link/node_link_dir/chart_0/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "Yes", "query": "According to this chart, the User E does not point to User F, yes or no?"}]}
{"id": 7005, "image": "./data/test/node_link/node_link_dir/chart_1/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a node_link chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of node_link chart."}]}
{"id": 7006, "image": "./data/test/node_link/node_link_dir/chart_1/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Manager 3 does not point to node CEO."}, {"label": "No", "query": "According to this chart, the node Manager 3 points to node CEO."}]}
{"id": 7007, "image": "./data/test/node_link/node_link_dir/chart_1/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Manager 2 does not point to node Employee F."}, {"label": "No", "query": "According to this chart, the node Manager 2 points to node Employee F."}]}
{"id": 7008, "image": "./data/test/node_link/node_link_dir/chart_1/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Employee D does not point to node Manager 1."}, {"label": "No", "query": "According to this chart, the node Employee D points to node Manager 1."}]}
{"id": 7009, "image": "./data/test/node_link/node_link_dir/chart_1/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Employee F does not point to Employee A, yes or no?"}]}
{"id": 7010, "image": "./data/test/node_link/node_link_dir/chart_10/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a node_link chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of node_link chart."}]}
{"id": 7011, "image": "./data/test/node_link/node_link_dir/chart_10/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Customer C points to node Product 1."}, {"label": "No", "query": "According to this chart, the node Customer C does not point to node Product 1."}]}
{"id": 7012, "image": "./data/test/node_link/node_link_dir/chart_10/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Product 6 does not point to node Product 5."}, {"label": "No", "query": "According to this chart, the node Product 6 points to node Product 5."}]}
{"id": 7013, "image": "./data/test/node_link/node_link_dir/chart_10/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Product 4 does not point to node Product 3."}, {"label": "No", "query": "According to this chart, the node Product 4 points to node Product 3."}]}
{"id": 7014, "image": "./data/test/node_link/node_link_dir/chart_10/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Product 3 does not point to Product 6, yes or no?"}]}
{"id": 7015, "image": "./data/test/node_link/node_link_dir/chart_11/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a node_link chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of node_link chart."}]}
{"id": 7016, "image": "./data/test/node_link/node_link_dir/chart_11/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Task 7 does not point to node Task 3."}, {"label": "No", "query": "According to this chart, the node Task 7 points to node Task 3."}]}
{"id": 7017, "image": "./data/test/node_link/node_link_dir/chart_11/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Task 2 does not point to node Task 6."}, {"label": "No", "query": "According to this chart, the node Task 2 points to node Task 6."}]}
{"id": 7018, "image": "./data/test/node_link/node_link_dir/chart_11/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Task 6 does not point to node Task 2."}, {"label": "No", "query": "According to this chart, the node Task 6 points to node Task 2."}]}
{"id": 7019, "image": "./data/test/node_link/node_link_dir/chart_11/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "No", "query": "According to this chart, the Task 4 points to Task 8, yes or no?"}]}
{"id": 7020, "image": "./data/test/node_link/node_link_dir/chart_12/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a node_link chart, instead of bar chart."}, {"label": "No", "query": "This graph is a bar chart, instead of node_link chart."}]}
{"id": 7021, "image": "./data/test/node_link/node_link_dir/chart_12/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Musician H does not point to node Musician F."}, {"label": "No", "query": "According to this chart, the node Musician H points to node Musician F."}]}
{"id": 7022, "image": "./data/test/node_link/node_link_dir/chart_12/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Musician I does not point to node Musician G."}, {"label": "No", "query": "According to this chart, the node Musician I points to node Musician G."}]}
{"id": 7023, "image": "./data/test/node_link/node_link_dir/chart_12/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Musician I does not point to node Musician E."}, {"label": "No", "query": "According to this chart, the node Musician I points to node Musician E."}]}
{"id": 7024, "image": "./data/test/node_link/node_link_dir/chart_12/image.png", "type": {"chart": "node_link", "image": "node_link_dir", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "No", "query": "According to this chart, the Musician F does not point to Musician G, yes or no?"}]}
{"id": 7250, "image": "./data/test/node_link/node_link_undir/chart_0/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a node_link chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of node_link chart."}]}
{"id": 7251, "image": "./data/test/node_link/node_link_undir/chart_0/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node User H does not connect to node User G."}, {"label": "No", "query": "According to this chart, the node User H connects to node User G."}]}
{"id": 7252, "image": "./data/test/node_link/node_link_undir/chart_0/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node User E does not connect to node User H."}, {"label": "No", "query": "According to this chart, the node User E connects to node User H."}]}
{"id": 7253, "image": "./data/test/node_link/node_link_undir/chart_0/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node User D does not connect to node User C."}, {"label": "No", "query": "According to this chart, the node User D connects to node User C."}]}
{"id": 7254, "image": "./data/test/node_link/node_link_undir/chart_0/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "Yes", "query": "According to this chart, the User F does not connect to User C, yes or no?"}]}
{"id": 7255, "image": "./data/test/node_link/node_link_undir/chart_1/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a node_link chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of node_link chart."}]}
{"id": 7256, "image": "./data/test/node_link/node_link_undir/chart_1/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Employee C does not connect to node Manager 3."}, {"label": "No", "query": "According to this chart, the node Employee C connects to node Manager 3."}]}
{"id": 7257, "image": "./data/test/node_link/node_link_undir/chart_1/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Manager 3 does not connect to node Employee D."}, {"label": "No", "query": "According to this chart, the node Manager 3 connects to node Employee D."}]}
{"id": 7258, "image": "./data/test/node_link/node_link_undir/chart_1/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Employee D does not connect to node Employee A."}, {"label": "No", "query": "According to this chart, the node Employee D connects to node Employee A."}]}
{"id": 7259, "image": "./data/test/node_link/node_link_undir/chart_1/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Employee E does not connect to Employee D, yes or no?"}]}
{"id": 7260, "image": "./data/test/node_link/node_link_undir/chart_10/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a node_link chart, instead of line chart."}, {"label": "No", "query": "This graph is a line chart, instead of node_link chart."}]}
{"id": 7261, "image": "./data/test/node_link/node_link_undir/chart_10/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Product 5 connects to node Product 6."}, {"label": "No", "query": "According to this chart, the node Product 5 does not connect to node Product 6."}]}
{"id": 7262, "image": "./data/test/node_link/node_link_undir/chart_10/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Customer C does not connect to node Customer B."}, {"label": "No", "query": "According to this chart, the node Customer C connects to node Customer B."}]}
{"id": 7263, "image": "./data/test/node_link/node_link_undir/chart_10/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Product 1 does not connect to node Product 3."}, {"label": "No", "query": "According to this chart, the node Product 1 connects to node Product 3."}]}
{"id": 7264, "image": "./data/test/node_link/node_link_undir/chart_10/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Customer C connects to Product 4, yes or no?"}]}
{"id": 7265, "image": "./data/test/node_link/node_link_undir/chart_11/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a node_link chart, instead of bar chart."}, {"label": "No", "query": "This graph is a bar chart, instead of node_link chart."}]}
{"id": 7266, "image": "./data/test/node_link/node_link_undir/chart_11/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Task 10 does not connect to node Task 3."}, {"label": "No", "query": "According to this chart, the node Task 10 connects to node Task 3."}]}
{"id": 7267, "image": "./data/test/node_link/node_link_undir/chart_11/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Task 2 connects to node Task 4."}, {"label": "No", "query": "According to this chart, the node Task 2 does not connect to node Task 4."}]}
{"id": 7268, "image": "./data/test/node_link/node_link_undir/chart_11/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Task 5 does not connect to node Task 1."}, {"label": "No", "query": "According to this chart, the node Task 5 connects to node Task 1."}]}
{"id": 7269, "image": "./data/test/node_link/node_link_undir/chart_11/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "No", "query": "According to this chart, the Task 5 connects to Task 8, yes or no?"}]}
{"id": 7270, "image": "./data/test/node_link/node_link_undir/chart_12/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a node_link chart, instead of box chart."}, {"label": "No", "query": "This graph is a box chart, instead of node_link chart."}]}
{"id": 7271, "image": "./data/test/node_link/node_link_undir/chart_12/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Musician F does not connect to node Musician I."}, {"label": "No", "query": "According to this chart, the node Musician F connects to node Musician I."}]}
{"id": 7272, "image": "./data/test/node_link/node_link_undir/chart_12/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Musician I does not connect to node Musician D."}, {"label": "No", "query": "According to this chart, the node Musician I connects to node Musician D."}]}
{"id": 7273, "image": "./data/test/node_link/node_link_undir/chart_12/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the node Musician I does not connect to node Musician C."}, {"label": "No", "query": "According to this chart, the node Musician I connects to node Musician C."}]}
{"id": 7274, "image": "./data/test/node_link/node_link_undir/chart_12/image.png", "type": {"chart": "node_link", "image": "node_link_undir", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Musician D does not connect to Musician A, yes or no?"}]}
{"id": 7500, "image": "./data/test/pie/InteSun/chart_0/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of box chart."}, {"label": "No", "query": "This graph is a box chart, instead of pie chart."}]}
{"id": 7501, "image": "./data/test/pie/InteSun/chart_0/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Appliances is 6.58%."}, {"label": "No", "query": "According to this chart, the percentage of Appliances is 5.92%."}]}
{"id": 7502, "image": "./data/test/pie/InteSun/chart_0/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Electronics is higher than Home & Kitchen."}, {"label": "No", "query": "According to this chart, the percentage of Home & Kitchen is higher than Electronics."}]}
{"id": 7503, "image": "./data/test/pie/InteSun/chart_0/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Smartphones has the highest percentage 16.45%."}, {"label": "No", "query": "According to this chart, the Decor has the highest percentage 16.45%."}]}
{"id": 7504, "image": "./data/test/pie/InteSun/chart_0/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "11.8%", "query": "According to this chart, what is the percentage of Men's Apparel around?"}]}
{"id": 7505, "image": "./data/test/pie/InteSun/chart_1/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of combination chart."}, {"label": "No", "query": "This graph is a combination chart, instead of pie chart."}]}
{"id": 7506, "image": "./data/test/pie/InteSun/chart_1/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Tesla is 4.41%."}, {"label": "No", "query": "According to this chart, the percentage of Tesla is 6.62%."}]}
{"id": 7507, "image": "./data/test/pie/InteSun/chart_1/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of European Brands is higher than American Brands."}, {"label": "No", "query": "According to this chart, the percentage of American Brands is higher than European Brands."}]}
{"id": 7508, "image": "./data/test/pie/InteSun/chart_1/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Toyota has the highest percentage 22.06%."}, {"label": "No", "query": "According to this chart, the Volkswagen has the highest percentage 22.06%."}]}
{"id": 7509, "image": "./data/test/pie/InteSun/chart_1/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "5.1%", "query": "According to this chart, what is the percentage of Mercedes-Benz around?"}]}
{"id": 7510, "image": "./data/test/pie/InteSun/chart_10/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of box chart."}, {"label": "No", "query": "This graph is a box chart, instead of pie chart."}]}
{"id": 7511, "image": "./data/test/pie/InteSun/chart_10/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Popcorn Chicken is 3.59%."}, {"label": "No", "query": "According to this chart, the percentage of Popcorn Chicken is 11.98%."}]}
{"id": 7512, "image": "./data/test/pie/InteSun/chart_10/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of McDonald's is higher than Burger King."}, {"label": "No", "query": "According to this chart, the percentage of Burger King is higher than McDonald's."}]}
{"id": 7513, "image": "./data/test/pie/InteSun/chart_10/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the McDonald's has the highest percentage 23.95%."}, {"label": "No", "query": "According to this chart, the Original Recipe Chicken has the highest percentage 23.95%."}]}
{"id": 7514, "image": "./data/test/pie/InteSun/chart_10/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "18.0%", "query": "According to this chart, what is the percentage of Burger King around?"}]}
{"id": 7515, "image": "./data/test/pie/InteSun/chart_11/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of pie chart."}]}
{"id": 7516, "image": "./data/test/pie/InteSun/chart_11/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Amazon Music is 14.71%."}, {"label": "No", "query": "According to this chart, the percentage of Amazon Music is 11.76%."}]}
{"id": 7517, "image": "./data/test/pie/InteSun/chart_11/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Spotify is higher than Amazon."}, {"label": "No", "query": "According to this chart, the percentage of Amazon is higher than Spotify."}]}
{"id": 7518, "image": "./data/test/pie/InteSun/chart_11/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Spotify has the highest percentage 26.47%."}, {"label": "No", "query": "According to this chart, the Amazon Music HD has the highest percentage 26.47%."}]}
{"id": 7519, "image": "./data/test/pie/InteSun/chart_11/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "3.5%", "query": "According to this chart, what is the percentage of Amazon Music Prime around?"}]}
{"id": 7520, "image": "./data/test/pie/InteSun/chart_12/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of bar chart."}, {"label": "No", "query": "This graph is a bar chart, instead of pie chart."}]}
{"id": 7521, "image": "./data/test/pie/InteSun/chart_12/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of QQ is 8.62%."}, {"label": "No", "query": "According to this chart, the percentage of QQ is 2.87%."}]}
{"id": 7522, "image": "./data/test/pie/InteSun/chart_12/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the percentage of Tencent is higher than Snap."}, {"label": "No", "query": "According to this chart, the percentage of Snap is higher than Tencent."}]}
{"id": 7523, "image": "./data/test/pie/InteSun/chart_12/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Facebook Messenger has the highest percentage 22.99%."}, {"label": "No", "query": "According to this chart, the WhatsApp has the highest percentage 22.99%."}]}
{"id": 7524, "image": "./data/test/pie/InteSun/chart_12/image.png", "type": {"chart": "pie", "image": "InteSun", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "11.5%", "query": "According to this chart, what is the percentage of Snapchat around?"}]}
{"id": 7750, "image": "./data/test/pie/pie/chart_0/image.png", "type": {"chart": "pie", "image": "pie", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of node_link chart."}, {"label": "No", "query": "This graph is a node_link chart, instead of pie chart."}]}
{"id": 7751, "image": "./data/test/pie/pie/chart_0/image.png", "type": {"chart": "pie", "image": "pie", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Jazz is 5.00%."}, {"label": "No", "query": "According to this chart, the Percentage of Jazz is 25.00%."}]}
{"id": 7752, "image": "./data/test/pie/pie/chart_0/image.png", "type": {"chart": "pie", "image": "pie", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Hip Hop is higher than Classical."}, {"label": "No", "query": "According to this chart, the Percentage of Classical is higher than Hip Hop."}]}
{"id": 7753, "image": "./data/test/pie/pie/chart_0/image.png", "type": {"chart": "pie", "image": "pie", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Pop has the highest Percentage 35.00%."}, {"label": "No", "query": "According to this chart, the Classical has the highest Percentage 35.00%."}]}
{"id": 7754, "image": "./data/test/pie/pie/chart_0/image.png", "type": {"chart": "pie", "image": "pie", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "35.0%", "query": "According to this chart, what is the percentage of Pop around?"}]}
{"id": 7755, "image": "./data/test/pie/pie/chart_1/image.png", "type": {"chart": "pie", "image": "pie", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of line chart."}, {"label": "No", "query": "This graph is a line chart, instead of pie chart."}]}
{"id": 7756, "image": "./data/test/pie/pie/chart_1/image.png", "type": {"chart": "pie", "image": "pie", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of iOS is 35.00%."}, {"label": "No", "query": "According to this chart, the Percentage of iOS is 3.00%."}]}
{"id": 7757, "image": "./data/test/pie/pie/chart_1/image.png", "type": {"chart": "pie", "image": "pie", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Android is higher than Windows."}, {"label": "No", "query": "According to this chart, the Percentage of Windows is higher than Android."}]}
{"id": 7758, "image": "./data/test/pie/pie/chart_1/image.png", "type": {"chart": "pie", "image": "pie", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Android has the highest Percentage 60.00%."}, {"label": "No", "query": "According to this chart, the Windows has the highest Percentage 60.00%."}]}
{"id": 7759, "image": "./data/test/pie/pie/chart_1/image.png", "type": {"chart": "pie", "image": "pie", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "3.0%", "query": "According to this chart, what is the percentage of Windows around?"}]}
{"id": 7760, "image": "./data/test/pie/pie/chart_10/image.png", "type": {"chart": "pie", "image": "pie", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of line chart."}, {"label": "No", "query": "This graph is a line chart, instead of pie chart."}]}
{"id": 7761, "image": "./data/test/pie/pie/chart_10/image.png", "type": {"chart": "pie", "image": "pie", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Diploma/Certificate is 5.00%."}, {"label": "No", "query": "According to this chart, the Percentage of Diploma/Certificate is 40.00%."}]}
{"id": 7762, "image": "./data/test/pie/pie/chart_10/image.png", "type": {"chart": "pie", "image": "pie", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Master's is higher than Doctorate."}, {"label": "No", "query": "According to this chart, the Percentage of Doctorate is higher than Master's."}]}
{"id": 7763, "image": "./data/test/pie/pie/chart_10/image.png", "type": {"chart": "pie", "image": "pie", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Bachelor's has the highest Percentage 40.00%."}, {"label": "No", "query": "According to this chart, the Diploma/Certificate has the highest Percentage 40.00%."}]}
{"id": 7764, "image": "./data/test/pie/pie/chart_10/image.png", "type": {"chart": "pie", "image": "pie", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "30.0%", "query": "According to this chart, what is the percentage of Master's around?"}]}
{"id": 7765, "image": "./data/test/pie/pie/chart_11/image.png", "type": {"chart": "pie", "image": "pie", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of combination chart."}, {"label": "No", "query": "This graph is a combination chart, instead of pie chart."}]}
{"id": 7766, "image": "./data/test/pie/pie/chart_11/image.png", "type": {"chart": "pie", "image": "pie", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Home Decor/Furniture is 15.00%."}, {"label": "No", "query": "According to this chart, the Percentage of Home Decor/Furniture is 25.00%."}]}
{"id": 7767, "image": "./data/test/pie/pie/chart_11/image.png", "type": {"chart": "pie", "image": "pie", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Books/Media is higher than Beauty/Personal Care."}, {"label": "No", "query": "According to this chart, the Percentage of Beauty/Personal Care is higher than Books/Media."}]}
{"id": 7768, "image": "./data/test/pie/pie/chart_11/image.png", "type": {"chart": "pie", "image": "pie", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Clothing/Apparel has the highest Percentage 35.00%."}, {"label": "No", "query": "According to this chart, the Beauty/Personal Care has the highest Percentage 35.00%."}]}
{"id": 7769, "image": "./data/test/pie/pie/chart_11/image.png", "type": {"chart": "pie", "image": "pie", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "12.0%", "query": "According to this chart, what is the percentage of Books/Media around?"}]}
{"id": 7770, "image": "./data/test/pie/pie/chart_12/image.png", "type": {"chart": "pie", "image": "pie", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of area chart."}, {"label": "No", "query": "This graph is a area chart, instead of pie chart."}]}
{"id": 7771, "image": "./data/test/pie/pie/chart_12/image.png", "type": {"chart": "pie", "image": "pie", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Mushroom is 20.00%."}, {"label": "No", "query": "According to this chart, the Percentage of Mushroom is 5.00%."}]}
{"id": 7772, "image": "./data/test/pie/pie/chart_12/image.png", "type": {"chart": "pie", "image": "pie", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Vegetables is higher than Other Toppings."}, {"label": "No", "query": "According to this chart, the Percentage of Other Toppings is higher than Vegetables."}]}
{"id": 7773, "image": "./data/test/pie/pie/chart_12/image.png", "type": {"chart": "pie", "image": "pie", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Pepperoni has the highest Percentage 30.00%."}, {"label": "No", "query": "According to this chart, the Vegetables has the highest Percentage 30.00%."}]}
{"id": 7774, "image": "./data/test/pie/pie/chart_12/image.png", "type": {"chart": "pie", "image": "pie", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "30.0%", "query": "According to this chart, what is the percentage of Pepperoni around?"}]}
{"id": 8000, "image": "./data/test/pie/ring/chart_0/image.png", "type": {"chart": "pie", "image": "ring", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of radar chart."}, {"label": "No", "query": "This graph is a radar chart, instead of pie chart."}]}
{"id": 8001, "image": "./data/test/pie/ring/chart_0/image.png", "type": {"chart": "pie", "image": "ring", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Pop is 35.00%."}, {"label": "No", "query": "According to this chart, the Percentage of Pop is 2.00%."}]}
{"id": 8002, "image": "./data/test/pie/ring/chart_0/image.png", "type": {"chart": "pie", "image": "ring", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Pop is higher than Hip Hop."}, {"label": "No", "query": "According to this chart, the Percentage of Hip Hop is higher than Pop."}]}
{"id": 8003, "image": "./data/test/pie/ring/chart_0/image.png", "type": {"chart": "pie", "image": "ring", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Pop has the highest Percentage 35.00%."}, {"label": "No", "query": "According to this chart, the Classical has the highest Percentage 35.00%."}]}
{"id": 8004, "image": "./data/test/pie/ring/chart_0/image.png", "type": {"chart": "pie", "image": "ring", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "25.0%", "query": "According to this chart, what is the percentage of Rock around?"}]}
{"id": 8005, "image": "./data/test/pie/ring/chart_1/image.png", "type": {"chart": "pie", "image": "ring", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of combination chart."}, {"label": "No", "query": "This graph is a combination chart, instead of pie chart."}]}
{"id": 8006, "image": "./data/test/pie/ring/chart_1/image.png", "type": {"chart": "pie", "image": "ring", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Windows is 3.00%."}, {"label": "No", "query": "According to this chart, the Percentage of Windows is 2.00%."}]}
{"id": 8007, "image": "./data/test/pie/ring/chart_1/image.png", "type": {"chart": "pie", "image": "ring", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Android is higher than Windows."}, {"label": "No", "query": "According to this chart, the Percentage of Windows is higher than Android."}]}
{"id": 8008, "image": "./data/test/pie/ring/chart_1/image.png", "type": {"chart": "pie", "image": "ring", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Android has the highest Percentage 60.00%."}, {"label": "No", "query": "According to this chart, the Others has the highest Percentage 60.00%."}]}
{"id": 8009, "image": "./data/test/pie/ring/chart_1/image.png", "type": {"chart": "pie", "image": "ring", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "35.0%", "query": "According to this chart, what is the percentage of iOS around?"}]}
{"id": 8010, "image": "./data/test/pie/ring/chart_10/image.png", "type": {"chart": "pie", "image": "ring", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of box chart."}, {"label": "No", "query": "This graph is a box chart, instead of pie chart."}]}
{"id": 8011, "image": "./data/test/pie/ring/chart_10/image.png", "type": {"chart": "pie", "image": "ring", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Master's is 30.00%."}, {"label": "No", "query": "According to this chart, the Percentage of Master's is 5.00%."}]}
{"id": 8012, "image": "./data/test/pie/ring/chart_10/image.png", "type": {"chart": "pie", "image": "ring", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Associate's is higher than Doctorate."}, {"label": "No", "query": "According to this chart, the Percentage of Doctorate is higher than Associate's."}]}
{"id": 8013, "image": "./data/test/pie/ring/chart_10/image.png", "type": {"chart": "pie", "image": "ring", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Bachelor's has the highest Percentage 40.00%."}, {"label": "No", "query": "According to this chart, the Diploma/Certificate has the highest Percentage 40.00%."}]}
{"id": 8014, "image": "./data/test/pie/ring/chart_10/image.png", "type": {"chart": "pie", "image": "ring", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "30.0%", "query": "According to this chart, what is the percentage of Master's around?"}]}
{"id": 8015, "image": "./data/test/pie/ring/chart_11/image.png", "type": {"chart": "pie", "image": "ring", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of combination chart."}, {"label": "No", "query": "This graph is a combination chart, instead of pie chart."}]}
{"id": 8016, "image": "./data/test/pie/ring/chart_11/image.png", "type": {"chart": "pie", "image": "ring", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Clothing/Apparel is 35.00%."}, {"label": "No", "query": "According to this chart, the Percentage of Clothing/Apparel is 15.00%."}]}
{"id": 8017, "image": "./data/test/pie/ring/chart_11/image.png", "type": {"chart": "pie", "image": "ring", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Books/Media is higher than Other Categories."}, {"label": "No", "query": "According to this chart, the Percentage of Other Categories is higher than Books/Media."}]}
{"id": 8018, "image": "./data/test/pie/ring/chart_11/image.png", "type": {"chart": "pie", "image": "ring", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Clothing/Apparel has the highest Percentage 35.00%."}, {"label": "No", "query": "According to this chart, the Home Decor/Furniture has the highest Percentage 35.00%."}]}
{"id": 8019, "image": "./data/test/pie/ring/chart_11/image.png", "type": {"chart": "pie", "image": "ring", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "12.0%", "query": "According to this chart, what is the percentage of Books/Media around?"}]}
{"id": 8020, "image": "./data/test/pie/ring/chart_12/image.png", "type": {"chart": "pie", "image": "ring", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of node_link chart."}, {"label": "No", "query": "This graph is a node_link chart, instead of pie chart."}]}
{"id": 8021, "image": "./data/test/pie/ring/chart_12/image.png", "type": {"chart": "pie", "image": "ring", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Margherita is 8.00%."}, {"label": "No", "query": "According to this chart, the Percentage of Margherita is 20.00%."}]}
{"id": 8022, "image": "./data/test/pie/ring/chart_12/image.png", "type": {"chart": "pie", "image": "ring", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Mushroom is higher than Sausage."}, {"label": "No", "query": "According to this chart, the Percentage of Sausage is higher than Mushroom."}]}
{"id": 8023, "image": "./data/test/pie/ring/chart_12/image.png", "type": {"chart": "pie", "image": "ring", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Pepperoni has the highest Percentage 30.00%."}, {"label": "No", "query": "According to this chart, the Mushroom has the highest Percentage 30.00%."}]}
{"id": 8024, "image": "./data/test/pie/ring/chart_12/image.png", "type": {"chart": "pie", "image": "ring", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "15.0%", "query": "According to this chart, what is the percentage of Cheese around?"}]}
{"id": 8250, "image": "./data/test/pie/ring_wi_anno/chart_0/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of bar chart."}, {"label": "No", "query": "This graph is a bar chart, instead of pie chart."}]}
{"id": 8251, "image": "./data/test/pie/ring_wi_anno/chart_0/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Rock is 25.00%."}, {"label": "No", "query": "According to this chart, the Percentage of Rock is 2.00%."}]}
{"id": 8252, "image": "./data/test/pie/ring_wi_anno/chart_0/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Rock is higher than Jazz."}, {"label": "No", "query": "According to this chart, the Percentage of Jazz is higher than Rock."}]}
{"id": 8253, "image": "./data/test/pie/ring_wi_anno/chart_0/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Pop has the highest Percentage 35.00%."}, {"label": "No", "query": "According to this chart, the Hip Hop has the highest Percentage 35.00%."}]}
{"id": 8254, "image": "./data/test/pie/ring_wi_anno/chart_0/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "8.0%", "query": "According to this chart, what is the percentage of Electronic around?"}]}
{"id": 8255, "image": "./data/test/pie/ring_wi_anno/chart_1/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of box chart."}, {"label": "No", "query": "This graph is a box chart, instead of pie chart."}]}
{"id": 8256, "image": "./data/test/pie/ring_wi_anno/chart_1/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Windows is 3.00%."}, {"label": "No", "query": "According to this chart, the Percentage of Windows is 2.00%."}]}
{"id": 8257, "image": "./data/test/pie/ring_wi_anno/chart_1/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Android is higher than Windows."}, {"label": "No", "query": "According to this chart, the Percentage of Windows is higher than Android."}]}
{"id": 8258, "image": "./data/test/pie/ring_wi_anno/chart_1/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Android has the highest Percentage 60.00%."}, {"label": "No", "query": "According to this chart, the Windows has the highest Percentage 60.00%."}]}
{"id": 8259, "image": "./data/test/pie/ring_wi_anno/chart_1/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "60.0%", "query": "According to this chart, what is the percentage of Android around?"}]}
{"id": 8260, "image": "./data/test/pie/ring_wi_anno/chart_10/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of pie chart."}]}
{"id": 8261, "image": "./data/test/pie/ring_wi_anno/chart_10/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Associate's is 15.00%."}, {"label": "No", "query": "According to this chart, the Percentage of Associate's is 10.00%."}]}
{"id": 8262, "image": "./data/test/pie/ring_wi_anno/chart_10/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Doctorate is higher than Diploma/Certificate."}, {"label": "No", "query": "According to this chart, the Percentage of Diploma/Certificate is higher than Doctorate."}]}
{"id": 8263, "image": "./data/test/pie/ring_wi_anno/chart_10/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Bachelor's has the highest Percentage 40.00%."}, {"label": "No", "query": "According to this chart, the Doctorate has the highest Percentage 40.00%."}]}
{"id": 8264, "image": "./data/test/pie/ring_wi_anno/chart_10/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "15.0%", "query": "According to this chart, what is the percentage of Associate's around?"}]}
{"id": 8265, "image": "./data/test/pie/ring_wi_anno/chart_11/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of scatter chart."}, {"label": "No", "query": "This graph is a scatter chart, instead of pie chart."}]}
{"id": 8266, "image": "./data/test/pie/ring_wi_anno/chart_11/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Clothing/Apparel is 35.00%."}, {"label": "No", "query": "According to this chart, the Percentage of Clothing/Apparel is 25.00%."}]}
{"id": 8267, "image": "./data/test/pie/ring_wi_anno/chart_11/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Clothing/Apparel is higher than Books/Media."}, {"label": "No", "query": "According to this chart, the Percentage of Books/Media is higher than Clothing/Apparel."}]}
{"id": 8268, "image": "./data/test/pie/ring_wi_anno/chart_11/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Clothing/Apparel has the highest Percentage 35.00%."}, {"label": "No", "query": "According to this chart, the Books/Media has the highest Percentage 35.00%."}]}
{"id": 8269, "image": "./data/test/pie/ring_wi_anno/chart_11/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "25.0%", "query": "According to this chart, what is the percentage of Electronics around?"}]}
{"id": 8270, "image": "./data/test/pie/ring_wi_anno/chart_12/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of box chart."}, {"label": "No", "query": "This graph is a box chart, instead of pie chart."}]}
{"id": 8271, "image": "./data/test/pie/ring_wi_anno/chart_12/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Cheese is 15.00%."}, {"label": "No", "query": "According to this chart, the Percentage of Cheese is 20.00%."}]}
{"id": 8272, "image": "./data/test/pie/ring_wi_anno/chart_12/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Vegetables is higher than Margherita."}, {"label": "No", "query": "According to this chart, the Percentage of Margherita is higher than Vegetables."}]}
{"id": 8273, "image": "./data/test/pie/ring_wi_anno/chart_12/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Pepperoni has the highest Percentage 30.00%."}, {"label": "No", "query": "According to this chart, the Sausage has the highest Percentage 30.00%."}]}
{"id": 8274, "image": "./data/test/pie/ring_wi_anno/chart_12/image.png", "type": {"chart": "pie", "image": "ring_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "8.0%", "query": "According to this chart, what is the percentage of Margherita around?"}]}
{"id": 8500, "image": "./data/test/pie/sector/chart_0/image.png", "type": {"chart": "pie", "image": "sector", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of bar chart."}, {"label": "No", "query": "This graph is a bar chart, instead of pie chart."}]}
{"id": 8501, "image": "./data/test/pie/sector/chart_0/image.png", "type": {"chart": "pie", "image": "sector", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Electronic is 8.00%."}, {"label": "No", "query": "According to this chart, the Percentage of Electronic is 2.00%."}]}
{"id": 8502, "image": "./data/test/pie/sector/chart_0/image.png", "type": {"chart": "pie", "image": "sector", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Rock is higher than Classical."}, {"label": "No", "query": "According to this chart, the Percentage of Classical is higher than Rock."}]}
{"id": 8503, "image": "./data/test/pie/sector/chart_0/image.png", "type": {"chart": "pie", "image": "sector", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Pop has the highest Percentage 35.00%."}, {"label": "No", "query": "According to this chart, the Classical has the highest Percentage 35.00%."}]}
{"id": 8504, "image": "./data/test/pie/sector/chart_0/image.png", "type": {"chart": "pie", "image": "sector", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "10.0%", "query": "According to this chart, what is the percentage of Country around?"}]}
{"id": 8505, "image": "./data/test/pie/sector/chart_1/image.png", "type": {"chart": "pie", "image": "sector", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of radar chart."}, {"label": "No", "query": "This graph is a radar chart, instead of pie chart."}]}
{"id": 8506, "image": "./data/test/pie/sector/chart_1/image.png", "type": {"chart": "pie", "image": "sector", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Android is 60.00%."}, {"label": "No", "query": "According to this chart, the Percentage of Android is 2.00%."}]}
{"id": 8507, "image": "./data/test/pie/sector/chart_1/image.png", "type": {"chart": "pie", "image": "sector", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Android is higher than Others."}, {"label": "No", "query": "According to this chart, the Percentage of Others is higher than Android."}]}
{"id": 8508, "image": "./data/test/pie/sector/chart_1/image.png", "type": {"chart": "pie", "image": "sector", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Android has the highest Percentage 60.00%."}, {"label": "No", "query": "According to this chart, the iOS has the highest Percentage 60.00%."}]}
{"id": 8509, "image": "./data/test/pie/sector/chart_1/image.png", "type": {"chart": "pie", "image": "sector", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "35.0%", "query": "According to this chart, what is the percentage of iOS around?"}]}
{"id": 8510, "image": "./data/test/pie/sector/chart_10/image.png", "type": {"chart": "pie", "image": "sector", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of box chart."}, {"label": "No", "query": "This graph is a box chart, instead of pie chart."}]}
{"id": 8511, "image": "./data/test/pie/sector/chart_10/image.png", "type": {"chart": "pie", "image": "sector", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Master's is 30.00%."}, {"label": "No", "query": "According to this chart, the Percentage of Master's is 10.00%."}]}
{"id": 8512, "image": "./data/test/pie/sector/chart_10/image.png", "type": {"chart": "pie", "image": "sector", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Bachelor's is higher than Doctorate."}, {"label": "No", "query": "According to this chart, the Percentage of Doctorate is higher than Bachelor's."}]}
{"id": 8513, "image": "./data/test/pie/sector/chart_10/image.png", "type": {"chart": "pie", "image": "sector", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Bachelor's has the highest Percentage 40.00%."}, {"label": "No", "query": "According to this chart, the Master's has the highest Percentage 40.00%."}]}
{"id": 8514, "image": "./data/test/pie/sector/chart_10/image.png", "type": {"chart": "pie", "image": "sector", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "40.0%", "query": "According to this chart, what is the percentage of Bachelor's around?"}]}
{"id": 8515, "image": "./data/test/pie/sector/chart_11/image.png", "type": {"chart": "pie", "image": "sector", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of bar chart."}, {"label": "No", "query": "This graph is a bar chart, instead of pie chart."}]}
{"id": 8516, "image": "./data/test/pie/sector/chart_11/image.png", "type": {"chart": "pie", "image": "sector", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Other Categories is 5.00%."}, {"label": "No", "query": "According to this chart, the Percentage of Other Categories is 15.00%."}]}
{"id": 8517, "image": "./data/test/pie/sector/chart_11/image.png", "type": {"chart": "pie", "image": "sector", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Beauty/Personal Care is higher than Other Categories."}, {"label": "No", "query": "According to this chart, the Percentage of Other Categories is higher than Beauty/Personal Care."}]}
{"id": 8518, "image": "./data/test/pie/sector/chart_11/image.png", "type": {"chart": "pie", "image": "sector", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Clothing/Apparel has the highest Percentage 35.00%."}, {"label": "No", "query": "According to this chart, the Other Categories has the highest Percentage 35.00%."}]}
{"id": 8519, "image": "./data/test/pie/sector/chart_11/image.png", "type": {"chart": "pie", "image": "sector", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "12.0%", "query": "According to this chart, what is the percentage of Books/Media around?"}]}
{"id": 8520, "image": "./data/test/pie/sector/chart_12/image.png", "type": {"chart": "pie", "image": "sector", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a pie chart, instead of bar chart."}, {"label": "No", "query": "This graph is a bar chart, instead of pie chart."}]}
{"id": 8521, "image": "./data/test/pie/sector/chart_12/image.png", "type": {"chart": "pie", "image": "sector", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Margherita is 8.00%."}, {"label": "No", "query": "According to this chart, the Percentage of Margherita is 12.00%."}]}
{"id": 8522, "image": "./data/test/pie/sector/chart_12/image.png", "type": {"chart": "pie", "image": "sector", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Percentage of Pepperoni is higher than Mushroom."}, {"label": "No", "query": "According to this chart, the Percentage of Mushroom is higher than Pepperoni."}]}
{"id": 8523, "image": "./data/test/pie/sector/chart_12/image.png", "type": {"chart": "pie", "image": "sector", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Pepperoni has the highest Percentage 30.00%."}, {"label": "No", "query": "According to this chart, the Vegetables has the highest Percentage 30.00%."}]}
{"id": 8524, "image": "./data/test/pie/sector/chart_12/image.png", "type": {"chart": "pie", "image": "sector", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "12.0%", "query": "According to this chart, what is the percentage of Vegetables around?"}]}
{"id": 8750, "image": "./data/test/radar/radar_multi/chart_0/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a radar chart, instead of bar chart."}, {"label": "No", "query": "This graph is a bar chart, instead of radar chart."}]}
{"id": 8751, "image": "./data/test/radar/radar_multi/chart_0/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for group A, the score of Jumping is 78.00."}, {"label": "No", "query": "According to this chart, for group A, the score of Jumping is 77.00."}]}
{"id": 8752, "image": "./data/test/radar/radar_multi/chart_0/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for group C, the score of Running is higher than Gymnastics."}, {"label": "No", "query": "According to this chart, for group C, the score of Gymnastics is higher than Running."}]}
{"id": 8753, "image": "./data/test/radar/radar_multi/chart_0/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Tennis of group C has the highest score 95.00."}, {"label": "No", "query": "According to this chart, the Swimming of group C has the highest score 95.00."}]}
{"id": 8754, "image": "./data/test/radar/radar_multi/chart_0/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "90.0", "query": "According to this chart, for item A, what is the score of Running?"}]}
{"id": 8755, "image": "./data/test/radar/radar_multi/chart_1/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a radar chart, instead of scatter chart."}, {"label": "No", "query": "This graph is a scatter chart, instead of radar chart."}]}
{"id": 8756, "image": "./data/test/radar/radar_multi/chart_1/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for group A, the score of Guitar is 92.00."}, {"label": "No", "query": "According to this chart, for group A, the score of Guitar is 94.00."}]}
{"id": 8757, "image": "./data/test/radar/radar_multi/chart_1/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for group C, the score of Guitar is higher than Singing."}, {"label": "No", "query": "According to this chart, for group C, the score of Singing is higher than Guitar."}]}
{"id": 8758, "image": "./data/test/radar/radar_multi/chart_1/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Piano of group A has the highest score 95.00."}, {"label": "No", "query": "According to this chart, the Drums of group A has the highest score 95.00."}]}
{"id": 8759, "image": "./data/test/radar/radar_multi/chart_1/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "86.0", "query": "According to this chart, for item B, what is the score of Singing?"}]}
{"id": 8760, "image": "./data/test/radar/radar_multi/chart_10/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a radar chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of radar chart."}]}
{"id": 8761, "image": "./data/test/radar/radar_multi/chart_10/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for group B, the hours_per_week of Weightlifting is 1.00."}, {"label": "No", "query": "According to this chart, for group B, the hours_per_week of Weightlifting is 2.00."}]}
{"id": 8762, "image": "./data/test/radar/radar_multi/chart_10/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for group B, the hours_per_week of Running is higher than Yoga."}, {"label": "No", "query": "According to this chart, for group B, the hours_per_week of Yoga is higher than Running."}]}
{"id": 8763, "image": "./data/test/radar/radar_multi/chart_10/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Meditation of group C has the highest hours_per_week 8.00."}, {"label": "No", "query": "According to this chart, the Weightlifting of group C has the highest hours_per_week 8.00."}]}
{"id": 8764, "image": "./data/test/radar/radar_multi/chart_10/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "5.0", "query": "According to this chart, for item C, what is the hours_per_week of Swimming?"}]}
{"id": 8765, "image": "./data/test/radar/radar_multi/chart_11/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a radar chart, instead of node_link chart."}, {"label": "No", "query": "This graph is a node_link chart, instead of radar chart."}]}
{"id": 8766, "image": "./data/test/radar/radar_multi/chart_11/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for group C, the rating of Thriller is 4.50."}, {"label": "No", "query": "According to this chart, for group C, the rating of Thriller is 4.40."}]}
{"id": 8767, "image": "./data/test/radar/radar_multi/chart_11/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for group C, the rating of Romance is higher than Historical Fiction."}, {"label": "No", "query": "According to this chart, for group C, the rating of Historical Fiction is higher than Romance."}]}
{"id": 8768, "image": "./data/test/radar/radar_multi/chart_11/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Fantasy of group A has the highest rating 4.50."}, {"label": "No", "query": "According to this chart, the Historical Fiction of group A has the highest rating 4.50."}]}
{"id": 8769, "image": "./data/test/radar/radar_multi/chart_11/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "4.1", "query": "According to this chart, for item C, what is the rating of Romance?"}]}
{"id": 8770, "image": "./data/test/radar/radar_multi/chart_12/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a radar chart, instead of area chart."}, {"label": "No", "query": "This graph is a area chart, instead of radar chart."}]}
{"id": 8771, "image": "./data/test/radar/radar_multi/chart_12/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for group C, the completion_time of Bathroom Renovation is 7.00."}, {"label": "No", "query": "According to this chart, for group C, the completion_time of Bathroom Renovation is 6.00."}]}
{"id": 8772, "image": "./data/test/radar/radar_multi/chart_12/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for group A, the completion_time of Bathroom Renovation is higher than Painting."}, {"label": "No", "query": "According to this chart, for group A, the completion_time of Painting is higher than Bathroom Renovation."}]}
{"id": 8773, "image": "./data/test/radar/radar_multi/chart_12/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Kitchen Remodel of group C has the highest completion_time 9.00."}, {"label": "No", "query": "According to this chart, the Deck Installation of group C has the highest completion_time 9.00."}]}
{"id": 8774, "image": "./data/test/radar/radar_multi/chart_12/image.png", "type": {"chart": "radar", "image": "radar_multi", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "5.0", "query": "According to this chart, for item A, what is the completion_time of Deck Installation?"}]}
{"id": 9000, "image": "./data/test/radar/radar_multi_fill/chart_0/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a radar chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of radar chart."}]}
{"id": 9001, "image": "./data/test/radar/radar_multi_fill/chart_0/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for group A, the score of Tennis is 92.00."}, {"label": "No", "query": "According to this chart, for group A, the score of Tennis is 91.00."}]}
{"id": 9002, "image": "./data/test/radar/radar_multi_fill/chart_0/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for group A, the score of Cycling is higher than Gymnastics."}, {"label": "No", "query": "According to this chart, for group A, the score of Gymnastics is higher than Cycling."}]}
{"id": 9003, "image": "./data/test/radar/radar_multi_fill/chart_0/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Tennis of group C has the highest score 95.00."}, {"label": "No", "query": "According to this chart, the Jumping of group C has the highest score 95.00."}]}
{"id": 9004, "image": "./data/test/radar/radar_multi_fill/chart_0/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "90.0", "query": "According to this chart, for item A, what is the score of Running?"}]}
{"id": 9005, "image": "./data/test/radar/radar_multi_fill/chart_1/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a radar chart, instead of area chart."}, {"label": "No", "query": "This graph is a area chart, instead of radar chart."}]}
{"id": 9006, "image": "./data/test/radar/radar_multi_fill/chart_1/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for group A, the score of Piano is 95.00."}, {"label": "No", "query": "According to this chart, for group A, the score of Piano is 92.00."}]}
{"id": 9007, "image": "./data/test/radar/radar_multi_fill/chart_1/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for group C, the score of Violin is higher than Drums."}, {"label": "No", "query": "According to this chart, for group C, the score of Drums is higher than Violin."}]}
{"id": 9008, "image": "./data/test/radar/radar_multi_fill/chart_1/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Piano of group A has the highest score 95.00."}, {"label": "No", "query": "According to this chart, the Violin of group A has the highest score 95.00."}]}
{"id": 9009, "image": "./data/test/radar/radar_multi_fill/chart_1/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "90.0", "query": "According to this chart, for item B, what is the score of Piano?"}]}
{"id": 9010, "image": "./data/test/radar/radar_multi_fill/chart_10/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a radar chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of radar chart."}]}
{"id": 9011, "image": "./data/test/radar/radar_multi_fill/chart_10/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for group A, the hours_per_week of Swimming is 4.00."}, {"label": "No", "query": "According to this chart, for group A, the hours_per_week of Swimming is 5.00."}]}
{"id": 9012, "image": "./data/test/radar/radar_multi_fill/chart_10/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for group A, the hours_per_week of Swimming is higher than Yoga."}, {"label": "No", "query": "According to this chart, for group A, the hours_per_week of Yoga is higher than Swimming."}]}
{"id": 9013, "image": "./data/test/radar/radar_multi_fill/chart_10/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Meditation of group C has the highest hours_per_week 8.00."}, {"label": "No", "query": "According to this chart, the Cycling of group C has the highest hours_per_week 8.00."}]}
{"id": 9014, "image": "./data/test/radar/radar_multi_fill/chart_10/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "2.0", "query": "According to this chart, for item C, what is the hours_per_week of Weightlifting?"}]}
{"id": 9015, "image": "./data/test/radar/radar_multi_fill/chart_11/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a radar chart, instead of others chart."}, {"label": "No", "query": "This graph is a others chart, instead of radar chart."}]}
{"id": 9016, "image": "./data/test/radar/radar_multi_fill/chart_11/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for group A, the rating of Science Fiction is 4.30."}, {"label": "No", "query": "According to this chart, for group A, the rating of Science Fiction is 4.20."}]}
{"id": 9017, "image": "./data/test/radar/radar_multi_fill/chart_11/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for group B, the rating of Fantasy is higher than Science Fiction."}, {"label": "No", "query": "According to this chart, for group B, the rating of Science Fiction is higher than Fantasy."}]}
{"id": 9018, "image": "./data/test/radar/radar_multi_fill/chart_11/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Fantasy of group A has the highest rating 4.50."}, {"label": "No", "query": "According to this chart, the Mystery of group A has the highest rating 4.50."}]}
{"id": 9019, "image": "./data/test/radar/radar_multi_fill/chart_11/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "4.2", "query": "According to this chart, for item A, what is the rating of Mystery?"}]}
{"id": 9020, "image": "./data/test/radar/radar_multi_fill/chart_12/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a radar chart, instead of box chart."}, {"label": "No", "query": "This graph is a box chart, instead of radar chart."}]}
{"id": 9021, "image": "./data/test/radar/radar_multi_fill/chart_12/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for group A, the completion_time of Landscaping is 6.00."}, {"label": "No", "query": "According to this chart, for group A, the completion_time of Landscaping is 5.00."}]}
{"id": 9022, "image": "./data/test/radar/radar_multi_fill/chart_12/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, for group C, the completion_time of Bathroom Renovation is higher than Landscaping."}, {"label": "No", "query": "According to this chart, for group C, the completion_time of Landscaping is higher than Bathroom Renovation."}]}
{"id": 9023, "image": "./data/test/radar/radar_multi_fill/chart_12/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Kitchen Remodel of group C has the highest completion_time 9.00."}, {"label": "No", "query": "According to this chart, the Deck Installation of group C has the highest completion_time 9.00."}]}
{"id": 9024, "image": "./data/test/radar/radar_multi_fill/chart_12/image.png", "type": {"chart": "radar", "image": "radar_multi_fill", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "4.0", "query": "According to this chart, for item A, what is the completion_time of Flooring Replacement?"}]}
{"id": 9250, "image": "./data/test/radar/radar_single/chart_0/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a radar chart, instead of scatter chart."}, {"label": "No", "query": "This graph is a scatter chart, instead of radar chart."}]}
{"id": 9251, "image": "./data/test/radar/radar_single/chart_0/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the score of Technical Proficiency is 8.00."}, {"label": "No", "query": "According to this chart, the score of Technical Proficiency is 8.50."}]}
{"id": 9252, "image": "./data/test/radar/radar_single/chart_0/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the score of Leadership is higher than Communication."}, {"label": "No", "query": "According to this chart, the score of Communication is higher than Leadership."}]}
{"id": 9253, "image": "./data/test/radar/radar_single/chart_0/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Problem Solving has the highest score 9.20."}, {"label": "No", "query": "According to this chart, the Time Management has the highest score 9.20."}]}
{"id": 9254, "image": "./data/test/radar/radar_single/chart_0/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "8.0", "query": "According to this chart, what is the score of Technical Proficiency?"}]}
{"id": 9255, "image": "./data/test/radar/radar_single/chart_1/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a radar chart, instead of line chart."}, {"label": "No", "query": "This graph is a line chart, instead of radar chart."}]}
{"id": 9256, "image": "./data/test/radar/radar_single/chart_1/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the score of Agility is 7.90."}, {"label": "No", "query": "According to this chart, the score of Agility is 7.50."}]}
{"id": 9257, "image": "./data/test/radar/radar_single/chart_1/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the score of Flexibility is higher than Body Composition."}, {"label": "No", "query": "According to this chart, the score of Body Composition is higher than Flexibility."}]}
{"id": 9258, "image": "./data/test/radar/radar_single/chart_1/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Flexibility has the highest score 9.20."}, {"label": "No", "query": "According to this chart, the Body Composition has the highest score 9.20."}]}
{"id": 9259, "image": "./data/test/radar/radar_single/chart_1/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "7.9", "query": "According to this chart, what is the score of Agility?"}]}
{"id": 9260, "image": "./data/test/radar/radar_single/chart_10/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a radar chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of radar chart."}]}
{"id": 9261, "image": "./data/test/radar/radar_single/chart_10/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the score of Algorithms is 8.50."}, {"label": "No", "query": "According to this chart, the score of Algorithms is 9.00."}]}
{"id": 9262, "image": "./data/test/radar/radar_single/chart_10/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the score of Version Control is higher than Debugging."}, {"label": "No", "query": "According to this chart, the score of Debugging is higher than Version Control."}]}
{"id": 9263, "image": "./data/test/radar/radar_single/chart_10/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Programming has the highest score 9.20."}, {"label": "No", "query": "According to this chart, the Version Control has the highest score 9.20."}]}
{"id": 9264, "image": "./data/test/radar/radar_single/chart_10/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "8.8", "query": "According to this chart, what is the score of Debugging?"}]}
{"id": 9265, "image": "./data/test/radar/radar_single/chart_11/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a radar chart, instead of scatter chart."}, {"label": "No", "query": "This graph is a scatter chart, instead of radar chart."}]}
{"id": 9266, "image": "./data/test/radar/radar_single/chart_11/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the score of New York City is 8.40."}, {"label": "No", "query": "According to this chart, the score of New York City is 8.60."}]}
{"id": 9267, "image": "./data/test/radar/radar_single/chart_11/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the score of Bali is higher than Rome."}, {"label": "No", "query": "According to this chart, the score of Rome is higher than Bali."}]}
{"id": 9268, "image": "./data/test/radar/radar_single/chart_11/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Paris has the highest score 9.20."}, {"label": "No", "query": "According to this chart, the Tokyo has the highest score 9.20."}]}
{"id": 9269, "image": "./data/test/radar/radar_single/chart_11/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "8.8", "query": "According to this chart, what is the score of Tokyo?"}]}
{"id": 9270, "image": "./data/test/radar/radar_single/chart_12/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a radar chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of radar chart."}]}
{"id": 9271, "image": "./data/test/radar/radar_single/chart_12/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the score of Yoga is 8.30."}, {"label": "No", "query": "According to this chart, the score of Yoga is 8.00."}]}
{"id": 9272, "image": "./data/test/radar/radar_single/chart_12/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the score of Stress Management is higher than Sleep Quality."}, {"label": "No", "query": "According to this chart, the score of Sleep Quality is higher than Stress Management."}]}
{"id": 9273, "image": "./data/test/radar/radar_single/chart_12/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Meditation has the highest score 9.10."}, {"label": "No", "query": "According to this chart, the Yoga has the highest score 9.10."}]}
{"id": 9274, "image": "./data/test/radar/radar_single/chart_12/image.png", "type": {"chart": "radar", "image": "radar_single", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "8.9", "query": "According to this chart, what is the score of Stress Management?"}]}
{"id": 9500, "image": "./data/test/radar/radar_single_wi_anno/chart_0/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a radar chart, instead of combination chart."}, {"label": "No", "query": "This graph is a combination chart, instead of radar chart."}]}
{"id": 9501, "image": "./data/test/radar/radar_single_wi_anno/chart_0/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the score of Communication is 7.80."}, {"label": "No", "query": "According to this chart, the score of Communication is 9.20."}]}
{"id": 9502, "image": "./data/test/radar/radar_single_wi_anno/chart_0/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the score of Leadership is higher than Communication."}, {"label": "No", "query": "According to this chart, the score of Communication is higher than Leadership."}]}
{"id": 9503, "image": "./data/test/radar/radar_single_wi_anno/chart_0/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Problem Solving has the highest score 9.20."}, {"label": "No", "query": "According to this chart, the Time Management has the highest score 9.20."}]}
{"id": 9504, "image": "./data/test/radar/radar_single_wi_anno/chart_0/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "9.2", "query": "According to this chart, what is the score of Problem Solving?"}]}
{"id": 9505, "image": "./data/test/radar/radar_single_wi_anno/chart_1/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a radar chart, instead of node_link chart."}, {"label": "No", "query": "This graph is a node_link chart, instead of radar chart."}]}
{"id": 9506, "image": "./data/test/radar/radar_single_wi_anno/chart_1/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the score of Body Composition is 8.40."}, {"label": "No", "query": "According to this chart, the score of Body Composition is 7.50."}]}
{"id": 9507, "image": "./data/test/radar/radar_single_wi_anno/chart_1/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the score of Cardiovascular Endurance is higher than Strength Training."}, {"label": "No", "query": "According to this chart, the score of Strength Training is higher than Cardiovascular Endurance."}]}
{"id": 9508, "image": "./data/test/radar/radar_single_wi_anno/chart_1/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Flexibility has the highest score 9.20."}, {"label": "No", "query": "According to this chart, the Cardiovascular Endurance has the highest score 9.20."}]}
{"id": 9509, "image": "./data/test/radar/radar_single_wi_anno/chart_1/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "7.5", "query": "According to this chart, what is the score of Strength Training?"}]}
{"id": 9510, "image": "./data/test/radar/radar_single_wi_anno/chart_10/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a radar chart, instead of box chart."}, {"label": "No", "query": "This graph is a box chart, instead of radar chart."}]}
{"id": 9511, "image": "./data/test/radar/radar_single_wi_anno/chart_10/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the score of Code Documentation is 7.90."}, {"label": "No", "query": "According to this chart, the score of Code Documentation is 9.20."}]}
{"id": 9512, "image": "./data/test/radar/radar_single_wi_anno/chart_10/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the score of Programming is higher than Code Documentation."}, {"label": "No", "query": "According to this chart, the score of Code Documentation is higher than Programming."}]}
{"id": 9513, "image": "./data/test/radar/radar_single_wi_anno/chart_10/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Programming has the highest score 9.20."}, {"label": "No", "query": "According to this chart, the Debugging has the highest score 9.20."}]}
{"id": 9514, "image": "./data/test/radar/radar_single_wi_anno/chart_10/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "9.0", "query": "According to this chart, what is the score of Version Control?"}]}
{"id": 9515, "image": "./data/test/radar/radar_single_wi_anno/chart_11/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a radar chart, instead of line chart."}, {"label": "No", "query": "This graph is a line chart, instead of radar chart."}]}
{"id": 9516, "image": "./data/test/radar/radar_single_wi_anno/chart_11/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the score of New York City is 8.40."}, {"label": "No", "query": "According to this chart, the score of New York City is 9.20."}]}
{"id": 9517, "image": "./data/test/radar/radar_single_wi_anno/chart_11/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the score of Paris is higher than Bali."}, {"label": "No", "query": "According to this chart, the score of Bali is higher than Paris."}]}
{"id": 9518, "image": "./data/test/radar/radar_single_wi_anno/chart_11/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Paris has the highest score 9.20."}, {"label": "No", "query": "According to this chart, the Tokyo has the highest score 9.20."}]}
{"id": 9519, "image": "./data/test/radar/radar_single_wi_anno/chart_11/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "9.0", "query": "According to this chart, what is the score of Bali?"}]}
{"id": 9520, "image": "./data/test/radar/radar_single_wi_anno/chart_12/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a radar chart, instead of line chart."}, {"label": "No", "query": "This graph is a line chart, instead of radar chart."}]}
{"id": 9521, "image": "./data/test/radar/radar_single_wi_anno/chart_12/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the score of Sleep Quality is 8.00."}, {"label": "No", "query": "According to this chart, the score of Sleep Quality is 8.90."}]}
{"id": 9522, "image": "./data/test/radar/radar_single_wi_anno/chart_12/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the score of Meditation is higher than Yoga."}, {"label": "No", "query": "According to this chart, the score of Yoga is higher than Meditation."}]}
{"id": 9523, "image": "./data/test/radar/radar_single_wi_anno/chart_12/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Meditation has the highest score 9.10."}, {"label": "No", "query": "According to this chart, the Yoga has the highest score 9.10."}]}
{"id": 9524, "image": "./data/test/radar/radar_single_wi_anno/chart_12/image.png", "type": {"chart": "radar", "image": "radar_single_wi_anno", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "9.1", "query": "According to this chart, what is the score of Meditation?"}]}
{"id": 9750, "image": "./data/test/scatter/scatter_2d/chart_0/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a scatter chart, instead of bar chart."}, {"label": "No", "query": "This graph is a bar chart, instead of scatter chart."}]}
{"id": 9751, "image": "./data/test/scatter/scatter_2d/chart_0/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Income of Education Level 16 is 60.00."}, {"label": "No", "query": "According to this chart, the Income of Education Level 16 is 38.00."}]}
{"id": 9752, "image": "./data/test/scatter/scatter_2d/chart_0/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Income of Education Level 15 is higher than Education Level 10."}, {"label": "No", "query": "According to this chart, the Income of Education Level 10 is higher than Education Level 15."}]}
{"id": 9753, "image": "./data/test/scatter/scatter_2d/chart_0/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Education Level 16 has the highest Income 60.00."}, {"label": "No", "query": "According to this chart, the Education Level 14 has the highest Income 60.00."}]}
{"id": 9754, "image": "./data/test/scatter/scatter_2d/chart_0/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "58.0", "query": "According to this chart, what is the Income when the Education Level is 15?"}]}
{"id": 9755, "image": "./data/test/scatter/scatter_2d/chart_1/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a scatter chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of scatter chart."}]}
{"id": 9756, "image": "./data/test/scatter/scatter_2d/chart_1/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Ice Cream Sales of Temperature 31 is 14.00."}, {"label": "No", "query": "According to this chart, the Ice Cream Sales of Temperature 31 is 7.00."}]}
{"id": 9757, "image": "./data/test/scatter/scatter_2d/chart_1/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Ice Cream Sales of Temperature 27 is higher than Temperature 24."}, {"label": "No", "query": "According to this chart, the Ice Cream Sales of Temperature 24 is higher than Temperature 27."}]}
{"id": 9758, "image": "./data/test/scatter/scatter_2d/chart_1/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Temperature 31 has the highest Ice Cream Sales 14.00."}, {"label": "No", "query": "According to this chart, the Temperature 29 has the highest Ice Cream Sales 14.00."}]}
{"id": 9759, "image": "./data/test/scatter/scatter_2d/chart_1/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "7.0", "query": "According to this chart, what is the Ice Cream Sales when the Temperature is 24?"}]}
{"id": 9760, "image": "./data/test/scatter/scatter_2d/chart_10/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a scatter chart, instead of radar chart."}, {"label": "No", "query": "This graph is a radar chart, instead of scatter chart."}]}
{"id": 9761, "image": "./data/test/scatter/scatter_2d/chart_10/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Heart Rate of Distance Run 15 is 160.00."}, {"label": "No", "query": "According to this chart, the Heart Rate of Distance Run 15 is 140.00."}]}
{"id": 9762, "image": "./data/test/scatter/scatter_2d/chart_10/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Heart Rate of Distance Run 15 is higher than Distance Run 6."}, {"label": "No", "query": "According to this chart, the Heart Rate of Distance Run 6 is higher than Distance Run 15."}]}
{"id": 9763, "image": "./data/test/scatter/scatter_2d/chart_10/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Distance Run 15 has the highest Heart Rate 160.00."}, {"label": "No", "query": "According to this chart, the Distance Run 6 has the highest Heart Rate 160.00."}]}
{"id": 9764, "image": "./data/test/scatter/scatter_2d/chart_10/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "140.0", "query": "According to this chart, what is the Heart Rate when the Distance Run is 8?"}]}
{"id": 9765, "image": "./data/test/scatter/scatter_2d/chart_11/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a scatter chart, instead of pie chart."}, {"label": "No", "query": "This graph is a pie chart, instead of scatter chart."}]}
{"id": 9766, "image": "./data/test/scatter/scatter_2d/chart_11/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Reaction Time of Time Spent Gaming 5 is 200.00."}, {"label": "No", "query": "According to this chart, the Reaction Time of Time Spent Gaming 5 is 300.00."}]}
{"id": 9767, "image": "./data/test/scatter/scatter_2d/chart_11/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Reaction Time of Time Spent Gaming 2 is higher than Time Spent Gaming 3."}, {"label": "No", "query": "According to this chart, the Reaction Time of Time Spent Gaming 3 is higher than Time Spent Gaming 2."}]}
{"id": 9768, "image": "./data/test/scatter/scatter_2d/chart_11/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Time Spent Gaming 2 has the highest Reaction Time 300.00."}, {"label": "No", "query": "According to this chart, the Time Spent Gaming 4 has the highest Reaction Time 300.00."}]}
{"id": 9769, "image": "./data/test/scatter/scatter_2d/chart_11/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "250.0", "query": "According to this chart, what is the Reaction Time when the Time Spent Gaming is 3?"}]}
{"id": 9770, "image": "./data/test/scatter/scatter_2d/chart_12/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "CR", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "This graph is a scatter chart, instead of box chart."}, {"label": "No", "query": "This graph is a box chart, instead of scatter chart."}]}
{"id": 9771, "image": "./data/test/scatter/scatter_2d/chart_12/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "VE", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Salary of Years of Experience 2 is 40.00."}, {"label": "No", "query": "According to this chart, the Salary of Years of Experience 2 is 90.00."}]}
{"id": 9772, "image": "./data/test/scatter/scatter_2d/chart_12/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "VC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Salary of Years of Experience 3 is higher than Years of Experience 2."}, {"label": "No", "query": "According to this chart, the Salary of Years of Experience 2 is higher than Years of Experience 3."}]}
{"id": 9773, "image": "./data/test/scatter/scatter_2d/chart_12/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "GC", "QA": "Acc+"}, "conversation": [{"label": "Yes", "query": "According to this chart, the Years of Experience 10 has the highest Salary 90.00."}, {"label": "No", "query": "According to this chart, the Years of Experience 5 has the highest Salary 90.00."}]}
{"id": 9774, "image": "./data/test/scatter/scatter_2d/chart_12/image.png", "type": {"chart": "scatter", "image": "scatter_2d", "task": "NQA", "QA": "GPT-acc"}, "conversation": [{"label": "60.0", "query": "According to this chart, what is the Salary when the Years of Experience is 5?"}]}