cloudcatcher2/VCBench
Overview VCBench provides a standardized framework for evaluating vision-language models. This document outlines the procedures for both standard evaluation and GPT-assisted evaluation of your model's outputs. 1. Standard Evaluation 1.1 Output Format Requirements Models must produce outputs in JSONL format with the following structure: {"id": <int>, "pred_answer": "<answer_letter>"} {"id": <int>, "pred_answer": "<answer_letter>"} ... Example File… See the full description on the dataset page: https://huggingface.co/datasets/cloudcatcher2/VCBench.
32k
1[2 {3 "answer": "B",4 "difficulty": 0.65,5 "image": "./single_images/1.png",6 "question_type": "angle",7 "choice_type": "choice_ABC",8 "id": 19 },10 {11 "answer": "C",12 "difficulty": 0.85,13 "image": "./single_images/2.png",14 "question_type": "angle",15 "choice_type": "choice_ABC",16 "id": 217 },18 {19 "answer": "C",20 "difficulty": 0.85,21 "image": "./single_images/3.png",22 "question_type": "angle",23 "choice_type": "choice_ABC",24 "id": 325 },26 {27 "answer": "C",28 "difficulty": 0.65,29 "image": "./single_images/4.png",30 "question_type": "angle",31 "choice_type": "choice_ABCD",32 "id": 433 },34 {35 "answer": "B",36 "difficulty": 0.65,37 "image": "./single_images/5.png",38 "question_type": "angle",39 "choice_type": "choice_ABC",40 "id": 541 },42 {43 "answer": "A",44 "difficulty": 0.85,45 "image": "./single_images/6.png",46 "question_type": "angle",47 "choice_type": "choice_ABC",48 "id": 649 },50 {51 "answer": "D",52 "difficulty": 0.65,53 "image": "./single_images/7.png",54 "question_type": "angle",55 "choice_type": "choice_ABCD",56 "id": 757 },58 {59 "answer": "A",60 "difficulty": 0.85,61 "image": "./single_images/8.png",62 "question_type": "angle",63 "choice_type": "choice_ABC",64 "id": 865 },66 {67 "answer": "A",68 "difficulty": 0.85,69 "image": "./single_images/9.png",70 "question_type": "angle",71 "choice_type": "choice_ABC",72 "id": 973 },74 {75 "answer": "C",76 "difficulty": 0.65,77 "image": "./single_images/10.png",78 "question_type": "angle",79 "choice_type": "choice_ABC",80 "id": 1081 },82 {83 "answer": "A",84 "difficulty": 0.85,85 "image": "./single_images/11.png",86 "question_type": "angle",87 "choice_type": "choice_ABC",88 "id": 1189 },90 {91 "answer": "B",92 "difficulty": 0.85,93 "image": "./single_images/12.png",94 "question_type": "angle",95 "choice_type": "choice_ABCD",96 "id": 1297 },98 {99 "answer": "A",100 "difficulty": 0.65,101 "image": "./single_images/13.png",102 "question_type": "angle",103 "choice_type": "choice_ABCD",104 "id": 13105 },106 {107 "answer": "B",108 "difficulty": 0.65,109 "image": "./single_images/14.png",110 "question_type": "angle",111 "choice_type": "choice_ABC",112 "id": 14113 },114 {115 "answer": "C",116 "difficulty": 0.65,117 "image": "./single_images/15.png",118 "question_type": "angle",119 "choice_type": "choice_ABC",120 "id": 15121 },122 {123 "answer": "A",124 "difficulty": 0.85,125 "image": "./single_images/16.png",126 "question_type": "angle",127 "choice_type": "choice_ABC",128 "id": 16129 },130 {131 "answer": "B",132 "difficulty": 0.65,133 "image": "./single_images/17.png",134 "question_type": "angle",135 "choice_type": "choice_ABC",136 "id": 17137 },138 {139 "answer": "C",140 "difficulty": 0.65,141 "image": "./single_images/18.png",142 "question_type": "angle",143 "choice_type": "choice_ABC",144 "id": 18145 },146 {147 "answer": "A",148 "difficulty": 0.85,149 "image": "./single_images/19.png",150 "question_type": "angle",151 "choice_type": "choice_ABC",152 "id": 19153 },154 {155 "answer": "B",156 "difficulty": 0.85,157 "image": "./single_images/20.png",158 "question_type": "angle",159 "choice_type": "choice_ABC",160 "id": 20161 },162 {163 "answer": "B",164 "difficulty": 0.65,165 "image": "./single_images/21.png",166 "question_type": "angle",167 "choice_type": "choice_ABC",168 "id": 21169 },170 {171 "answer": "B",172 "difficulty": 0.65,173 "image": "./single_images/22.png",174 "question_type": "angle",175 "choice_type": "choice_ABC",176 "id": 22177 },178 {179 "answer": "C",180 "difficulty": 0.85,181 "image": "./single_images/23.png",182 "question_type": "angle",183 "choice_type": "choice_ABCD",184 "id": 23185 },186 {187 "answer": "C",188 "difficulty": 0.65,189 "image": "./single_images/24.png",190 "question_type": "angle",191 "choice_type": "choice_ABC",192 "id": 24193 },194 {195 "answer": "B",196 "difficulty": 0.94,197 "image": "./single_images/25.png",198 "question_type": "angle",199 "choice_type": "choice_ABC",200 "id": 25201 },202 {203 "answer": "A",204 "difficulty": 0.85,205 "image": "./single_images/26.png",206 "question_type": "angle",207 "choice_type": "choice_ABC",208 "id": 26209 },210 {211 "answer": "B",212 "difficulty": 0.65,213 "image": "./single_images/27.png",214 "question_type": "angle",215 "choice_type": "choice_ABC",216 "id": 27217 },218 {219 "answer": "B",220 "difficulty": 0.65,221 "image": "./single_images/28.png",222 "question_type": "angle",223 "choice_type": "choice_ABC",224 "id": 28225 },226 {227 "answer": "A",228 "difficulty": 0.65,229 "image": "./single_images/29.png",230 "question_type": "angle",231 "choice_type": "choice_ABC",232 "id": 29233 },234 {235 "answer": "B",236 "difficulty": 0.85,237 "image": "./single_images/30.png",238 "question_type": "angle",239 "choice_type": "choice_ABCD",240 "id": 30241 },242 {243 "answer": "B",244 "difficulty": 0.65,245 "image": "./single_images/31.png",246 "question_type": "angle",247 "choice_type": "choice_ABC",248 "id": 31249 },250 {251 "answer": "A",252 "difficulty": 0.85,253 "image": "./single_images/32.png",254 "question_type": "angle",255 "choice_type": "choice_ABC",256 "id": 32257 },258 {259 "answer": "A",260 "difficulty": 0.85,261 "image": "./single_images/33.png",262 "question_type": "angle",263 "choice_type": "choice_ABC",264 "id": 33265 },266 {267 "answer": "A",268 "difficulty": 0.85,269 "image": "./single_images/34.png",270 "question_type": "angle",271 "choice_type": "choice_ABC",272 "id": 34273 },274 {275 "answer": "B",276 "difficulty": 0.85,277 "image": "./single_images/35.png",278 "question_type": "angle",279 "choice_type": "choice_ABC",280 "id": 35281 },282 {283 "answer": "B",284 "difficulty": 0.65,285 "image": "./single_images/36.png",286 "question_type": "angle",287 "choice_type": "choice_ABC",288 "id": 36289 },290 {291 "answer": "A",292 "difficulty": 0.65,293 "image": "./single_images/37.png",294 "question_type": "angle",295 "choice_type": "choice_ABCD",296 "id": 37297 },298 {299 "answer": "C",300 "difficulty": 0.65,301 "image": "./single_images/38.png",302 "question_type": "angle",303 "choice_type": "choice_ABC",304 "id": 38305 },306 {307 "answer": "C",308 "difficulty": 0.85,309 "image": "./single_images/39.png",310 "question_type": "angle",311 "choice_type": "choice_ABCD",312 "id": 39313 },314 {315 "answer": "B",316 "difficulty": 0.65,317 "image": "./single_images/40.png",318 "question_type": "angle",319 "choice_type": "choice_ABCD",320 "id": 40321 },322 {323 "answer": "A",324 "difficulty": 0.85,325 "image": "./single_images/41.png",326 "question_type": "angle",327 "choice_type": "choice_ABC",328 "id": 41329 },330 {331 "answer": "D",332 "difficulty": 0.65,333 "image": "./single_images/42.png",334 "question_type": "angle",335 "choice_type": "choice_ABCD",336 "id": 42337 },338 {339 "answer": "B",340 "difficulty": 0.85,341 "image": "./single_images/43.png",342 "question_type": "angle",343 "choice_type": "choice_ABC",344 "id": 43345 },346 {347 "answer": "C",348 "difficulty": 0.65,349 "image": "./single_images/44.png",350 "question_type": "angle",351 "choice_type": "choice_ABC",352 "id": 44353 },354 {355 "answer": "A",356 "difficulty": 0.65,357 "image": "./single_images/45.png",358 "question_type": "angle",359 "choice_type": "choice_ABCD",360 "id": 45361 },362 {363 "answer": "C",364 "difficulty": 0.65,365 "image": "./single_images/46.png",366 "question_type": "angle",367 "choice_type": "choice_ABCD",368 "id": 46369 },370 {371 "answer": "C",372 "difficulty": 0.65,373 "image": "./single_images/47.png",374 "question_type": "angle",375 "choice_type": "choice_ABC",376 "id": 47377 },378 {379 "answer": "B",380 "difficulty": 0.65,381 "image": "./single_images/48.png",382 "question_type": "angle",383 "choice_type": "choice_ABC",384 "id": 48385 },386 {387 "answer": "C",388 "difficulty": 0.65,389 "image": "./single_images/49.png",390 "question_type": "angle",391 "choice_type": "choice_ABC",392 "id": 49393 },394 {395 "answer": "B",396 "difficulty": 0.65,397 "image": "./single_images/50.png",398 "question_type": "angle",399 "choice_type": "choice_ABCD",400 "id": 50401 },402 {403 "answer": "B",404 "difficulty": 0.65,405 "image": "./single_images/51.png",406 "question_type": "calendar",407 "choice_type": "choice_ABC",408 "id": 51409 },410 {411 "answer": "C",412 "difficulty": 0.85,413 "image": "./single_images/52.png",414 "question_type": "clock",415 "choice_type": "choice_ABC",416 "id": 52417 },418 {419 "answer": "B",420 "difficulty": 0.65,421 "image": "./single_images/53.png",422 "question_type": "clock",423 "choice_type": "choice_ABC",424 "id": 53425 },426 {427 "answer": "C",428 "difficulty": 0.85,429 "image": "./single_images/54.png",430 "question_type": "clock",431 "choice_type": "choice_ABC",432 "id": 54433 },434 {435 "answer": "C",436 "difficulty": 0.85,437 "image": "./single_images/55.png",438 "question_type": "clock",439 "choice_type": "choice_ABC",440 "id": 55441 },442 {443 "answer": "C",444 "difficulty": 0.85,445 "image": "./single_images/56.png",446 "question_type": "clock",447 "choice_type": "choice_ABC",448 "id": 56449 },450 {451 "answer": "A",452 "difficulty": 0.85,453 "image": "./single_images/57.png",454 "question_type": "clock",455 "choice_type": "choice_ABC",456 "id": 57457 },458 {459 "answer": "A",460 "difficulty": 0.85,461 "image": "./single_images/58.png",462 "question_type": "clock",463 "choice_type": "choice_ABC",464 "id": 58465 },466 {467 "answer": "C",468 "difficulty": 0.65,469 "image": "./single_images/59.png",470 "question_type": "clock",471 "choice_type": "choice_ABC",472 "id": 59473 },474 {475 "answer": "B",476 "difficulty": 0.65,477 "image": "./single_images/60.png",478 "question_type": "clock",479 "choice_type": "choice_ABC",480 "id": 60481 },482 {483 "answer": "C",484 "difficulty": 0.85,485 "image": "./single_images/61.png",486 "question_type": "clock",487 "choice_type": "choice_ABC",488 "id": 61489 },490 {491 "answer": "A",492 "difficulty": 0.85,493 "image": "./single_images/62.png",494 "question_type": "clock",495 "choice_type": "choice_ABC",496 "id": 62497 },498 {499 "answer": "B",500 "difficulty": 0.65,501 "image": "./single_images/63.png",502 "question_type": "clock",503 "choice_type": "choice_ABC",504 "id": 63505 },506 {507 "answer": "C",508 "difficulty": 0.85,509 "image": "./single_images/64.png",510 "question_type": "clock",511 "choice_type": "choice_ABC",512 "id": 64513 },514 {515 "answer": "C",516 "difficulty": 0.65,517 "image": "./single_images/65.png",518 "question_type": "clock",519 "choice_type": "choice_ABC",520 "id": 65521 },522 {523 "answer": "C",524 "difficulty": 0.4,525 "image": "./single_images/66.png",526 "question_type": "clock",527 "choice_type": "choice_ABC",528 "id": 66529 },530 {531 "answer": "A",532 "difficulty": 0.85,533 "image": "./single_images/67.png",534 "question_type": "clock",535 "choice_type": "choice_ABC",536 "id": 67537 },538 {539 "answer": "B",540 "difficulty": 0.65,541 "image": "./single_images/68.png",542 "question_type": "clock",543 "choice_type": "choice_ABCD",544 "id": 68545 },546 {547 "answer": "C",548 "difficulty": 0.65,549 "image": "./single_images/69.png",550 "question_type": "clock",551 "choice_type": "choice_ABC",552 "id": 69553 },554 {555 "answer": "A",556 "difficulty": 0.85,557 "image": "./single_images/70.png",558 "question_type": "clock",559 "choice_type": "choice_ABC",560 "id": 70561 },562 {563 "answer": "C",564 "difficulty": 0.85,565 "image": "./single_images/71.png",566 "question_type": "clock",567 "choice_type": "choice_ABC",568 "id": 71569 },570 {571 "answer": "B",572 "difficulty": 0.85,573 "image": "./single_images/72.png",574 "question_type": "clock",575 "choice_type": "choice_ABC",576 "id": 72577 },578 {579 "answer": "A",580 "difficulty": 0.65,581 "image": "./single_images/73.png",582 "question_type": "clock",583 "choice_type": "choice_ABC",584 "id": 73585 },586 {587 "answer": "A",588 "difficulty": 0.65,589 "image": "./single_images/74.png",590 "question_type": "clock",591 "choice_type": "choice_ABCD",592 "id": 74593 },594 {595 "answer": "A",596 "difficulty": 0.65,597 "image": "./single_images/75.png",598 "question_type": "clock",599 "choice_type": "choice_ABC",600 "id": 75601 },602 {603 "answer": "B",604 "difficulty": 0.65,605 "image": "./single_images/76.png",606 "question_type": "clock",607 "choice_type": "choice_ABC",608 "id": 76609 },610 {611 "answer": "A",612 "difficulty": 0.65,613 "image": "./single_images/77.png",614 "question_type": "clock",615 "choice_type": "choice_ABC",616 "id": 77617 },618 {619 "answer": "C",620 "difficulty": 0.65,621 "image": "./single_images/78.png",622 "question_type": "clock",623 "choice_type": "choice_ABC",624 "id": 78625 },626 {627 "answer": "A",628 "difficulty": 0.85,629 "image": "./single_images/79.png",630 "question_type": "clock",631 "choice_type": "choice_ABC",632 "id": 79633 },634 {635 "answer": "B",636 "difficulty": 0.4,637 "image": "./single_images/80.png",638 "question_type": "clock",639 "choice_type": "choice_ABC",640 "id": 80641 },642 {643 "answer": "C",644 "difficulty": 0.85,645 "image": "./single_images/81.png",646 "question_type": "clock",647 "choice_type": "choice_ABC",648 "id": 81649 },650 {651 "answer": "B",652 "difficulty": 0.85,653 "image": "./single_images/82.png",654 "question_type": "cube",655 "choice_type": "choice_ABC",656 "id": 82657 },658 {659 "answer": "A",660 "difficulty": 0.85,661 "image": "./single_images/83.png",662 "question_type": "cube",663 "choice_type": "choice_ABCD",664 "id": 83665 },666 {667 "answer": "B",668 "difficulty": 0.65,669 "image": "./single_images/84.png",670 "question_type": "cube",671 "choice_type": "choice_ABCD",672 "id": 84673 },674 {675 "answer": "C",676 "difficulty": 0.65,677 "image": "./single_images/85.png",678 "question_type": "cube",679 "choice_type": "choice_ABC",680 "id": 85681 },682 {683 "answer": "A",684 "difficulty": 0.65,685 "image": "./single_images/86.png",686 "question_type": "cube",687 "choice_type": "choice_ABCD",688 "id": 86689 },690 {691 "answer": "B",692 "difficulty": 0.65,693 "image": "./single_images/87.png",694 "question_type": "cube",695 "choice_type": "choice_ABCD",696 "id": 87697 },698 {699 "answer": "A",700 "difficulty": 0.65,701 "image": "./single_images/88.png",702 "question_type": "cube",703 "choice_type": "choice_ABCD",704 "id": 88705 },706 {707 "answer": "C",708 "difficulty": 0.65,709 "image": "./single_images/89.png",710 "question_type": "cube",711 "choice_type": "choice_ABCD",712 "id": 89713 },714 {715 "answer": "A",716 "difficulty": 0.65,717 "image": "./single_images/90.png",718 "question_type": "cube",719 "choice_type": "choice_ABCD",720 "id": 90721 },722 {723 "answer": "A",724 "difficulty": 0.65,725 "image": "./single_images/91.png",726 "question_type": "cube",727 "choice_type": "choice_ABC",728 "id": 91729 },730 {731 "answer": "C",732 "difficulty": 0.65,733 "image": "./single_images/92.png",734 "question_type": "cube",735 "choice_type": "choice_ABCD",736 "id": 92737 },738 {739 "answer": "B",740 "difficulty": 0.85,741 "image": "./single_images/93.png",742 "question_type": "cube",743 "choice_type": "choice_ABCD",744 "id": 93745 },746 {747 "answer": "A",748 "difficulty": 0.85,749 "image": "./single_images/94.png",750 "question_type": "cube",751 "choice_type": "choice_ABC",752 "id": 94753 },754 {755 "answer": "D",756 "difficulty": 0.65,757 "image": "./single_images/95.png",758 "question_type": "cube",759 "choice_type": "choice_ABCD",760 "id": 95761 },762 {763 "answer": "D",764 "difficulty": 0.85,765 "image": "./single_images/96.png",766 "question_type": "cube",767 "choice_type": "choice_ABCD",768 "id": 96769 },770 {771 "answer": "C",772 "difficulty": 0.65,773 "image": "./single_images/97.png",774 "question_type": "cube",775 "choice_type": "choice_ABCD",776 "id": 97777 },778 {779 "answer": "B",780 "difficulty": 0.65,781 "image": "./single_images/98.png",782 "question_type": "cube",783 "choice_type": "choice_ABCD",784 "id": 98785 },786 {787 "answer": "C",788 "difficulty": 0.65,789 "image": "./single_images/99.png",790 "question_type": "cube",791 "choice_type": "choice_ABCD",792 "id": 99793 },794 {795 "answer": "C",796 "difficulty": 0.65,797 "image": "./single_images/100.png",798 "question_type": "cube",799 "choice_type": "choice_ABC",800 "id": 100801 },802 {803 "answer": "B",804 "difficulty": 0.65,805 "image": "./single_images/101.png",806 "question_type": "cube",807 "choice_type": "choice_ABCD",808 "id": 101809 },810 {811 "answer": "C",812 "difficulty": 0.65,813 "image": "./single_images/102.png",814 "question_type": "cube",815 "choice_type": "choice_ABC",816 "id": 102817 },818 {819 "answer": "C",820 "difficulty": 0.65,821 "image": "./single_images/103.png",822 "question_type": "cube",823 "choice_type": "choice_ABC",824 "id": 103825 },826 {827 "answer": "D",828 "difficulty": 0.65,829 "image": "./single_images/104.png",830 "question_type": "cube",831 "choice_type": "choice_ABCD",832 "id": 104833 },834 {835 "answer": "C",836 "difficulty": 0.65,837 "image": "./single_images/105.png",838 "question_type": "cube",839 "choice_type": "choice_ABCD",840 "id": 105841 },842 {843 "answer": "C",844 "difficulty": 0.65,845 "image": "./single_images/106.png",846 "question_type": "cube",847 "choice_type": "choice_ABC",848 "id": 106849 },850 {851 "answer": "A",852 "difficulty": 0.65,853 "image": "./single_images/107.png",854 "question_type": "cube",855 "choice_type": "choice_ABC",856 "id": 107857 },858 {859 "answer": "A",860 "difficulty": 0.65,861 "image": "./single_images/108.png",862 "question_type": "cube",863 "choice_type": "choice_ABCD",864 "id": 108865 },866 {867 "answer": "C",868 "difficulty": 0.65,869 "image": "./single_images/109.png",870 "question_type": "cube",871 "choice_type": "choice_ABC",872 "id": 109873 },874 {875 "answer": "C",876 "difficulty": 0.65,877 "image": "./single_images/110.png",878 "question_type": "cube",879 "choice_type": "choice_ABCD",880 "id": 110881 },882 {883 "answer": "A",884 "difficulty": 0.65,885 "image": "./single_images/111.png",886 "question_type": "cube",887 "choice_type": "choice_ABCD",888 "id": 111889 },890 {891 "answer": "A",892 "difficulty": 0.65,893 "image": "./single_images/112.png",894 "question_type": "cube",895 "choice_type": "choice_ABC",896 "id": 112897 },898 {899 "answer": "A",900 "difficulty": 0.64,901 "image": "./single_images/113.png",902 "question_type": "cube",903 "choice_type": "choice_ABC",904 "id": 113905 },906 {907 "answer": "C",908 "difficulty": 0.65,909 "image": "./single_images/114.png",910 "question_type": "cube",911 "choice_type": "choice_ABCD",912 "id": 114913 },914 {915 "answer": "B",916 "difficulty": 0.4,917 "image": "./single_images/115.png",918 "question_type": "cube",919 "choice_type": "choice_ABC",920 "id": 115921 },922 {923 "answer": "C",924 "difficulty": 0.65,925 "image": "./single_images/116.png",926 "question_type": "cube",927 "choice_type": "choice_ABC",928 "id": 116929 },930 {931 "answer": "A",932 "difficulty": 0.65,933 "image": "./single_images/117.png",934 "question_type": "cube",935 "choice_type": "choice_ABCD",936 "id": 117937 },938 {939 "answer": "B",940 "difficulty": 0.65,941 "image": "./single_images/118.png",942 "question_type": "cube",943 "choice_type": "choice_ABCD",944 "id": 118945 },946 {947 "answer": "D",948 "difficulty": 0.65,949 "image": "./single_images/119.png",950 "question_type": "cube",951 "choice_type": "choice_ABCD",952 "id": 119953 },954 {955 "answer": "A",956 "difficulty": 0.65,957 "image": "./single_images/120.png",958 "question_type": "cube",959 "choice_type": "choice_ABCD",960 "id": 120961 },962 {963 "answer": "D",964 "difficulty": 0.65,965 "image": "./single_images/121.png",966 "question_type": "cube",967 "choice_type": "choice_ABCD",968 "id": 121969 },970 {971 "answer": "A",972 "difficulty": 0.85,973 "image": "./single_images/122.png",974 "question_type": "cube",975 "choice_type": "choice_ABCD",976 "id": 122977 },978 {979 "answer": "C",980 "difficulty": 0.65,981 "image": "./single_images/123.png",982 "question_type": "cube",983 "choice_type": "choice_ABCD",984 "id": 123985 },986 {987 "answer": "A",988 "difficulty": 0.4,989 "image": "./single_images/124.png",990 "question_type": "cube",991 "choice_type": "choice_ABCD",992 "id": 124993 },994 {995 "answer": "A",996 "difficulty": 0.65,997 "image": "./single_images/125.png",998 "question_type": "cube",999 "choice_type": "choice_ABCD",1000 "id": 1251001 },1002 {1003 "answer": "B",1004 "difficulty": 0.65,1005 "image": "./single_images/126.png",1006 "question_type": "cube",1007 "choice_type": "choice_ABCD",1008 "id": 1261009 },1010 {1011 "answer": "A",1012 "difficulty": 0.65,1013 "image": "./single_images/127.png",1014 "question_type": "cube",1015 "choice_type": "choice_ABC",1016 "id": 1271017 },1018 {1019 "answer": "C",1020 "difficulty": 0.85,1021 "image": "./single_images/128.png",1022 "question_type": "cube",1023 "choice_type": "choice_ABC",1024 "id": 1281025 },1026 {1027 "answer": "B",1028 "difficulty": 0.65,1029 "image": "./single_images/129.png",1030 "question_type": "cube",1031 "choice_type": "choice_ABCD",1032 "id": 1291033 },1034 {1035 "answer": "A",1036 "difficulty": 0.65,1037 "image": "./single_images/130.png",1038 "question_type": "cube",1039 "choice_type": "choice_ABCD",1040 "id": 1301041 },1042 {1043 "answer": "B",1044 "difficulty": 0.65,1045 "image": "./single_images/131.png",1046 "question_type": "cube",1047 "choice_type": "choice_ABC",1048 "id": 1311049 },1050 {1051 "answer": "C",1052 "difficulty": 0.85,1053 "image": "./single_images/132.png",1054 "question_type": "cube",1055 "choice_type": "choice_ABCD",1056 "id": 1321057 },1058 {1059 "answer": "C",1060 "difficulty": 0.65,1061 "image": "./single_images/133.png",1062 "question_type": "cube",1063 "choice_type": "choice_ABC",1064 "id": 1331065 },1066 {1067 "answer": "A",1068 "difficulty": 0.65,1069 "image": "./single_images/134.png",1070 "question_type": "cube",1071 "choice_type": "choice_ABCD",1072 "id": 1341073 },1074 {1075 "answer": "C",1076 "difficulty": 0.65,1077 "image": "./single_images/135.png",1078 "question_type": "cube",1079 "choice_type": "choice_ABC",1080 "id": 1351081 },1082 {1083 "answer": "C",1084 "difficulty": 0.85,1085 "image": "./single_images/136.png",1086 "question_type": "cube",1087 "choice_type": "choice_ABC",1088 "id": 1361089 },1090 {1091 "answer": "C",1092 "difficulty": 0.65,1093 "image": "./single_images/137.png",1094 "question_type": "cube",1095 "choice_type": "choice_ABC",1096 "id": 1371097 },1098 {1099 "answer": "C",1100 "difficulty": 0.85,1101 "image": "./single_images/138.png",1102 "question_type": "cube",1103 "choice_type": "choice_ABCD",1104 "id": 1381105 },1106 {1107 "answer": "C",1108 "difficulty": 0.65,1109 "image": "./single_images/139.png",1110 "question_type": "cube",1111 "choice_type": "choice_ABC",1112 "id": 1391113 },1114 {1115 "answer": "A",1116 "difficulty": 0.65,1117 "image": "./single_images/140.png",1118 "question_type": "cube",1119 "choice_type": "choice_ABC",1120 "id": 1401121 },1122 {1123 "answer": "C",1124 "difficulty": 0.65,1125 "image": "./single_images/141.png",1126 "question_type": "cube",1127 "choice_type": "choice_ABCD",1128 "id": 1411129 },1130 {1131 "answer": "B",1132 "difficulty": 0.65,1133 "image": "./single_images/142.png",1134 "question_type": "cube",1135 "choice_type": "choice_ABC",1136 "id": 1421137 },1138 {1139 "answer": "B",1140 "difficulty": 0.65,1141 "image": "./single_images/143.png",1142 "question_type": "cube",1143 "choice_type": "choice_ABCD",1144 "id": 1431145 },1146 {1147 "answer": "C",1148 "difficulty": 0.65,1149 "image": "./single_images/144.png",1150 "question_type": "cube",1151 "choice_type": "choice_ABCD",1152 "id": 1441153 },1154 {1155 "answer": "C",1156 "difficulty": 0.65,1157 "image": "./single_images/145.png",1158 "question_type": "cube",1159 "choice_type": "choice_ABCD",1160 "id": 1451161 },1162 {1163 "answer": "A",1164 "difficulty": 0.65,1165 "image": "./single_images/146.png",1166 "question_type": "cube",1167 "choice_type": "choice_ABCD",1168 "id": 1461169 },1170 {1171 "answer": "C",1172 "difficulty": 0.65,1173 "image": "./single_images/147.png",1174 "question_type": "cube",1175 "choice_type": "choice_ABC",1176 "id": 1471177 },1178 {1179 "answer": "B",1180 "difficulty": 0.65,1181 "image": "./single_images/148.png",1182 "question_type": "cube",1183 "choice_type": "choice_ABCD",1184 "id": 1481185 },1186 {1187 "answer": "C",1188 "difficulty": 0.65,1189 "image": "./single_images/149.png",1190 "question_type": "cube",1191 "choice_type": "choice_ABC",1192 "id": 1491193 },1194 {1195 "answer": "C",1196 "difficulty": 0.85,1197 "image": "./single_images/150.png",1198 "question_type": "cube",1199 "choice_type": "choice_ABC",1200 "id": 150