File size: 120,894 Bytes
21d2461 |
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 1001 1002 |
index image_path question answer category
1 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_1.png How many parallelograms are in the image? 3 count
2 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_2.png How many diamonds are in the image? 2 count
3 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_3.png How many squares are in the image? 2 count
4 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_4.png How many pentagons are in the image? 1 count
5 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_5.png How many circles are in the image? 2 count
6 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_6.png How many hexagons are in the image? 1 count
7 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_7.png How many parallelograms are in the image? 1 count
8 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_8.png How many trapezoids are in the image? 1 count
9 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_9.png How many pentagons are in the image? 1 count
10 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_10.png How many triangles are in the image? 2 count
11 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_11.png How many hexagons are in the image? 1 count
12 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_12.png How many pentagons are in the image? 5 count
13 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_13.png How many circles are in the image? 1 count
14 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_14.png How many diamonds are in the image? 2 count
15 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_15.png How many squares are in the image? 1 count
16 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_16.png How many hexagons are in the image? 2 count
17 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_17.png How many triangles are in the image? 3 count
18 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_18.png How many parallelograms are in the image? 2 count
19 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_19.png How many hexagons are in the image? 6 count
20 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_20.png How many triangles are in the image? 4 count
21 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_21.png How many squares are in the image? 1 count
22 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_22.png How many squares are in the image? 2 count
23 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_23.png How many diamonds are in the image? 4 count
24 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_24.png How many parallelograms are in the image? 3 count
25 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_25.png How many triangles are in the image? 1 count
26 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_26.png How many circles are in the image? 4 count
27 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_27.png How many squares are in the image? 2 count
28 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_28.png How many diamonds are in the image? 2 count
29 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_29.png How many pentagons are in the image? 4 count
30 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_30.png How many trapezoids are in the image? 2 count
31 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_31.png How many hexagons are in the image? 1 count
32 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_32.png How many squares are in the image? 2 count
33 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_33.png How many diamonds are in the image? 1 count
34 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_34.png How many trapezoids are in the image? 2 count
35 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_35.png How many trapezoids are in the image? 1 count
36 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_36.png How many parallelograms are in the image? 5 count
37 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_37.png How many triangles are in the image? 2 count
38 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_38.png How many hexagons are in the image? 1 count
39 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_39.png How many hexagons are in the image? 1 count
40 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_40.png How many triangles are in the image? 2 count
41 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_41.png How many parallelograms are in the image? 1 count
42 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_42.png How many circles are in the image? 2 count
43 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_43.png How many parallelograms are in the image? 2 count
44 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_44.png How many squares are in the image? 4 count
45 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_45.png How many triangles are in the image? 1 count
46 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_46.png How many hexagons are in the image? 2 count
47 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_47.png How many pentagons are in the image? 3 count
48 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_48.png How many squares are in the image? 2 count
49 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_49.png How many trapezoids are in the image? 2 count
50 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_50.png How many parallelograms are in the image? 3 count
51 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_51.png How many squares are in the image? 2 count
52 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_52.png How many hexagons are in the image? 6 count
53 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_53.png How many circles are in the image? 1 count
54 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_54.png How many hexagons are in the image? 2 count
55 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_55.png How many pentagons are in the image? 2 count
56 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_56.png How many parallelograms are in the image? 3 count
57 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_57.png How many parallelograms are in the image? 2 count
58 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_58.png How many diamonds are in the image? 2 count
59 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_59.png How many trapezoids are in the image? 4 count
60 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_60.png How many parallelograms are in the image? 1 count
61 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_61.png How many triangles are in the image? 2 count
62 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_62.png How many squares are in the image? 2 count
63 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_63.png How many trapezoids are in the image? 2 count
64 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_64.png How many diamonds are in the image? 1 count
65 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_65.png How many trapezoids are in the image? 2 count
66 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_66.png How many diamonds are in the image? 1 count
67 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_67.png How many trapezoids are in the image? 2 count
68 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_68.png How many triangles are in the image? 2 count
69 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_69.png How many triangles are in the image? 2 count
70 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_70.png How many pentagons are in the image? 1 count
71 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_71.png How many circles are in the image? 2 count
72 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_72.png How many hexagons are in the image? 4 count
73 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_73.png How many triangles are in the image? 2 count
74 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_74.png How many hexagons are in the image? 2 count
75 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_75.png How many triangles are in the image? 2 count
76 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_76.png How many circles are in the image? 2 count
77 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_77.png How many diamonds are in the image? 2 count
78 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_78.png How many pentagons are in the image? 1 count
79 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_79.png How many diamonds are in the image? 2 count
80 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_80.png How many hexagons are in the image? 4 count
81 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_81.png How many diamonds are in the image? 2 count
82 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_82.png How many trapezoids are in the image? 2 count
83 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_83.png How many diamonds are in the image? 5 count
84 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_84.png How many squares are in the image? 1 count
85 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_85.png How many diamonds are in the image? 1 count
86 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_86.png How many squares are in the image? 1 count
87 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_87.png How many circles are in the image? 2 count
88 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_88.png How many trapezoids are in the image? 1 count
89 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_89.png How many pentagons are in the image? 1 count
90 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_90.png How many circles are in the image? 2 count
91 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_91.png How many pentagons are in the image? 2 count
92 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_92.png How many parallelograms are in the image? 1 count
93 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_93.png How many parallelograms are in the image? 4 count
94 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_94.png How many circles are in the image? 3 count
95 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_95.png How many squares are in the image? 1 count
96 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_96.png How many trapezoids are in the image? 2 count
97 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_97.png How many pentagons are in the image? 1 count
98 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_98.png How many trapezoids are in the image? 1 count
99 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_99.png How many hexagons are in the image? 1 count
100 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_100.png How many circles are in the image? 1 count
101 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_101.png How many parallelograms are in the image? 2 count
102 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_102.png How many pentagons are in the image? 2 count
103 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_103.png How many diamonds are in the image? 2 count
104 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_104.png How many parallelograms are in the image? 2 count
105 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_105.png How many diamonds are in the image? 5 count
106 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_106.png How many diamonds are in the image? 2 count
107 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_107.png How many squares are in the image? 1 count
108 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_108.png How many parallelograms are in the image? 1 count
109 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_109.png How many hexagons are in the image? 2 count
110 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_110.png How many circles are in the image? 2 count
111 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_111.png How many triangles are in the image? 1 count
112 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_112.png How many triangles are in the image? 2 count
113 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_113.png How many pentagons are in the image? 1 count
114 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_114.png How many trapezoids are in the image? 1 count
115 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_115.png How many squares are in the image? 1 count
116 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_116.png How many parallelograms are in the image? 6 count
117 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_117.png How many circles are in the image? 6 count
118 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_118.png How many squares are in the image? 1 count
119 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_119.png How many trapezoids are in the image? 1 count
120 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_120.png How many diamonds are in the image? 1 count
121 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_121.png How many trapezoids are in the image? 2 count
122 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_122.png How many pentagons are in the image? 3 count
123 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_123.png How many pentagons are in the image? 1 count
124 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_124.png How many hexagons are in the image? 1 count
125 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_125.png How many squares are in the image? 6 count
126 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_126.png How many squares are in the image? 2 count
127 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_127.png How many trapezoids are in the image? 2 count
128 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_128.png How many pentagons are in the image? 2 count
129 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_129.png How many pentagons are in the image? 1 count
130 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_130.png How many trapezoids are in the image? 3 count
131 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_131.png How many squares are in the image? 2 count
132 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_132.png How many parallelograms are in the image? 2 count
133 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_133.png How many hexagons are in the image? 3 count
134 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_134.png How many pentagons are in the image? 1 count
135 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_135.png How many diamonds are in the image? 3 count
136 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_136.png How many squares are in the image? 2 count
137 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_137.png How many triangles are in the image? 1 count
138 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_138.png How many triangles are in the image? 2 count
139 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_139.png How many trapezoids are in the image? 3 count
140 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_140.png How many trapezoids are in the image? 2 count
141 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_141.png How many squares are in the image? 1 count
142 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_142.png How many circles are in the image? 1 count
143 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_143.png How many parallelograms are in the image? 1 count
144 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_144.png How many hexagons are in the image? 1 count
145 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_145.png How many diamonds are in the image? 2 count
146 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_146.png How many hexagons are in the image? 1 count
147 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_147.png How many hexagons are in the image? 2 count
148 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_148.png How many hexagons are in the image? 1 count
149 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_149.png How many circles are in the image? 3 count
150 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_150.png How many triangles are in the image? 4 count
151 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_151.png How many pentagons are in the image? 1 count
152 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_152.png How many pentagons are in the image? 2 count
153 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_153.png How many diamonds are in the image? 2 count
154 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_154.png How many trapezoids are in the image? 6 count
155 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_155.png How many squares are in the image? 3 count
156 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_156.png How many hexagons are in the image? 4 count
157 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_157.png How many hexagons are in the image? 2 count
158 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_158.png How many hexagons are in the image? 1 count
159 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_159.png How many diamonds are in the image? 2 count
160 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_160.png How many circles are in the image? 2 count
161 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_161.png How many parallelograms are in the image? 2 count
162 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_162.png How many hexagons are in the image? 2 count
163 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_163.png How many squares are in the image? 2 count
164 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_164.png How many circles are in the image? 1 count
165 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_165.png How many hexagons are in the image? 4 count
166 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_166.png How many parallelograms are in the image? 1 count
167 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_167.png How many hexagons are in the image? 2 count
168 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_168.png How many diamonds are in the image? 1 count
169 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_169.png How many diamonds are in the image? 1 count
170 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_170.png How many circles are in the image? 2 count
171 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_171.png How many diamonds are in the image? 2 count
172 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_172.png How many diamonds are in the image? 2 count
173 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_173.png How many circles are in the image? 2 count
174 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_174.png How many parallelograms are in the image? 1 count
175 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_175.png How many triangles are in the image? 3 count
176 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_176.png How many trapezoids are in the image? 3 count
177 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_177.png How many trapezoids are in the image? 1 count
178 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_178.png How many parallelograms are in the image? 2 count
179 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_179.png How many diamonds are in the image? 2 count
180 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_180.png How many circles are in the image? 2 count
181 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_181.png How many trapezoids are in the image? 2 count
182 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_182.png How many trapezoids are in the image? 1 count
183 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_183.png How many squares are in the image? 1 count
184 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_184.png How many parallelograms are in the image? 2 count
185 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_185.png How many circles are in the image? 3 count
186 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_186.png How many diamonds are in the image? 2 count
187 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_187.png How many circles are in the image? 3 count
188 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_188.png How many hexagons are in the image? 2 count
189 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_189.png How many circles are in the image? 1 count
190 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_190.png How many pentagons are in the image? 1 count
191 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_191.png How many diamonds are in the image? 2 count
192 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_192.png How many diamonds are in the image? 3 count
193 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_193.png How many squares are in the image? 1 count
194 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_194.png How many circles are in the image? 2 count
195 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_195.png How many diamonds are in the image? 2 count
196 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_196.png How many triangles are in the image? 1 count
197 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_197.png How many circles are in the image? 2 count
198 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_198.png How many trapezoids are in the image? 3 count
199 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_199.png How many circles are in the image? 1 count
200 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_200.png How many diamonds are in the image? 1 count
201 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_201.png How many squares are in the image? 1 count
202 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_202.png How many hexagons are in the image? 4 count
203 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_203.png How many pentagons are in the image? 2 count
204 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_204.png How many hexagons are in the image? 5 count
205 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_205.png How many hexagons are in the image? 1 count
206 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_206.png How many squares are in the image? 2 count
207 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_207.png How many parallelograms are in the image? 1 count
208 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_208.png How many triangles are in the image? 3 count
209 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_209.png How many squares are in the image? 1 count
210 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_210.png How many pentagons are in the image? 1 count
211 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_211.png How many squares are in the image? 1 count
212 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_212.png How many hexagons are in the image? 2 count
213 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_213.png How many pentagons are in the image? 5 count
214 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_214.png How many triangles are in the image? 2 count
215 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_215.png How many circles are in the image? 1 count
216 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_216.png How many pentagons are in the image? 2 count
217 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_217.png How many parallelograms are in the image? 4 count
218 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_218.png How many squares are in the image? 2 count
219 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_219.png How many circles are in the image? 2 count
220 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_220.png How many parallelograms are in the image? 2 count
221 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_221.png How many diamonds are in the image? 2 count
222 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_222.png How many trapezoids are in the image? 2 count
223 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_223.png How many triangles are in the image? 2 count
224 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_224.png How many squares are in the image? 1 count
225 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_225.png How many parallelograms are in the image? 2 count
226 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_226.png How many parallelograms are in the image? 1 count
227 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_227.png How many parallelograms are in the image? 2 count
228 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_228.png How many hexagons are in the image? 6 count
229 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_229.png How many pentagons are in the image? 2 count
230 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_230.png How many circles are in the image? 2 count
231 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_231.png How many diamonds are in the image? 2 count
232 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_232.png How many diamonds are in the image? 2 count
233 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_233.png How many squares are in the image? 1 count
234 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_234.png How many pentagons are in the image? 1 count
235 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_235.png How many hexagons are in the image? 4 count
236 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_236.png How many parallelograms are in the image? 1 count
237 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_237.png How many hexagons are in the image? 1 count
238 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_238.png How many diamonds are in the image? 2 count
239 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_239.png How many squares are in the image? 2 count
240 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_240.png How many circles are in the image? 2 count
241 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_241.png How many diamonds are in the image? 3 count
242 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_242.png How many triangles are in the image? 2 count
243 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_243.png How many trapezoids are in the image? 1 count
244 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_244.png How many trapezoids are in the image? 2 count
245 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_245.png How many circles are in the image? 2 count
246 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_246.png How many squares are in the image? 2 count
247 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_247.png How many triangles are in the image? 1 count
248 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_248.png How many circles are in the image? 4 count
249 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_249.png How many hexagons are in the image? 1 count
250 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_250.png How many circles are in the image? 4 count
251 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_251.png How many trapezoids are in the image? 5 count
252 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_252.png How many hexagons are in the image? 2 count
253 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_253.png How many triangles are in the image? 2 count
254 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_254.png How many squares are in the image? 1 count
255 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_255.png How many parallelograms are in the image? 2 count
256 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_256.png How many triangles are in the image? 1 count
257 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_257.png How many diamonds are in the image? 2 count
258 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_258.png How many parallelograms are in the image? 1 count
259 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_259.png How many diamonds are in the image? 3 count
260 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_260.png How many diamonds are in the image? 2 count
261 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_261.png How many pentagons are in the image? 1 count
262 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_262.png How many squares are in the image? 2 count
263 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_263.png How many triangles are in the image? 2 count
264 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_264.png How many pentagons are in the image? 1 count
265 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_265.png How many trapezoids are in the image? 2 count
266 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_266.png How many hexagons are in the image? 5 count
267 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_267.png How many trapezoids are in the image? 1 count
268 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_268.png How many parallelograms are in the image? 6 count
269 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_269.png How many pentagons are in the image? 2 count
270 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_270.png How many triangles are in the image? 2 count
271 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_271.png How many diamonds are in the image? 2 count
272 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_272.png How many squares are in the image? 1 count
273 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_273.png How many squares are in the image? 2 count
274 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_274.png How many hexagons are in the image? 2 count
275 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_275.png How many circles are in the image? 1 count
276 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_276.png How many circles are in the image? 2 count
277 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_277.png How many pentagons are in the image? 3 count
278 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_278.png How many pentagons are in the image? 1 count
279 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_279.png How many pentagons are in the image? 2 count
280 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_280.png How many circles are in the image? 1 count
281 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_281.png How many parallelograms are in the image? 1 count
282 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_282.png How many pentagons are in the image? 3 count
283 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_283.png How many pentagons are in the image? 1 count
284 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_284.png How many circles are in the image? 2 count
285 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_285.png How many pentagons are in the image? 2 count
286 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_286.png How many circles are in the image? 1 count
287 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_287.png How many circles are in the image? 1 count
288 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_288.png How many parallelograms are in the image? 4 count
289 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_289.png How many hexagons are in the image? 2 count
290 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_290.png How many triangles are in the image? 1 count
291 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_291.png How many triangles are in the image? 2 count
292 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_292.png How many squares are in the image? 1 count
293 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_293.png How many parallelograms are in the image? 2 count
294 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_294.png How many hexagons are in the image? 2 count
295 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_295.png How many squares are in the image? 1 count
296 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_296.png How many circles are in the image? 2 count
297 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_297.png How many triangles are in the image? 1 count
298 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_298.png How many diamonds are in the image? 6 count
299 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_299.png How many circles are in the image? 5 count
300 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_300.png How many squares are in the image? 1 count
301 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_301.png How many parallelograms are in the image? 2 count
302 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_302.png How many diamonds are in the image? 2 count
303 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_303.png How many circles are in the image? 1 count
304 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_304.png How many triangles are in the image? 2 count
305 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_305.png How many parallelograms are in the image? 1 count
306 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_306.png How many triangles are in the image? 2 count
307 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_307.png How many trapezoids are in the image? 2 count
308 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_308.png How many hexagons are in the image? 4 count
309 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_309.png How many circles are in the image? 4 count
310 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_310.png How many pentagons are in the image? 1 count
311 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_311.png How many circles are in the image? 4 count
312 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_312.png How many parallelograms are in the image? 1 count
313 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_313.png How many parallelograms are in the image? 1 count
314 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_314.png How many diamonds are in the image? 2 count
315 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_315.png How many triangles are in the image? 1 count
316 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_316.png How many triangles are in the image? 2 count
317 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_317.png How many hexagons are in the image? 2 count
318 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_318.png How many circles are in the image? 2 count
319 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_319.png How many squares are in the image? 2 count
320 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_320.png How many circles are in the image? 1 count
321 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_321.png How many diamonds are in the image? 1 count
322 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_322.png How many hexagons are in the image? 3 count
323 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_323.png How many squares are in the image? 1 count
324 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_324.png How many squares are in the image? 1 count
325 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_325.png How many pentagons are in the image? 1 count
326 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_326.png How many squares are in the image? 2 count
327 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_327.png How many diamonds are in the image? 1 count
328 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_328.png How many diamonds are in the image? 3 count
329 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_329.png How many squares are in the image? 1 count
330 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_330.png How many circles are in the image? 2 count
331 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_331.png How many squares are in the image? 1 count
332 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_332.png How many trapezoids are in the image? 2 count
333 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_333.png How many parallelograms are in the image? 3 count
334 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_334.png How many circles are in the image? 1 count
335 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_335.png How many pentagons are in the image? 1 count
336 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_336.png How many squares are in the image? 2 count
337 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_337.png How many hexagons are in the image? 2 count
338 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_338.png How many pentagons are in the image? 1 count
339 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_339.png How many circles are in the image? 2 count
340 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_340.png How many squares are in the image? 1 count
341 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_341.png How many parallelograms are in the image? 2 count
342 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_342.png How many diamonds are in the image? 1 count
343 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_343.png How many parallelograms are in the image? 2 count
344 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_344.png How many triangles are in the image? 2 count
345 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_345.png How many pentagons are in the image? 2 count
346 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_346.png How many triangles are in the image? 2 count
347 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_347.png How many diamonds are in the image? 3 count
348 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_348.png How many parallelograms are in the image? 1 count
349 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_349.png How many trapezoids are in the image? 1 count
350 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_350.png How many pentagons are in the image? 1 count
351 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_351.png How many circles are in the image? 4 count
352 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_352.png How many pentagons are in the image? 2 count
353 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_353.png How many pentagons are in the image? 1 count
354 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_354.png How many parallelograms are in the image? 3 count
355 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_355.png How many circles are in the image? 2 count
356 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_356.png How many hexagons are in the image? 3 count
357 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_357.png How many hexagons are in the image? 4 count
358 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_358.png How many hexagons are in the image? 2 count
359 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_359.png How many trapezoids are in the image? 2 count
360 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_360.png How many triangles are in the image? 2 count
361 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_361.png How many hexagons are in the image? 2 count
362 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_362.png How many trapezoids are in the image? 2 count
363 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_363.png How many triangles are in the image? 4 count
364 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_364.png How many trapezoids are in the image? 1 count
365 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_365.png How many circles are in the image? 5 count
366 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_366.png How many circles are in the image? 1 count
367 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_367.png How many diamonds are in the image? 2 count
368 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_368.png How many parallelograms are in the image? 1 count
369 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_369.png How many trapezoids are in the image? 2 count
370 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_370.png How many hexagons are in the image? 2 count
371 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_371.png How many circles are in the image? 2 count
372 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_372.png How many hexagons are in the image? 2 count
373 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_373.png How many diamonds are in the image? 2 count
374 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_374.png How many circles are in the image? 1 count
375 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_375.png How many parallelograms are in the image? 1 count
376 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_376.png How many pentagons are in the image? 2 count
377 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_377.png How many parallelograms are in the image? 2 count
378 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_378.png How many diamonds are in the image? 2 count
379 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_379.png How many diamonds are in the image? 3 count
380 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_380.png How many triangles are in the image? 3 count
381 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_381.png How many trapezoids are in the image? 2 count
382 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_382.png How many pentagons are in the image? 2 count
383 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_383.png How many triangles are in the image? 2 count
384 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_384.png How many trapezoids are in the image? 3 count
385 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_385.png How many parallelograms are in the image? 1 count
386 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_386.png How many diamonds are in the image? 3 count
387 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_387.png How many trapezoids are in the image? 1 count
388 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_388.png How many squares are in the image? 1 count
389 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_389.png How many diamonds are in the image? 1 count
390 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_390.png How many squares are in the image? 1 count
391 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_391.png How many trapezoids are in the image? 2 count
392 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_392.png How many pentagons are in the image? 2 count
393 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_393.png How many squares are in the image? 1 count
394 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_394.png How many circles are in the image? 2 count
395 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_395.png How many pentagons are in the image? 2 count
396 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_396.png How many circles are in the image? 4 count
397 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_397.png How many trapezoids are in the image? 2 count
398 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_398.png How many parallelograms are in the image? 1 count
399 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_399.png How many diamonds are in the image? 2 count
400 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_400.png How many pentagons are in the image? 2 count
401 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_401.png How many triangles are in the image? 1 count
402 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_402.png How many hexagons are in the image? 2 count
403 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_403.png How many triangles are in the image? 1 count
404 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_404.png How many hexagons are in the image? 4 count
405 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_405.png How many hexagons are in the image? 2 count
406 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_406.png How many trapezoids are in the image? 1 count
407 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_407.png How many parallelograms are in the image? 1 count
408 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_408.png How many trapezoids are in the image? 2 count
409 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_409.png How many hexagons are in the image? 1 count
410 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_410.png How many hexagons are in the image? 4 count
411 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_411.png How many squares are in the image? 1 count
412 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_412.png How many parallelograms are in the image? 2 count
413 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_413.png How many pentagons are in the image? 6 count
414 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_414.png How many pentagons are in the image? 3 count
415 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_415.png How many hexagons are in the image? 2 count
416 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_416.png How many circles are in the image? 1 count
417 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_417.png How many triangles are in the image? 1 count
418 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_418.png How many squares are in the image? 2 count
419 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_419.png How many parallelograms are in the image? 2 count
420 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_420.png How many circles are in the image? 2 count
421 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_421.png How many diamonds are in the image? 1 count
422 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_422.png How many pentagons are in the image? 1 count
423 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_423.png How many trapezoids are in the image? 1 count
424 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_424.png How many triangles are in the image? 2 count
425 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_425.png How many squares are in the image? 6 count
426 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_426.png How many diamonds are in the image? 2 count
427 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_427.png How many diamonds are in the image? 2 count
428 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_428.png How many trapezoids are in the image? 1 count
429 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_429.png How many parallelograms are in the image? 2 count
430 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_430.png How many parallelograms are in the image? 2 count
431 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_431.png How many triangles are in the image? 2 count
432 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_432.png How many squares are in the image? 2 count
433 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_433.png How many trapezoids are in the image? 2 count
434 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_434.png How many parallelograms are in the image? 1 count
435 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_435.png How many pentagons are in the image? 1 count
436 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_436.png How many squares are in the image? 1 count
437 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_437.png How many circles are in the image? 2 count
438 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_438.png How many circles are in the image? 2 count
439 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_439.png How many triangles are in the image? 4 count
440 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_440.png How many triangles are in the image? 2 count
441 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_441.png How many circles are in the image? 6 count
442 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_442.png How many hexagons are in the image? 1 count
443 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_443.png How many circles are in the image? 1 count
444 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_444.png How many circles are in the image? 2 count
445 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_445.png How many pentagons are in the image? 2 count
446 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_446.png How many pentagons are in the image? 1 count
447 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_447.png How many circles are in the image? 3 count
448 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_448.png How many triangles are in the image? 3 count
449 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_449.png How many diamonds are in the image? 1 count
450 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_450.png How many diamonds are in the image? 2 count
451 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_451.png How many squares are in the image? 2 count
452 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_452.png How many triangles are in the image? 1 count
453 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_453.png How many pentagons are in the image? 3 count
454 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_454.png How many triangles are in the image? 3 count
455 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_455.png How many trapezoids are in the image? 3 count
456 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_456.png How many circles are in the image? 2 count
457 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_457.png How many parallelograms are in the image? 2 count
458 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_458.png How many squares are in the image? 1 count
459 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_459.png How many circles are in the image? 3 count
460 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_460.png How many diamonds are in the image? 5 count
461 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_461.png How many parallelograms are in the image? 2 count
462 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_462.png How many hexagons are in the image? 2 count
463 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_463.png How many parallelograms are in the image? 2 count
464 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_464.png How many triangles are in the image? 1 count
465 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_465.png How many triangles are in the image? 1 count
466 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_466.png How many diamonds are in the image? 2 count
467 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_467.png How many triangles are in the image? 2 count
468 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_468.png How many parallelograms are in the image? 2 count
469 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_469.png How many squares are in the image? 2 count
470 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_470.png How many hexagons are in the image? 2 count
471 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_471.png How many trapezoids are in the image? 1 count
472 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_472.png How many hexagons are in the image? 4 count
473 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_473.png How many circles are in the image? 2 count
474 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_474.png How many diamonds are in the image? 3 count
475 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_475.png How many triangles are in the image? 2 count
476 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_476.png How many diamonds are in the image? 2 count
477 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_477.png How many squares are in the image? 2 count
478 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_478.png How many squares are in the image? 6 count
479 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_479.png How many triangles are in the image? 2 count
480 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_480.png How many circles are in the image? 1 count
481 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_481.png How many diamonds are in the image? 2 count
482 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_482.png How many squares are in the image? 2 count
483 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_483.png How many hexagons are in the image? 2 count
484 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_484.png How many diamonds are in the image? 1 count
485 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_485.png How many pentagons are in the image? 2 count
486 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_486.png How many circles are in the image? 2 count
487 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_487.png How many hexagons are in the image? 4 count
488 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_488.png How many triangles are in the image? 2 count
489 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_489.png How many pentagons are in the image? 1 count
490 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_490.png How many circles are in the image? 1 count
491 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_491.png How many diamonds are in the image? 3 count
492 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_492.png How many squares are in the image? 2 count
493 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_493.png How many squares are in the image? 2 count
494 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_494.png How many squares are in the image? 1 count
495 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_495.png How many squares are in the image? 2 count
496 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_496.png How many diamonds are in the image? 2 count
497 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_497.png How many triangles are in the image? 3 count
498 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_498.png How many squares are in the image? 2 count
499 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_499.png How many trapezoids are in the image? 3 count
500 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_500.png How many squares are in the image? 1 count
501 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_501.png How many parallelograms are in the image? 4 count
502 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_502.png How many parallelograms are in the image? 1 count
503 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_503.png How many parallelograms are in the image? 1 count
504 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_504.png How many trapezoids are in the image? 2 count
505 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_505.png How many parallelograms are in the image? 2 count
506 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_506.png How many pentagons are in the image? 2 count
507 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_507.png How many diamonds are in the image? 2 count
508 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_508.png How many parallelograms are in the image? 1 count
509 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_509.png How many squares are in the image? 3 count
510 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_510.png How many diamonds are in the image? 2 count
511 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_511.png How many pentagons are in the image? 3 count
512 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_512.png How many squares are in the image? 5 count
513 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_513.png How many hexagons are in the image? 2 count
514 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_514.png How many circles are in the image? 1 count
515 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_515.png How many circles are in the image? 4 count
516 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_516.png How many hexagons are in the image? 3 count
517 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_517.png How many circles are in the image? 2 count
518 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_518.png How many pentagons are in the image? 3 count
519 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_519.png How many pentagons are in the image? 4 count
520 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_520.png How many squares are in the image? 3 count
521 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_521.png How many circles are in the image? 3 count
522 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_522.png How many trapezoids are in the image? 1 count
523 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_523.png How many triangles are in the image? 2 count
524 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_524.png How many pentagons are in the image? 1 count
525 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_525.png How many squares are in the image? 2 count
526 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_526.png How many parallelograms are in the image? 1 count
527 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_527.png How many pentagons are in the image? 2 count
528 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_528.png How many squares are in the image? 2 count
529 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_529.png How many triangles are in the image? 2 count
530 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_530.png How many diamonds are in the image? 1 count
531 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_531.png How many diamonds are in the image? 2 count
532 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_532.png How many parallelograms are in the image? 4 count
533 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_533.png How many circles are in the image? 1 count
534 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_534.png How many trapezoids are in the image? 2 count
535 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_535.png How many triangles are in the image? 1 count
536 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_536.png How many squares are in the image? 5 count
537 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_537.png How many circles are in the image? 4 count
538 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_538.png How many parallelograms are in the image? 2 count
539 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_539.png How many squares are in the image? 2 count
540 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_540.png How many parallelograms are in the image? 2 count
541 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_541.png How many hexagons are in the image? 1 count
542 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_542.png How many parallelograms are in the image? 1 count
543 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_543.png How many pentagons are in the image? 4 count
544 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_544.png How many trapezoids are in the image? 1 count
545 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_545.png How many parallelograms are in the image? 3 count
546 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_546.png How many parallelograms are in the image? 2 count
547 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_547.png How many triangles are in the image? 3 count
548 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_548.png How many trapezoids are in the image? 2 count
549 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_549.png How many pentagons are in the image? 4 count
550 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_550.png How many squares are in the image? 2 count
551 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_551.png How many pentagons are in the image? 2 count
552 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_552.png How many diamonds are in the image? 2 count
553 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_553.png How many trapezoids are in the image? 2 count
554 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_554.png How many trapezoids are in the image? 2 count
555 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_555.png How many circles are in the image? 2 count
556 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_556.png How many diamonds are in the image? 3 count
557 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_557.png How many squares are in the image? 3 count
558 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_558.png How many hexagons are in the image? 1 count
559 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_559.png How many diamonds are in the image? 1 count
560 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_560.png How many pentagons are in the image? 4 count
561 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_561.png How many hexagons are in the image? 6 count
562 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_562.png How many hexagons are in the image? 1 count
563 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_563.png How many triangles are in the image? 3 count
564 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_564.png How many pentagons are in the image? 4 count
565 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_565.png How many hexagons are in the image? 2 count
566 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_566.png How many hexagons are in the image? 4 count
567 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_567.png How many circles are in the image? 1 count
568 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_568.png How many trapezoids are in the image? 4 count
569 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_569.png How many circles are in the image? 4 count
570 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_570.png How many pentagons are in the image? 1 count
571 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_571.png How many squares are in the image? 1 count
572 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_572.png How many trapezoids are in the image? 1 count
573 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_573.png How many triangles are in the image? 2 count
574 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_574.png How many pentagons are in the image? 1 count
575 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_575.png How many triangles are in the image? 1 count
576 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_576.png How many circles are in the image? 1 count
577 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_577.png How many parallelograms are in the image? 1 count
578 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_578.png How many triangles are in the image? 5 count
579 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_579.png How many triangles are in the image? 2 count
580 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_580.png How many triangles are in the image? 2 count
581 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_581.png How many diamonds are in the image? 2 count
582 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_582.png How many triangles are in the image? 2 count
583 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_583.png How many squares are in the image? 1 count
584 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_584.png How many hexagons are in the image? 3 count
585 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_585.png How many trapezoids are in the image? 2 count
586 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_586.png How many pentagons are in the image? 1 count
587 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_587.png How many parallelograms are in the image? 1 count
588 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_588.png How many diamonds are in the image? 2 count
589 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_589.png How many pentagons are in the image? 1 count
590 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_590.png How many hexagons are in the image? 4 count
591 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_591.png How many hexagons are in the image? 2 count
592 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_592.png How many hexagons are in the image? 3 count
593 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_593.png How many hexagons are in the image? 2 count
594 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_594.png How many triangles are in the image? 1 count
595 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_595.png How many pentagons are in the image? 2 count
596 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_596.png How many trapezoids are in the image? 4 count
597 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_597.png How many trapezoids are in the image? 2 count
598 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_598.png How many diamonds are in the image? 2 count
599 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_599.png How many diamonds are in the image? 3 count
600 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_600.png How many pentagons are in the image? 2 count
601 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_601.png How many triangles are in the image? 2 count
602 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_602.png How many pentagons are in the image? 1 count
603 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_603.png How many squares are in the image? 1 count
604 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_604.png How many squares are in the image? 2 count
605 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_605.png How many diamonds are in the image? 1 count
606 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_606.png How many squares are in the image? 1 count
607 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_607.png How many squares are in the image? 4 count
608 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_608.png How many circles are in the image? 2 count
609 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_609.png How many parallelograms are in the image? 1 count
610 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_610.png How many triangles are in the image? 1 count
611 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_611.png How many circles are in the image? 1 count
612 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_612.png How many circles are in the image? 1 count
613 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_613.png How many hexagons are in the image? 1 count
614 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_614.png How many circles are in the image? 1 count
615 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_615.png How many pentagons are in the image? 1 count
616 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_616.png How many parallelograms are in the image? 1 count
617 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_617.png How many squares are in the image? 1 count
618 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_618.png How many parallelograms are in the image? 2 count
619 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_619.png How many parallelograms are in the image? 1 count
620 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_620.png How many parallelograms are in the image? 2 count
621 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_621.png How many circles are in the image? 1 count
622 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_622.png How many parallelograms are in the image? 2 count
623 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_623.png How many parallelograms are in the image? 3 count
624 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_624.png How many parallelograms are in the image? 3 count
625 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_625.png How many triangles are in the image? 2 count
626 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_626.png How many parallelograms are in the image? 1 count
627 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_627.png How many diamonds are in the image? 2 count
628 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_628.png How many trapezoids are in the image? 1 count
629 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_629.png How many parallelograms are in the image? 2 count
630 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_630.png How many triangles are in the image? 2 count
631 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_631.png How many trapezoids are in the image? 2 count
632 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_632.png How many diamonds are in the image? 4 count
633 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_633.png How many triangles are in the image? 5 count
634 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_634.png How many squares are in the image? 2 count
635 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_635.png How many squares are in the image? 2 count
636 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_636.png How many trapezoids are in the image? 1 count
637 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_637.png How many triangles are in the image? 1 count
638 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_638.png How many trapezoids are in the image? 1 count
639 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_639.png How many triangles are in the image? 1 count
640 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_640.png How many trapezoids are in the image? 2 count
641 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_641.png How many squares are in the image? 2 count
642 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_642.png How many parallelograms are in the image? 2 count
643 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_643.png How many circles are in the image? 2 count
644 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_644.png How many diamonds are in the image? 4 count
645 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_645.png How many triangles are in the image? 2 count
646 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_646.png How many pentagons are in the image? 2 count
647 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_647.png How many pentagons are in the image? 1 count
648 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_648.png How many diamonds are in the image? 1 count
649 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_649.png How many parallelograms are in the image? 4 count
650 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_650.png How many pentagons are in the image? 1 count
651 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_651.png How many triangles are in the image? 2 count
652 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_652.png How many squares are in the image? 2 count
653 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_653.png How many diamonds are in the image? 1 count
654 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_654.png How many diamonds are in the image? 6 count
655 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_655.png How many squares are in the image? 1 count
656 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_656.png How many parallelograms are in the image? 2 count
657 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_657.png How many pentagons are in the image? 1 count
658 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_658.png How many trapezoids are in the image? 1 count
659 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_659.png How many triangles are in the image? 5 count
660 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_660.png How many circles are in the image? 2 count
661 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_661.png How many circles are in the image? 3 count
662 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_662.png How many triangles are in the image? 3 count
663 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_663.png How many triangles are in the image? 1 count
664 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_664.png How many pentagons are in the image? 4 count
665 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_665.png How many hexagons are in the image? 6 count
666 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_666.png How many trapezoids are in the image? 1 count
667 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_667.png How many hexagons are in the image? 1 count
668 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_668.png How many triangles are in the image? 1 count
669 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_669.png How many hexagons are in the image? 2 count
670 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_670.png How many squares are in the image? 2 count
671 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_671.png How many hexagons are in the image? 3 count
672 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_672.png How many pentagons are in the image? 2 count
673 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_673.png How many pentagons are in the image? 2 count
674 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_674.png How many circles are in the image? 1 count
675 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_675.png How many trapezoids are in the image? 5 count
676 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_676.png How many pentagons are in the image? 1 count
677 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_677.png How many circles are in the image? 2 count
678 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_678.png How many parallelograms are in the image? 1 count
679 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_679.png How many diamonds are in the image? 4 count
680 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_680.png How many diamonds are in the image? 2 count
681 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_681.png How many parallelograms are in the image? 2 count
682 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_682.png How many triangles are in the image? 1 count
683 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_683.png How many diamonds are in the image? 4 count
684 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_684.png How many triangles are in the image? 3 count
685 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_685.png How many parallelograms are in the image? 1 count
686 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_686.png How many triangles are in the image? 1 count
687 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_687.png How many parallelograms are in the image? 1 count
688 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_688.png How many trapezoids are in the image? 5 count
689 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_689.png How many squares are in the image? 2 count
690 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_690.png How many pentagons are in the image? 2 count
691 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_691.png How many hexagons are in the image? 1 count
692 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_692.png How many pentagons are in the image? 2 count
693 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_693.png How many hexagons are in the image? 1 count
694 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_694.png How many parallelograms are in the image? 4 count
695 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_695.png How many parallelograms are in the image? 2 count
696 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_696.png How many squares are in the image? 2 count
697 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_697.png How many diamonds are in the image? 1 count
698 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_698.png How many squares are in the image? 4 count
699 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_699.png How many hexagons are in the image? 6 count
700 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_700.png How many squares are in the image? 2 count
701 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_701.png How many hexagons are in the image? 2 count
702 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_702.png How many diamonds are in the image? 1 count
703 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_703.png How many triangles are in the image? 2 count
704 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_704.png How many trapezoids are in the image? 2 count
705 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_705.png How many hexagons are in the image? 2 count
706 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_706.png How many parallelograms are in the image? 1 count
707 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_707.png How many circles are in the image? 3 count
708 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_708.png How many trapezoids are in the image? 2 count
709 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_709.png How many parallelograms are in the image? 2 count
710 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_710.png How many squares are in the image? 1 count
711 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_711.png How many diamonds are in the image? 3 count
712 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_712.png How many trapezoids are in the image? 6 count
713 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_713.png How many squares are in the image? 2 count
714 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_714.png How many hexagons are in the image? 2 count
715 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_715.png How many pentagons are in the image? 4 count
716 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_716.png How many hexagons are in the image? 4 count
717 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_717.png How many hexagons are in the image? 1 count
718 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_718.png How many squares are in the image? 1 count
719 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_719.png How many parallelograms are in the image? 1 count
720 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_720.png How many triangles are in the image? 1 count
721 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_721.png How many squares are in the image? 1 count
722 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_722.png How many squares are in the image? 2 count
723 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_723.png How many triangles are in the image? 2 count
724 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_724.png How many triangles are in the image? 4 count
725 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_725.png How many circles are in the image? 1 count
726 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_726.png How many circles are in the image? 2 count
727 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_727.png How many squares are in the image? 4 count
728 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_728.png How many parallelograms are in the image? 2 count
729 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_729.png How many hexagons are in the image? 2 count
730 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_730.png How many parallelograms are in the image? 2 count
731 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_731.png How many triangles are in the image? 1 count
732 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_732.png How many squares are in the image? 2 count
733 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_733.png How many squares are in the image? 1 count
734 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_734.png How many circles are in the image? 1 count
735 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_735.png How many squares are in the image? 1 count
736 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_736.png How many hexagons are in the image? 2 count
737 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_737.png How many hexagons are in the image? 2 count
738 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_738.png How many trapezoids are in the image? 1 count
739 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_739.png How many parallelograms are in the image? 4 count
740 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_740.png How many squares are in the image? 2 count
741 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_741.png How many trapezoids are in the image? 2 count
742 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_742.png How many parallelograms are in the image? 2 count
743 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_743.png How many hexagons are in the image? 2 count
744 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_744.png How many pentagons are in the image? 1 count
745 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_745.png How many diamonds are in the image? 3 count
746 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_746.png How many pentagons are in the image? 1 count
747 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_747.png How many circles are in the image? 1 count
748 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_748.png How many diamonds are in the image? 2 count
749 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_749.png How many parallelograms are in the image? 1 count
750 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_750.png How many pentagons are in the image? 2 count
751 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_751.png How many diamonds are in the image? 2 count
752 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_752.png How many hexagons are in the image? 2 count
753 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_753.png How many squares are in the image? 2 count
754 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_754.png How many squares are in the image? 2 count
755 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_755.png How many circles are in the image? 1 count
756 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_756.png How many parallelograms are in the image? 2 count
757 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_757.png How many pentagons are in the image? 1 count
758 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_758.png How many triangles are in the image? 3 count
759 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_759.png How many hexagons are in the image? 2 count
760 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_760.png How many trapezoids are in the image? 5 count
761 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_761.png How many triangles are in the image? 2 count
762 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_762.png How many triangles are in the image? 3 count
763 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_763.png How many pentagons are in the image? 1 count
764 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_764.png How many diamonds are in the image? 2 count
765 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_765.png How many hexagons are in the image? 3 count
766 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_766.png How many trapezoids are in the image? 2 count
767 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_767.png How many hexagons are in the image? 2 count
768 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_768.png How many triangles are in the image? 1 count
769 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_769.png How many parallelograms are in the image? 6 count
770 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_770.png How many parallelograms are in the image? 1 count
771 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_771.png How many squares are in the image? 2 count
772 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_772.png How many pentagons are in the image? 1 count
773 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_773.png How many trapezoids are in the image? 4 count
774 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_774.png How many squares are in the image? 3 count
775 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_775.png How many parallelograms are in the image? 2 count
776 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_776.png How many parallelograms are in the image? 2 count
777 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_777.png How many hexagons are in the image? 3 count
778 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_778.png How many diamonds are in the image? 2 count
779 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_779.png How many hexagons are in the image? 2 count
780 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_780.png How many parallelograms are in the image? 1 count
781 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_781.png How many parallelograms are in the image? 4 count
782 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_782.png How many parallelograms are in the image? 2 count
783 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_783.png How many parallelograms are in the image? 2 count
784 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_784.png How many parallelograms are in the image? 2 count
785 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_785.png How many pentagons are in the image? 2 count
786 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_786.png How many parallelograms are in the image? 1 count
787 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_787.png How many circles are in the image? 1 count
788 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_788.png How many triangles are in the image? 4 count
789 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_789.png How many triangles are in the image? 1 count
790 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_790.png How many trapezoids are in the image? 2 count
791 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_791.png How many parallelograms are in the image? 2 count
792 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_792.png How many diamonds are in the image? 4 count
793 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_793.png How many squares are in the image? 2 count
794 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_794.png How many circles are in the image? 3 count
795 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_795.png How many squares are in the image? 6 count
796 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_796.png How many triangles are in the image? 2 count
797 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_797.png How many squares are in the image? 2 count
798 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_798.png How many squares are in the image? 2 count
799 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_799.png How many hexagons are in the image? 2 count
800 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_800.png How many diamonds are in the image? 1 count
801 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_801.png How many diamonds are in the image? 2 count
802 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_802.png How many hexagons are in the image? 1 count
803 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_803.png How many squares are in the image? 1 count
804 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_804.png How many trapezoids are in the image? 2 count
805 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_805.png How many triangles are in the image? 2 count
806 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_806.png How many parallelograms are in the image? 1 count
807 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_807.png How many trapezoids are in the image? 2 count
808 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_808.png How many trapezoids are in the image? 1 count
809 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_809.png How many circles are in the image? 1 count
810 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_810.png How many triangles are in the image? 1 count
811 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_811.png How many trapezoids are in the image? 2 count
812 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_812.png How many pentagons are in the image? 1 count
813 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_813.png How many hexagons are in the image? 1 count
814 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_814.png How many squares are in the image? 2 count
815 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_815.png How many squares are in the image? 2 count
816 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_816.png How many parallelograms are in the image? 2 count
817 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_817.png How many squares are in the image? 4 count
818 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_818.png How many hexagons are in the image? 2 count
819 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_819.png How many squares are in the image? 1 count
820 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_820.png How many hexagons are in the image? 1 count
821 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_821.png How many squares are in the image? 1 count
822 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_822.png How many parallelograms are in the image? 2 count
823 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_823.png How many circles are in the image? 2 count
824 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_824.png How many triangles are in the image? 5 count
825 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_825.png How many diamonds are in the image? 3 count
826 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_826.png How many diamonds are in the image? 1 count
827 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_827.png How many trapezoids are in the image? 5 count
828 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_828.png How many hexagons are in the image? 1 count
829 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_829.png How many triangles are in the image? 2 count
830 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_830.png How many squares are in the image? 1 count
831 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_831.png How many trapezoids are in the image? 4 count
832 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_832.png How many triangles are in the image? 2 count
833 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_833.png How many trapezoids are in the image? 1 count
834 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_834.png How many squares are in the image? 2 count
835 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_835.png How many parallelograms are in the image? 1 count
836 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_836.png How many circles are in the image? 2 count
837 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_837.png How many parallelograms are in the image? 2 count
838 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_838.png How many pentagons are in the image? 2 count
839 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_839.png How many triangles are in the image? 1 count
840 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_840.png How many pentagons are in the image? 1 count
841 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_841.png How many hexagons are in the image? 2 count
842 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_842.png How many pentagons are in the image? 1 count
843 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_843.png How many diamonds are in the image? 1 count
844 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_844.png How many squares are in the image? 2 count
845 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_845.png How many diamonds are in the image? 2 count
846 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_846.png How many pentagons are in the image? 1 count
847 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_847.png How many diamonds are in the image? 2 count
848 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_848.png How many hexagons are in the image? 1 count
849 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_849.png How many triangles are in the image? 2 count
850 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_850.png How many hexagons are in the image? 1 count
851 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_851.png How many circles are in the image? 1 count
852 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_852.png How many pentagons are in the image? 2 count
853 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_853.png How many hexagons are in the image? 2 count
854 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_854.png How many parallelograms are in the image? 2 count
855 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_855.png How many triangles are in the image? 1 count
856 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_856.png How many trapezoids are in the image? 2 count
857 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_857.png How many trapezoids are in the image? 3 count
858 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_858.png How many trapezoids are in the image? 1 count
859 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_859.png How many trapezoids are in the image? 5 count
860 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_860.png How many parallelograms are in the image? 1 count
861 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_861.png How many pentagons are in the image? 1 count
862 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_862.png How many hexagons are in the image? 3 count
863 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_863.png How many circles are in the image? 3 count
864 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_864.png How many pentagons are in the image? 1 count
865 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_865.png How many triangles are in the image? 3 count
866 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_866.png How many triangles are in the image? 4 count
867 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_867.png How many squares are in the image? 1 count
868 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_868.png How many triangles are in the image? 3 count
869 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_869.png How many pentagons are in the image? 4 count
870 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_870.png How many triangles are in the image? 2 count
871 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_871.png How many squares are in the image? 2 count
872 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_872.png How many trapezoids are in the image? 1 count
873 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_873.png How many pentagons are in the image? 1 count
874 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_874.png How many trapezoids are in the image? 1 count
875 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_875.png How many triangles are in the image? 2 count
876 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_876.png How many circles are in the image? 2 count
877 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_877.png How many pentagons are in the image? 1 count
878 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_878.png How many squares are in the image? 1 count
879 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_879.png How many parallelograms are in the image? 2 count
880 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_880.png How many pentagons are in the image? 2 count
881 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_881.png How many circles are in the image? 1 count
882 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_882.png How many squares are in the image? 1 count
883 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_883.png How many hexagons are in the image? 2 count
884 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_884.png How many hexagons are in the image? 2 count
885 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_885.png How many triangles are in the image? 6 count
886 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_886.png How many pentagons are in the image? 1 count
887 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_887.png How many triangles are in the image? 3 count
888 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_888.png How many hexagons are in the image? 1 count
889 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_889.png How many hexagons are in the image? 1 count
890 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_890.png How many parallelograms are in the image? 1 count
891 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_891.png How many squares are in the image? 3 count
892 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_892.png How many squares are in the image? 2 count
893 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_893.png How many pentagons are in the image? 2 count
894 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_894.png How many circles are in the image? 2 count
895 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_895.png How many pentagons are in the image? 4 count
896 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_896.png How many pentagons are in the image? 1 count
897 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_897.png How many trapezoids are in the image? 2 count
898 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_898.png How many squares are in the image? 1 count
899 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_899.png How many squares are in the image? 2 count
900 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_900.png How many trapezoids are in the image? 1 count
901 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_901.png How many hexagons are in the image? 2 count
902 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_902.png How many pentagons are in the image? 1 count
903 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_903.png How many pentagons are in the image? 2 count
904 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_904.png How many triangles are in the image? 1 count
905 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_905.png How many circles are in the image? 2 count
906 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_906.png How many hexagons are in the image? 6 count
907 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_907.png How many triangles are in the image? 2 count
908 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_908.png How many parallelograms are in the image? 2 count
909 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_909.png How many pentagons are in the image? 6 count
910 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_910.png How many trapezoids are in the image? 2 count
911 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_911.png How many parallelograms are in the image? 3 count
912 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_912.png How many pentagons are in the image? 1 count
913 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_913.png How many triangles are in the image? 2 count
914 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_914.png How many trapezoids are in the image? 1 count
915 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_915.png How many pentagons are in the image? 6 count
916 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_916.png How many triangles are in the image? 2 count
917 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_917.png How many trapezoids are in the image? 2 count
918 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_918.png How many diamonds are in the image? 2 count
919 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_919.png How many triangles are in the image? 2 count
920 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_920.png How many diamonds are in the image? 3 count
921 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_921.png How many pentagons are in the image? 2 count
922 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_922.png How many hexagons are in the image? 1 count
923 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_923.png How many parallelograms are in the image? 6 count
924 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_924.png How many parallelograms are in the image? 2 count
925 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_925.png How many squares are in the image? 2 count
926 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_926.png How many pentagons are in the image? 1 count
927 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_927.png How many pentagons are in the image? 2 count
928 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_928.png How many parallelograms are in the image? 5 count
929 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_929.png How many trapezoids are in the image? 2 count
930 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_930.png How many triangles are in the image? 1 count
931 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_931.png How many triangles are in the image? 2 count
932 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_932.png How many squares are in the image? 2 count
933 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_933.png How many squares are in the image? 5 count
934 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_934.png How many triangles are in the image? 2 count
935 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_935.png How many circles are in the image? 1 count
936 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_936.png How many hexagons are in the image? 2 count
937 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_937.png How many squares are in the image? 3 count
938 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_938.png How many triangles are in the image? 2 count
939 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_939.png How many squares are in the image? 2 count
940 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_940.png How many hexagons are in the image? 2 count
941 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_941.png How many parallelograms are in the image? 1 count
942 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_942.png How many parallelograms are in the image? 2 count
943 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_943.png How many pentagons are in the image? 1 count
944 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_944.png How many trapezoids are in the image? 2 count
945 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_945.png How many trapezoids are in the image? 3 count
946 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_946.png How many hexagons are in the image? 1 count
947 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_947.png How many hexagons are in the image? 2 count
948 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_948.png How many parallelograms are in the image? 1 count
949 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_949.png How many parallelograms are in the image? 2 count
950 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_950.png How many diamonds are in the image? 3 count
951 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_951.png How many pentagons are in the image? 2 count
952 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_952.png How many triangles are in the image? 2 count
953 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_953.png How many hexagons are in the image? 2 count
954 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_954.png How many circles are in the image? 1 count
955 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_955.png How many diamonds are in the image? 1 count
956 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_956.png How many diamonds are in the image? 1 count
957 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_957.png How many circles are in the image? 1 count
958 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_958.png How many hexagons are in the image? 3 count
959 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_959.png How many triangles are in the image? 2 count
960 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_960.png How many circles are in the image? 2 count
961 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_961.png How many parallelograms are in the image? 6 count
962 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_962.png How many circles are in the image? 3 count
963 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_963.png How many hexagons are in the image? 2 count
964 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_964.png How many parallelograms are in the image? 6 count
965 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_965.png How many pentagons are in the image? 1 count
966 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_966.png How many pentagons are in the image? 2 count
967 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_967.png How many trapezoids are in the image? 3 count
968 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_968.png How many hexagons are in the image? 2 count
969 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_969.png How many diamonds are in the image? 2 count
970 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_970.png How many parallelograms are in the image? 2 count
971 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_971.png How many circles are in the image? 2 count
972 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_972.png How many parallelograms are in the image? 3 count
973 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_973.png How many diamonds are in the image? 2 count
974 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_974.png How many trapezoids are in the image? 2 count
975 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_975.png How many hexagons are in the image? 2 count
976 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_976.png How many squares are in the image? 3 count
977 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_977.png How many pentagons are in the image? 2 count
978 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_978.png How many hexagons are in the image? 2 count
979 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_979.png How many trapezoids are in the image? 2 count
980 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_980.png How many parallelograms are in the image? 1 count
981 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_981.png How many trapezoids are in the image? 2 count
982 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_982.png How many diamonds are in the image? 1 count
983 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_983.png How many parallelograms are in the image? 3 count
984 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_984.png How many circles are in the image? 1 count
985 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_985.png How many parallelograms are in the image? 2 count
986 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_986.png How many diamonds are in the image? 2 count
987 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_987.png How many hexagons are in the image? 1 count
988 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_988.png How many hexagons are in the image? 1 count
989 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_989.png How many diamonds are in the image? 1 count
990 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_990.png How many triangles are in the image? 3 count
991 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_991.png How many diamonds are in the image? 2 count
992 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_992.png How many parallelograms are in the image? 5 count
993 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_993.png How many circles are in the image? 2 count
994 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_994.png How many squares are in the image? 1 count
995 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_995.png How many pentagons are in the image? 1 count
996 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_996.png How many trapezoids are in the image? 2 count
997 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_997.png How many diamonds are in the image? 2 count
998 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_998.png How many parallelograms are in the image? 2 count
999 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_999.png How many triangles are in the image? 2 count
1000 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_count/merged_1000.png How many parallelograms are in the image? 2 count
|