├── README.md ├── data ├── __init__.py ├── genx │ ├── labelling │ │ ├── ALL.txt │ │ ├── ALL_SPELLCHECKED.txt │ │ ├── all │ │ │ ├── LABELED_TRAINING.txt │ │ │ ├── devtest.labeled.NOBAD.txt │ │ │ ├── devtest.labeled.txt │ │ │ ├── devtest.txt │ │ │ ├── devtrain.shuffled.txt │ │ │ ├── devtrain.txt │ │ │ ├── heldout.labeled.NOBAD.txt │ │ │ ├── heldout.labeled.txt │ │ │ ├── heldout.txt │ │ │ ├── init.labeled.NOBAD.txt │ │ │ ├── init.labeled.txt │ │ │ └── init.txt │ │ └── single │ │ │ ├── HELDOUT.txt │ │ │ ├── LABELED_TRAINING.txt │ │ │ ├── devtest.labeled.NOBAD.txt │ │ │ ├── devtest.labeled.txt │ │ │ ├── devtrain.shuffled.txt │ │ │ ├── devtrain.txt │ │ │ ├── heldout.labeled.NOBAD.txt │ │ │ ├── init.labeled.NOBAD.txt │ │ │ └── init.labeled.txt │ └── state │ │ ├── Attributes.tsv │ │ └── SceneIndex.txt └── load.py ├── logic.py ├── net.py └── rnn-syn.ipynb /README.md: -------------------------------------------------------------------------------- 1 | Code for the paper 2 | 3 | > Analogs of linguistic structure in deep representations. Jacob Andreas and Dan 4 | > Klein. EMNLP 2017. http://arxiv.org/abs/1707.08139 5 | 6 | All the experiments from the paper are in 7 | [rnn-syn.ipnb](https://github.com/jacobandreas/rnn-syn/blob/master/rnn-syn.ipynb). 8 | 9 | Data is from the [GenX corpus](https://bitbucket.org/nfitzgerald/genx-referring-expression-corpus) 10 | produced by [FitzGerald](http://nfitz.net/) et al. 11 | -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobandreas/rnn-syn/682ea52b6550dd718304872cc690d1f68e094a38/data/__init__.py -------------------------------------------------------------------------------- /data/genx/labelling/all/devtest.txt: -------------------------------------------------------------------------------- 1 | every thing but the orange arc 2 | 090 3 | 4 | every thing except the orange arch 5 | 090 6 | 7 | every thing not orange 8 | 090 9 | 10 | every thing except the arch 11 | 090 12 | 13 | every thing except the orange arch 14 | 090 15 | 16 | every thing but the orange arch 17 | 090 18 | 19 | all pieces that are not tan arches 20 | 090 21 | 22 | all the objects , except the orange one 23 | 090 24 | 25 | every thing but the orange , bridge-like object 26 | 090 27 | 28 | the french fries , green beans , green leaf , brown rectangle , blue triangle , red square 29 | 090 30 | 31 | all six warm-colored items 32 | 070 33 | 34 | the red , yellow , and orange objects 35 | 070 36 | 37 | all the yellow , red , and orange toys 38 | 070 39 | 40 | the red , yellow and orange toys 41 | 070 42 | 43 | any thing not blue green or black 44 | 070 45 | 46 | all of the blocks except for the blue , brown , and green items 47 | 070 48 | 49 | all red , orange and yellow objects 50 | 070 51 | 52 | the three yellow , two red , and one orange toys 53 | 070 54 | 55 | all the yellow , red and orange objects 56 | 070 57 | 58 | all the red , yellow , and orange objects 59 | 070 60 | 61 | the green , orange , yellow and green pegs on the left side of the table 62 | 227 63 | 64 | the round cylinders that are orange , green , blue and yellow 65 | 227 66 | 67 | toys that are shaped like cylinders 68 | 227 69 | 70 | all cylinders 71 | 227 72 | 73 | the green , blue , yellow , and orange circle blocks 74 | 227 75 | 76 | the four tube shaped objects near the corner of the table 77 | 227 78 | 79 | all the cylinder shaped toy blocks 80 | 227 81 | 82 | all of the cylinder shaped pieces 83 | 227 84 | 85 | the green , blue , orange , and yellow cylinders 86 | 227 87 | 88 | the blue , green , yellow and orange cylinder objects 89 | 227 90 | 91 | all yellow and orange toys 92 | 102 93 | 94 | all of the objects that are yellow and orange 95 | 102 96 | 97 | the lemon , the potato chip , and the orange cylinder 98 | 102 99 | 100 | the chip tan cylinder and the lemon 101 | 102 102 | 103 | all the yellow and orange objects 104 | 102 105 | 106 | the yellow and orange objects 107 | 102 108 | 109 | every thing that is orange , yellow , or white 110 | 102 111 | 112 | the orange cylinder , yellow lemon , and yellow chip 113 | 102 114 | 115 | all the lighter colored objects including the yellow lemon like object , the light orange cylinder , and the beige object resembling a potato chip 116 | 102 117 | 118 | the two yellow circular objects and the orange tube 119 | 102 120 | 121 | the triangle shaped objects 122 | 463 123 | 124 | the triangular toys 125 | 463 126 | 127 | the triangle shaped pieces 128 | 463 129 | 130 | all of the triangle shaped pieces 131 | 463 132 | 133 | the pizza , green and red triangles 134 | 463 135 | 136 | the four triangular objects near the end of the table 137 | 463 138 | 139 | triangular shaped toys 140 | 463 141 | 142 | all of the triangle pieces 143 | 463 144 | 145 | the triangle objects on the table 146 | 463 147 | 148 | all the triangle objects 149 | 463 150 | 151 | the arc only 152 | 361 153 | 154 | the orange object 155 | 361 156 | 157 | the orange bridge 158 | 361 159 | 160 | the orange , bridge-like object 161 | 361 162 | 163 | orange shaded , crescent shaped toy 164 | 361 165 | 166 | the orange arch 167 | 361 168 | 169 | the half circle 170 | 361 171 | 172 | the orange toy 173 | 361 174 | 175 | the orange arch 176 | 361 177 | 178 | the orange arch block 179 | 361 180 | 181 | the peach colored rectangle 182 | 395 183 | 184 | the light orange rectangular block 185 | 395 186 | 187 | the rectangular peach shaded toy 188 | 395 189 | 190 | the tan cuboid 191 | 395 192 | 193 | the orange block 194 | 395 195 | 196 | the orange toy 197 | 395 198 | 199 | the orange rectangular object 200 | 395 201 | 202 | the rectangular toy 203 | 395 204 | 205 | orange rectangle object 206 | 395 207 | 208 | the orange block 209 | 395 210 | 211 | all toys that are not red 212 | 135 213 | 214 | all the objects except the red ones 215 | 135 216 | 217 | every thing that is not red 218 | 135 219 | 220 | all the objects except the red objects 221 | 135 222 | 223 | all the objects except the red ones 224 | 135 225 | 226 | every thing that is not a red block toy 227 | 135 228 | 229 | every thing but the red pieces 230 | 135 231 | 232 | every thing except the red toys 233 | 135 234 | 235 | every thing not red 236 | 135 237 | 238 | all objects that are not purple or red 239 | 135 240 | 241 | the red and orange objects 242 | 055 243 | 244 | two red toys and one orange arched shaped toy 245 | 055 246 | 247 | the red block , the red ball , and the orange arch 248 | 055 249 | 250 | every thing that is orange and red 251 | 055 252 | 253 | the red cube , the red spherical object that looks like a tomato and the orange arch 254 | 055 255 | 256 | the three warm-colored items 257 | 055 258 | 259 | the red and orange toys 260 | 055 261 | 262 | the red , reddish-orange , and tan shaded toys 263 | 055 264 | 265 | the red pieces and the tan arch 266 | 055 267 | 268 | all the red and orange objects 269 | 055 270 | 271 | the dark pink objects 272 | 412 273 | 274 | all four red items 275 | 412 276 | 277 | all the red objects 278 | 412 279 | 280 | all red objects 281 | 412 282 | 283 | all the red toy blocks 284 | 412 285 | 286 | the red objects 287 | 412 288 | 289 | the red toys 290 | 412 291 | 292 | all of the red pieces 293 | 412 294 | 295 | all the red toys 296 | 412 297 | 298 | the red objects 299 | 412 300 | 301 | all yellow or red items 302 | 256 303 | 304 | the red and yellow toys 305 | 256 306 | 307 | the red and yellow items 308 | 256 309 | 310 | the red and yellow pieces 311 | 256 312 | 313 | the red rectangle , the red square , and the lemon 314 | 256 315 | 316 | the red and yellow objects 317 | 256 318 | 319 | the red and yellow objects 320 | 256 321 | 322 | all the red and yellow objects 323 | 256 324 | 325 | the red and yellow toys 326 | 256 327 | 328 | the red objects and the lemon 329 | 256 330 | 331 | all objects that are not blue 332 | 340 333 | 334 | every thing except the blue item 335 | 340 336 | 337 | all the objects except the blue dented object 338 | 340 339 | 340 | all the objects except the blue one 341 | 340 342 | 343 | every thing but the black object 344 | 340 345 | 346 | every thing except the blue bridge object 347 | 340 348 | 349 | all the toys except for the blue arch 350 | 340 351 | 352 | all the pieces that are not blue 353 | 340 354 | 355 | every thing that is not blue 356 | 340 357 | 358 | all of the toys except the blue one 359 | 340 360 | 361 | every thing that is not an orange or red toy 362 | 196 363 | 364 | every thing except the orange and red objects 365 | 196 366 | 367 | the two yellow shapes , the two green shapes , and the brown potato 368 | 196 369 | 370 | all the items that are not salmon colored or red colored 371 | 196 372 | 373 | all items that are green , yellow , or brown 374 | 196 375 | 376 | every thing that is not orange or red 377 | 196 378 | 379 | all the objects , except the red and orange ones 380 | 196 381 | 382 | the green , yellow , and brown objects 383 | 196 384 | 385 | every thing except the orange wedge and the red block 386 | 196 387 | 388 | every thing except the orange wedge and red block 389 | 196 390 | 391 | the red square blocks , the yellow toy and the blue square with a knob on top 392 | 251 393 | 394 | all the objects except the cylinder objects and the blue triangle object 395 | 251 396 | 397 | every thing not a cylinder or ramp 398 | 251 399 | 400 | all toys that are not cylinders or triangles 401 | 251 402 | 403 | all of the items except for the circular blocks and the blue wedge 404 | 251 405 | 406 | every thing except cylinders and blue triangle 407 | 251 408 | 409 | the red rectangle , red and blue squares , yellow lemon , and green broccoli 410 | 251 411 | 412 | the red rectangle , red cube , blue cube fused with the sphere , and the broccoli thing 413 | 251 414 | 415 | every thing except the cylinders and the blue wedge 416 | 251 417 | 418 | all the pieces that are not a cylinder or a triangle 419 | 251 420 | 421 | yellow rectangle object 422 | 396 423 | 424 | the yellow piece 425 | 396 426 | 427 | the yellow object 428 | 396 429 | 430 | the yellow piece 431 | 396 432 | 433 | the yellow object 434 | 396 435 | 436 | the yellow block 437 | 396 438 | 439 | the item that is yellow and shaped like a rectangle 440 | 396 441 | 442 | the yellow rectangle 443 | 396 444 | 445 | the yellow rectangle 446 | 396 447 | 448 | the yellow rectangle 449 | 396 450 | 451 | all the gray or black objects 452 | 099 453 | 454 | the blue toys 455 | 099 456 | 457 | all the brown toys 458 | 099 459 | 460 | all of the brown objects 461 | 099 462 | 463 | all the black objects 464 | 099 465 | 466 | the black or brown pieces 467 | 099 468 | 469 | all the black toys 470 | 099 471 | 472 | all of the purple pieces 473 | 099 474 | 475 | the brown toy blocks 476 | 099 477 | 478 | all the black objects 479 | 099 480 | 481 | all of the yellow and green pieces 482 | 344 483 | 484 | the red ball and the closest 3 object to it 485 | 344 486 | 487 | the yellow and green objects 488 | 344 489 | 490 | all green and yellow objects 491 | 344 492 | 493 | the yellow and green toys 494 | 344 495 | 496 | all green and yellow toys 497 | 344 498 | 499 | all green or yellow objects 500 | 344 501 | 502 | the two yellow and three green toys 503 | 344 504 | 505 | the yellow french fries , yellow square , and green objects 506 | 344 507 | 508 | the yellow and green objects 509 | 344 510 | 511 | all the round objects 512 | 441 513 | 514 | the apple , ball lemon and red stone 515 | 441 516 | 517 | lemon , apple , potato , red circle 518 | 441 519 | 520 | all sphere shaped items 521 | 441 522 | 523 | the four round objects 524 | 441 525 | 526 | all the spherical toys 527 | 441 528 | 529 | all of the round objects on the right side of the table 530 | 441 531 | 532 | the lemon , the apple , the red ball , and the gray rock 533 | 441 534 | 535 | all four circular objects 536 | 441 537 | 538 | the round objects 539 | 441 540 | 541 | the blue arch and the yellow chip 542 | 193 543 | 544 | the blue and yellow objects 545 | 193 546 | 547 | the blue arch and the potato chip 548 | 193 549 | 550 | the yellow toy and the blue toy 551 | 193 552 | 553 | the blue rectangle and yellow oval 554 | 193 555 | 556 | blue bridge , and toy chip 557 | 193 558 | 559 | the yellow and blue objects 560 | 193 561 | 562 | the yellow and the blue items 563 | 193 564 | 565 | the yellow toy and the blue toy 566 | 193 567 | 568 | the blue object and the yellow object 569 | 193 570 | 571 | all the objects , except the black and brown ones 572 | 122 573 | 574 | every thing not black , brown , or tan 575 | 122 576 | 577 | every thing that is not brown 578 | 122 579 | 580 | every thing but the brown objects 581 | 122 582 | 583 | all of the pieces that are not purple 584 | 122 585 | 586 | all items that are not brown 587 | 122 588 | 589 | the purple , red , yellow , green and blue pieces 590 | 122 591 | 592 | the green , red , yellow , and blue objects 593 | 122 594 | 595 | the toys that are neither black nor brown 596 | 122 597 | 598 | all toys that are not brown or black 599 | 122 600 | 601 | the yellow pieces , red pieces , and orange arch 602 | 070 603 | 604 | the red , yellow and orange objects 605 | 070 606 | 607 | all the warm colored toys 608 | 070 609 | 610 | red , yellow and orange toys 611 | 070 612 | 613 | the yellow and orange arches , the red ball and cylinder , the yellow lemon 614 | 070 615 | 616 | the red , orange , and yellow pieces 617 | 070 618 | 619 | all the red , orange and yellow objects 620 | 070 621 | 622 | the red , yellow , and orange items 623 | 070 624 | 625 | the orange , yellow , and red items 626 | 070 627 | 628 | the yellow ones , the red ones , and the orange one 629 | 070 630 | 631 | all of the cylinders 632 | 227 633 | 634 | the toys that are shaped like cylinders 635 | 227 636 | 637 | the four cylinders 638 | 227 639 | 640 | all the cylinders 641 | 227 642 | 643 | the cylinders 644 | 227 645 | 646 | the four cylinders 647 | 227 648 | 649 | the cylinder objects 650 | 227 651 | 652 | all of the cylinders 653 | 227 654 | 655 | the four cylinders 656 | 227 657 | 658 | all of the cylinders 659 | 227 660 | 661 | all of the triangular toys 662 | 463 663 | 664 | the triangular toys 665 | 463 666 | 667 | four bottom triangles 668 | 463 669 | 670 | only the pizza shaped toys 671 | 463 672 | 673 | the triangular objects 674 | 463 675 | 676 | all of the triangles 677 | 463 678 | 679 | the two pizzas , and the two other items near them 680 | 463 681 | 682 | 4 triangle shapes grouped together 683 | 463 684 | 685 | the triangles 686 | 463 687 | 688 | four triangular pieces 689 | 463 690 | 691 | every toy but the orange bridge 692 | 090 693 | 694 | every thing except orange bridge 695 | 090 696 | 697 | every thing except the light brown toy 698 | 090 699 | 700 | every thing except the orange arch 701 | 090 702 | 703 | all of the toys except the orange one 704 | 090 705 | 706 | all but the orange one 707 | 090 708 | 709 | every thing except the orange arch 710 | 090 711 | 712 | the yellow , green , black , blue , and red toys 713 | 090 714 | 715 | all the toys except the orange arch 716 | 090 717 | 718 | all of the toys except the orange arch 719 | 090 720 | 721 | the orange rectangular toy 722 | 395 723 | 724 | the orange rectangle 725 | 395 726 | 727 | the orange rectangle 728 | 395 729 | 730 | the orange rectangle 731 | 395 732 | 733 | the orange rectangle 734 | 395 735 | 736 | the orange piece 737 | 395 738 | 739 | the bright orange object on the right 740 | 395 741 | 742 | the orange rectangle 743 | 395 744 | 745 | the orange rectangle 746 | 395 747 | 748 | the beige rectangle 749 | 395 750 | 751 | the yellow and orange objects 752 | 102 753 | 754 | the yellow lemon object , the orange cylindrical object , and the cream-colored circular object 755 | 102 756 | 757 | the orange , yellow , and tan objects 758 | 102 759 | 760 | the yellow items and the orange cylinder 761 | 102 762 | 763 | the yellow and orange ones 764 | 102 765 | 766 | the yellow and orange objects 767 | 102 768 | 769 | the yellow and orange toys 770 | 102 771 | 772 | the yellow , orange and light colored objects 773 | 102 774 | 775 | the orange cylinder and the two yellow objects 776 | 102 777 | 778 | the yellow , orange , and tan objects 779 | 102 780 | 781 | the orange one 782 | 361 783 | 784 | the beige object 785 | 361 786 | 787 | the orange arch 788 | 361 789 | 790 | orange arch piece 791 | 361 792 | 793 | the orange arch 794 | 361 795 | 796 | the orange toy 797 | 361 798 | 799 | the orange arch 800 | 361 801 | 802 | the orange toy 803 | 361 804 | 805 | the orange toy 806 | 361 807 | 808 | the orange arch 809 | 361 810 | 811 | the red and orange toys 812 | 055 813 | 814 | the red and orange ones 815 | 055 816 | 817 | every thing that is not blue or green 818 | 055 819 | 820 | the orange arch and the red objects 821 | 055 822 | 823 | the red toys and the brown arch 824 | 055 825 | 826 | the red and peach objects 827 | 055 828 | 829 | the red circle , the orange bridge and the other red object 830 | 055 831 | 832 | the red and beige objects 833 | 055 834 | 835 | the red and orange items 836 | 055 837 | 838 | the three red and orange objects 839 | 055 840 | 841 | every item that is not red 842 | 135 843 | 844 | every thing except the red toys 845 | 135 846 | 847 | every thing except the 2 top red pieces 848 | 135 849 | 850 | every thing except the red pieces 851 | 135 852 | 853 | every thing but the red objects 854 | 135 855 | 856 | the blue , yellow , green , and red toys 857 | 135 858 | 859 | every thing except the red toys 860 | 135 861 | 862 | every thing but the red objects 863 | 135 864 | 865 | every thing that is not red 866 | 135 867 | 868 | all but the red ones 869 | 135 870 | 871 | all of the red toys 872 | 412 873 | 874 | all of the red pieces 875 | 412 876 | 877 | only the red blocks 878 | 412 879 | 880 | the red toys 881 | 412 882 | 883 | the four red ones 884 | 412 885 | 886 | the red toys 887 | 412 888 | 889 | all the red objects 890 | 412 891 | 892 | the red pieces 893 | 412 894 | 895 | the pink shapes 896 | 412 897 | 898 | toys that are red 899 | 412 900 | 901 | the lemon and the red blocks 902 | 256 903 | 904 | all red and yellow objects 905 | 256 906 | 907 | the red and yellow toys 908 | 256 909 | 910 | red and yellow objects 911 | 256 912 | 913 | both red pieces and the yellow lemon 914 | 256 915 | 916 | the two red items and the yellow item 917 | 256 918 | 919 | the red and yellow toys 920 | 256 921 | 922 | the lemon like item and the two red items 923 | 256 924 | 925 | the red and yellow ones 926 | 256 927 | 928 | the red pieces and yellow lemon 929 | 256 930 | 931 | every thing but the blue object 932 | 340 933 | 934 | all but the blue one 935 | 340 936 | 937 | all of the objects except the blue arch 938 | 340 939 | 940 | all of the toys except the blue arch 941 | 340 942 | 943 | all items , except the blue one 944 | 340 945 | 946 | every thing except the blue toy 947 | 340 948 | 949 | all objects but the blue one 950 | 340 951 | 952 | every thing except blue bridge 953 | 340 954 | 955 | the orange , green , yellow and red toys 956 | 340 957 | 958 | every thing except the blue arch 959 | 340 960 | 961 | every thing but the red and orange objects 962 | 196 963 | 964 | the brown , green and yellow toys 965 | 196 966 | 967 | the green , yellow , and brown toys 968 | 196 969 | 970 | every thing except the red rectangle and the orange triangle 971 | 196 972 | 973 | the yellow , green , and brown blocks 974 | 196 975 | 976 | all but the red and orange ones 977 | 196 978 | 979 | the yellow and green shapes , and the potato 980 | 196 981 | 982 | the brown , yellow , green and peach objects 983 | 196 984 | 985 | the green , yellow , and brown objects 986 | 196 987 | 988 | gray sphere , yellow cylinder , green cube , yellow object , green hexagon 989 | 196 990 | 991 | all items that are not cylinders or triangles 992 | 251 993 | 994 | the red square and rectangle , yellow lemon , blue cube , and green broccoli 995 | 251 996 | 997 | all of the toys to the left of the blue triangle shaped toys 998 | 251 999 | 1000 | all of the blocks to the left of the blue triangle 1001 | 251 1002 | 1003 | all but the cylinders and the blue one that looks like a triangle 1004 | 251 1005 | 1006 | every thing but the cylinders and blue triangle 1007 | 251 1008 | 1009 | the red rectangle , the red cube , the yellow lemon , the blue cube with sphere on top , and the green bush 1010 | 251 1011 | 1012 | every thing except the the triangle and cylinders 1013 | 251 1014 | 1015 | the lemon , blue square , broccoli , red rectangle and red square 1016 | 251 1017 | 1018 | blue square , red square and rectangle , yellow , and irregular shaped green object 1019 | 251 1020 | 1021 | the yellow rectangle 1022 | 396 1023 | 1024 | the yellow rectangle 1025 | 396 1026 | 1027 | the yellow rectangle 1028 | 396 1029 | 1030 | the yellow one 1031 | 396 1032 | 1033 | the yellow toy 1034 | 396 1035 | 1036 | the yellow rectangle 1037 | 396 1038 | 1039 | yellow piece 1040 | 396 1041 | 1042 | only the rectangular yellow object 1043 | 396 1044 | 1045 | the yellow toy 1046 | 396 1047 | 1048 | the yellow rectangle 1049 | 396 1050 | 1051 | the black toys 1052 | 099 1053 | 1054 | all of the black toys 1055 | 099 1056 | 1057 | the four black objects 1058 | 099 1059 | 1060 | the black objects 1061 | 099 1062 | 1063 | the black ones 1064 | 099 1065 | 1066 | all the brown items 1067 | 099 1068 | 1069 | the black objects 1070 | 099 1071 | 1072 | all the dark purple blocks 1073 | 099 1074 | 1075 | brown shapes 1076 | 099 1077 | 1078 | the black objects 1079 | 099 1080 | 1081 | all of the green and yellow objects 1082 | 344 1083 | 1084 | the yellow and green objects 1085 | 344 1086 | 1087 | the yellow and green toys 1088 | 344 1089 | 1090 | the green and yellow toys 1091 | 344 1092 | 1093 | all yellow items and green items 1094 | 344 1095 | 1096 | the yellow and green ones 1097 | 344 1098 | 1099 | all green and yellow objects 1100 | 344 1101 | 1102 | all the green objects and all the yellow objects 1103 | 344 1104 | 1105 | all yellow and green objects 1106 | 344 1107 | 1108 | toys that are not orange , blue , or red 1109 | 344 1110 | 1111 | the apple , tomato , lemon and potato 1112 | 441 1113 | 1114 | the two red ones , and the two others ones near them 1115 | 441 1116 | 1117 | the yellow red and brown spheres 1118 | 441 1119 | 1120 | all of the round toys 1121 | 441 1122 | 1123 | the top four toys 1124 | 441 1125 | 1126 | the round toys 1127 | 441 1128 | 1129 | all of the round shaped toys 1130 | 441 1131 | 1132 | all the circle shapes 1133 | 441 1134 | 1135 | the spherical objects 1136 | 441 1137 | 1138 | the round ones 1139 | 441 1140 | 1141 | the yellow shape and the blue wedge 1142 | 193 1143 | 1144 | the blue and yellow objects 1145 | 193 1146 | 1147 | the blue and yellow items 1148 | 193 1149 | 1150 | the blue arch and yellow toy 1151 | 193 1152 | 1153 | the yellow and blue curved block 1154 | 193 1155 | 1156 | blue object , yellow object 1157 | 193 1158 | 1159 | the blue and yellow ones 1160 | 193 1161 | 1162 | the blue arch and yellow oval 1163 | 193 1164 | 1165 | blue and yellow toys 1166 | 193 1167 | 1168 | the blue and yellow toys 1169 | 193 1170 | 1171 | every thing but the black and brown objects 1172 | 122 1173 | 1174 | every thing that is not brown 1175 | 122 1176 | 1177 | every thing except the brown and black toys 1178 | 122 1179 | 1180 | any toy that is not black or gray 1181 | 122 1182 | 1183 | green broccoli , yellow sphere , blue rectangle , blue object , yellow object , green rectangle , red sphere , dark red wedge 1184 | 122 1185 | 1186 | the green , blue , yellow , and red toys 1187 | 122 1188 | 1189 | the yellow ones , the green ones , the blue ones , and the red ones 1190 | 122 1191 | 1192 | every thing except the brown objects 1193 | 122 1194 | 1195 | every thing except the four brown objects on top 1196 | 122 1197 | 1198 | every thing except the black and brown objects 1199 | 122 1200 | 1201 | -------------------------------------------------------------------------------- /data/genx/labelling/all/init.txt: -------------------------------------------------------------------------------- 1 | all five yellow toys 2 | 484 3 | 4 | the five yellow objects 5 | 484 6 | 7 | all the yellow pieces 8 | 484 9 | 10 | the yellow objects 11 | 484 12 | 13 | the yellow objects 14 | 484 15 | 16 | the yellow objects 17 | 484 18 | 19 | all of the yellow pieces 20 | 484 21 | 22 | all of the yellow objects 23 | 484 24 | 25 | the yellow objects 26 | 484 27 | 28 | all the yellow toys 29 | 484 30 | 31 | the red square and round brown objects 32 | 264 33 | 34 | the red square and the brown item 35 | 264 36 | 37 | the red cube and the clam 38 | 264 39 | 40 | the red cube and the brown sphere 41 | 264 42 | 43 | the red cube and the stone 44 | 264 45 | 46 | the red square and brown potato 47 | 264 48 | 49 | the red cube and gray ball 50 | 264 51 | 52 | the red cube and brown potato 53 | 264 54 | 55 | the red cube and the rock 56 | 264 57 | 58 | the red cube 59 | 264 60 | 61 | the blue block , the red cylinder , and the dark wedge 62 | 275 63 | 64 | red , blue and brown toys 65 | 275 66 | 67 | the red , blue , and brown objects 68 | 275 69 | 70 | the red , blue and black objects 71 | 275 72 | 73 | the red , blue and black pieces 74 | 275 75 | 76 | the blue , black , and dark pink objects 77 | 275 78 | 79 | the blue , red , and brown items 80 | 275 81 | 82 | the blue , brown , and red objects 83 | 275 84 | 85 | the black , blue , and red objects 86 | 275 87 | 88 | the blue red and purple pieces 89 | 275 90 | 91 | all green items except triangle 92 | 171 93 | 94 | all the green pieces that are not tetrahedrons 95 | 171 96 | 97 | all green objects with the exception of the green triangle 98 | 171 99 | 100 | the two green cubes and the green broccoli 101 | 171 102 | 103 | all the green toys excluding the triangle 104 | 171 105 | 106 | all solid green objects except the wedge 107 | 171 108 | 109 | all the green objects except the triangle one 110 | 171 111 | 112 | the green cubes and the broccoli 113 | 171 114 | 115 | all green objects that are not a triangle 116 | 171 117 | 118 | the green squares and broccoli 119 | 171 120 | 121 | every thing that is not red , orange , or yellow 122 | 147 123 | 124 | the blue , green and black objects 125 | 147 126 | 127 | every thing that is not red or yellow 128 | 147 129 | 130 | the blue tan and purple pieces 131 | 147 132 | 133 | the blue square , brown and green rectangles , and green chips 134 | 147 135 | 136 | every thing that is not red or yellow 137 | 147 138 | 139 | all the objects , except objects that are yellow , red , or orange 140 | 147 141 | 142 | the blue , green and brown pieces 143 | 147 144 | 145 | all pieces that are not red or yellow 146 | 147 147 | 148 | both the green items , the brown arch , and the blue block 149 | 147 150 | 151 | the orange object 152 | 359 153 | 154 | the peach colored triangle 155 | 359 156 | 157 | the orange wedge 158 | 359 159 | 160 | the orange wedge 161 | 359 162 | 163 | the orange block 164 | 359 165 | 166 | the orange object 167 | 359 168 | 169 | the orange wedge 170 | 359 171 | 172 | orange block 173 | 359 174 | 175 | the orange triangle 176 | 359 177 | 178 | orange pizza slice shaped toy 179 | 359 180 | 181 | green toys and the gray triangle 182 | 116 183 | 184 | the brown triangle and green objects 185 | 116 186 | 187 | all green toys , and gray triangle 188 | 116 189 | 190 | the green objects and the triangular brown object 191 | 116 192 | 193 | all the green objects and the black ramp 194 | 116 195 | 196 | the brown wedge , and all of the green items 197 | 116 198 | 199 | all green pieces and the black triangular piece 200 | 116 201 | 202 | the three green objects and the black triangle 203 | 116 204 | 205 | all green pieces and the gray triangle 206 | 116 207 | 208 | the black triangle object and the green objects 209 | 116 210 | 211 | the blue rectangle 212 | 141 213 | 214 | the blue piece 215 | 141 216 | 217 | the blue toy 218 | 141 219 | 220 | the blue rectangle 221 | 141 222 | 223 | the blue object 224 | 141 225 | 226 | the blue object 227 | 141 228 | 229 | the blue cuboid shaped piece 230 | 141 231 | 232 | the blue brick 233 | 141 234 | 235 | the blue object 236 | 141 237 | 238 | the blue toy 239 | 141 240 | 241 | the yellow cube 242 | 213 243 | 244 | the orange triangle 245 | 213 246 | 247 | the orange cube 248 | 213 249 | 250 | the orange cube 251 | 213 252 | 253 | the tan cube only 254 | 213 255 | 256 | the smaller pink object nearest you at the table 257 | 213 258 | 259 | the orange cube 260 | 213 261 | 262 | the tan cube 263 | 213 264 | 265 | the cube 266 | 213 267 | 268 | the orange square 269 | 213 270 | 271 | all of the cuboid and arch shaped pieces 272 | 342 273 | 274 | the green , red , blue , and orange rectangles 275 | 342 276 | 277 | the pink rectangle closest to the edge of the table , the green rectangle and the red rectangle 278 | 342 279 | 280 | all the items that are rectangular and the item that is blue 281 | 342 282 | 283 | all the rectangle objects 284 | 342 285 | 286 | the blue object and the red , green and orange rectangle objects 287 | 342 288 | 289 | the green , red , and brown rectangles and the blue arch 290 | 342 291 | 292 | all the rectangular blocks and the c shaped block 293 | 342 294 | 295 | all 3 rectangles and the arch 296 | 342 297 | 298 | the orange , green , and red blocks , and the blue arch 299 | 342 300 | 301 | the blue , brown , and red toys 302 | 275 303 | 304 | the objects which are not yellow or green 305 | 275 306 | 307 | the blue , red , and black toys 308 | 275 309 | 310 | blue , red , and triangular objects 311 | 275 312 | 313 | red , brown , blue objects 314 | 275 315 | 316 | the blue , red , and brown toys 317 | 275 318 | 319 | the blue , red and black objects 320 | 275 321 | 322 | the black , blue and red ones 323 | 275 324 | 325 | the black , blue , and red toys 326 | 275 327 | 328 | the blue , red and brown toys 329 | 275 330 | 331 | all of the green objects except the triangle 332 | 171 333 | 334 | the green cubes and the broccoli 335 | 171 336 | 337 | the green toys 338 | 171 339 | 340 | all of the green objects except the triangle 341 | 171 342 | 343 | the two green cubes and the green bumpy ball 344 | 171 345 | 346 | the two green cubes and the non triangle green object 347 | 171 348 | 349 | the green cubes and broccoli shape 350 | 171 351 | 352 | the green items except the green wedge 353 | 171 354 | 355 | all the dark green items that are not wedges 356 | 171 357 | 358 | the green cubes , and green broccoli 359 | 171 360 | 361 | the yellow objects 362 | 484 363 | 364 | the yellow toys 365 | 484 366 | 367 | only the yellow objects 368 | 484 369 | 370 | all the yellow ones 371 | 484 372 | 373 | the yellow objects 374 | 484 375 | 376 | the yellow toys 377 | 484 378 | 379 | all of the yellow toys 380 | 484 381 | 382 | the yellow toys 383 | 484 384 | 385 | all the yellow toys 386 | 484 387 | 388 | all of the yellow pieces 389 | 484 390 | 391 | red cube and the brown circular toy , 392 | 264 393 | 394 | the red cube and brown lump 395 | 264 396 | 397 | the gray/brown one and the red square like one 398 | 264 399 | 400 | the red cube and the brown potato 401 | 264 402 | 403 | the red cube and potato 404 | 264 405 | 406 | the red square and the brown egg 407 | 264 408 | 409 | red square , brown egg shaped object 410 | 264 411 | 412 | the red cube and the brown sphere 413 | 264 414 | 415 | the red cube and the potato like object 416 | 264 417 | 418 | red cube and brown potato shaped piece 419 | 264 420 | 421 | the blue and green objects 422 | 147 423 | 424 | the pair of green coins the arch , the rectangle and the cube 425 | 147 426 | 427 | the black arch , the green bar , the green coins , and the blue block 428 | 147 429 | 430 | all toys except the red and yellows ones 431 | 147 432 | 433 | the green ones , the black one , and the blue one 434 | 147 435 | 436 | the blue cube , green toys , and black arch 437 | 147 438 | 439 | all but the yellow and red shapes 440 | 147 441 | 442 | toys that are blue , brown , or green 443 | 147 444 | 445 | the blue square , the greenish coins , the long drab green rectangle , and the green bench 446 | 147 447 | 448 | every thing that is not yellow or red 449 | 147 450 | 451 | the orange toy 452 | 359 453 | 454 | the orange wedge 455 | 359 456 | 457 | the orange pie slice toy 458 | 359 459 | 460 | the orange one 461 | 359 462 | 463 | the beige object 464 | 359 465 | 466 | the orange triangular object 467 | 359 468 | 469 | the orange triangle block 470 | 359 471 | 472 | the orange wedge 473 | 359 474 | 475 | the orange triangle 476 | 359 477 | 478 | the wedge 479 | 359 480 | 481 | the brown triangle and every thing green 482 | 116 483 | 484 | green arch shaped piece , the lime green oval shaped and black triangle shaped 485 | 116 486 | 487 | all the green items 488 | 116 489 | 490 | the green pieces and the brown triangle 491 | 116 492 | 493 | the green items and the brown wedge 494 | 116 495 | 496 | the green toys and the black triangle 497 | 116 498 | 499 | the gray triangular toy and all of the green toys 500 | 116 501 | 502 | all green object , brown triangle 503 | 116 504 | 505 | dark green u shaped object , light green circles , green pyramid , gray pyramid 506 | 116 507 | 508 | all of the green toys and the black triangle 509 | 116 510 | 511 | the blue rectangle 512 | 141 513 | 514 | the blue one 515 | 141 516 | 517 | the blue rectangle 518 | 141 519 | 520 | the blue toy 521 | 141 522 | 523 | the blue toy 524 | 141 525 | 526 | the blue object 527 | 141 528 | 529 | the blue rectangle 530 | 141 531 | 532 | the rectangular block 533 | 141 534 | 535 | the blue item 536 | 141 537 | 538 | only the blue rectangle 539 | 141 540 | 541 | the orange cube 542 | 213 543 | 544 | the one that looks like a square 545 | 213 546 | 547 | the orange cube 548 | 213 549 | 550 | the orange cube 551 | 213 552 | 553 | the orange cube 554 | 213 555 | 556 | the little orange square 557 | 213 558 | 559 | the orange cube 560 | 213 561 | 562 | the orange square 563 | 213 564 | 565 | the orange cube 566 | 213 567 | 568 | the orange cube 569 | 213 570 | 571 | all rectangles and the blue bridge 572 | 342 573 | 574 | the red , green , and orange rectangles , and the blue item 575 | 342 576 | 577 | all rectangles and the blue arch 578 | 342 579 | 580 | only the rectangular shaped toys 581 | 342 582 | 583 | the green , red , and orange rectangles , and the blue arch 584 | 342 585 | 586 | rectangular objects , blue bridge 587 | 342 588 | 589 | the rectangular objects 590 | 342 591 | 592 | the orange rectangle , the orange rectangle , the red rectangle , and the blue arch 593 | 342 594 | 595 | the blue arch and the three rectangles 596 | 342 597 | 598 | the blue arch and a red , green , and orange rectangle 599 | 342 600 | 601 | -------------------------------------------------------------------------------- /data/genx/labelling/single/HELDOUT.txt: -------------------------------------------------------------------------------- 1 | the blue object 2 | 088 3 | 4 | the blue triangle 5 | 088 6 | 7 | the blue wedge 8 | 088 9 | 10 | the blue piece 11 | 088 12 | 13 | the blue toy 14 | 088 15 | 16 | the blue triangle 17 | 088 18 | 19 | blue pie shaped toy 20 | 088 21 | 22 | the blue object 23 | 088 24 | 25 | the blue block 26 | 088 27 | 28 | the blue triangle 29 | 088 30 | 31 | the yellow toy shaped like a bridge 32 | 057 33 | 34 | the yellow arch 35 | 057 36 | 37 | the yellow arch 38 | 057 39 | 40 | the yellow block with the half circle cut out 41 | 057 42 | 43 | the yellow arch 44 | 057 45 | 46 | the yellow arch 47 | 057 48 | 49 | the yellow toy that has a crescent shape 50 | 057 51 | 52 | the rectangular yellow object 53 | 057 54 | 55 | the yellow toy that looks like a bridge 56 | 057 57 | 58 | the yellow dented object 59 | 057 60 | 61 | the red cube 62 | 189 63 | 64 | the red cube 65 | 189 66 | 67 | the red square 68 | 189 69 | 70 | the red cube 71 | 189 72 | 73 | the red object that is cube-shaped 74 | 189 75 | 76 | the red cube 77 | 189 78 | 79 | the red cube 80 | 189 81 | 82 | the red square object 83 | 189 84 | 85 | the red cube 86 | 189 87 | 88 | the red cube 89 | 189 90 | 91 | light green item 92 | 337 93 | 94 | the green leaf 95 | 337 96 | 97 | the light green leaf 98 | 337 99 | 100 | the light green object 101 | 337 102 | 103 | the lettuce leaf 104 | 337 105 | 106 | the toy green leaf 107 | 337 108 | 109 | the light green leaf like piece 110 | 337 111 | 112 | the green lettuce leaf 113 | 337 114 | 115 | the light green object 116 | 337 117 | 118 | the green leaf 119 | 337 120 | 121 | the blue rectangle 122 | 081 123 | 124 | the blue object 125 | 081 126 | 127 | the blue rectangle 128 | 081 129 | 130 | the blue toy 131 | 081 132 | 133 | the blue block 134 | 081 135 | 136 | the blue piece 137 | 081 138 | 139 | the blue rectangular solid 140 | 081 141 | 142 | the rectangle object 143 | 081 144 | 145 | the blue rectangle 146 | 081 147 | 148 | the blue piece 149 | 081 150 | 151 | the dark pink object 152 | 416 153 | 154 | the red item 155 | 416 156 | 157 | the red piece 158 | 416 159 | 160 | the bright red toy 161 | 416 162 | 163 | the red square 164 | 416 165 | 166 | the red object 167 | 416 168 | 169 | the item that is red 170 | 416 171 | 172 | the red item 173 | 416 174 | 175 | the red object 176 | 416 177 | 178 | the red object 179 | 416 180 | 181 | the blue triangle 182 | 088 183 | 184 | the blue object 185 | 088 186 | 187 | blue triangle piece 188 | 088 189 | 190 | the blue object 191 | 088 192 | 193 | the blue triangle 194 | 088 195 | 196 | the blue item 197 | 088 198 | 199 | the blue wedge 200 | 088 201 | 202 | the blue triangle 203 | 088 204 | 205 | the blue one 206 | 088 207 | 208 | the blue toy 209 | 088 210 | 211 | the yellow arch piece 212 | 057 213 | 214 | the yellow half circle half square toy 215 | 057 216 | 217 | the yellow arch 218 | 057 219 | 220 | the yellow arch 221 | 057 222 | 223 | the yellow curved wedge 224 | 057 225 | 226 | the yellow bridge 227 | 057 228 | 229 | yellow one that is not a cylinder 230 | 057 231 | 232 | yellow arch 233 | 057 234 | 235 | the yellow toy under the brown square 236 | 057 237 | 238 | yellow arch shape 239 | 057 240 | 241 | the light green object 242 | 337 243 | 244 | the green leaf 245 | 337 246 | 247 | the green leaf 248 | 337 249 | 250 | the light green leaf 251 | 337 252 | 253 | the light green toy 254 | 337 255 | 256 | the lettuce 257 | 337 258 | 259 | the green leaf 260 | 337 261 | 262 | the green toy 263 | 337 264 | 265 | the light green one 266 | 337 267 | 268 | the leaf 269 | 337 270 | 271 | the red cube 272 | 189 273 | 274 | the red cube 275 | 189 276 | 277 | the red cube 278 | 189 279 | 280 | the red cube 281 | 189 282 | 283 | the red square like item 284 | 189 285 | 286 | the red cube 287 | 189 288 | 289 | the red cube 290 | 189 291 | 292 | only the red square 293 | 189 294 | 295 | the red square 296 | 189 297 | 298 | the red cube 299 | 189 300 | 301 | the blue piece 302 | 081 303 | 304 | the long , blue block 305 | 081 306 | 307 | the blue toy 308 | 081 309 | 310 | the blue one 311 | 081 312 | 313 | the blue bar 314 | 081 315 | 316 | the blue rectangle 317 | 081 318 | 319 | the blue rectangle 320 | 081 321 | 322 | the blue object 323 | 081 324 | 325 | the blue rectangle 326 | 081 327 | 328 | the blue rectangle 329 | 081 330 | 331 | the red toy 332 | 416 333 | 334 | the red objects 335 | 416 336 | 337 | the red toy 338 | 416 339 | 340 | the red shape 341 | 416 342 | 343 | the red object 344 | 416 345 | 346 | the red object 347 | 416 348 | 349 | the red one 350 | 416 351 | 352 | the red object 353 | 416 354 | 355 | the square red item 356 | 416 357 | 358 | the red piece 359 | 416 360 | 361 | -------------------------------------------------------------------------------- /data/genx/labelling/single/devtest.labeled.NOBAD.txt: -------------------------------------------------------------------------------- 1 | the yellow piece 2 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (misc:> misc:misc $0) (sg: $0)))) 3 | 396 4 | 5 | the yellow object 6 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (misc:> misc:misc $0) (sg: $0)))) 7 | 396 8 | 9 | the yellow piece 10 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (misc:> misc:misc $0) (sg: $0)))) 11 | 396 12 | 13 | the yellow object 14 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (misc:> misc:misc $0) (sg: $0)))) 15 | 396 16 | 17 | the yellow block 18 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (misc:> misc:misc $0) (sg: $0)))) 19 | 396 20 | 21 | the item that is yellow and shaped like a rectangle 22 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (shape:> rect:shape $0) (sg: $0)))) 23 | 396 24 | 25 | the yellow rectangle 26 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (shape:> rect:shape $0) (sg: $0)))) 27 | 396 28 | 29 | the yellow rectangle 30 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (shape:> rect:shape $0) (sg: $0)))) 31 | 396 32 | 33 | the yellow rectangle 34 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (shape:> rect:shape $0) (sg: $0)))) 35 | 396 36 | 37 | the yellow rectangle 38 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (shape:> rect:shape $0) (sg: $0)))) 39 | 396 40 | 41 | the yellow rectangle 42 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (shape:> rect:shape $0) (sg: $0)))) 43 | 396 44 | 45 | the yellow rectangle 46 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (shape:> rect:shape $0) (sg: $0)))) 47 | 396 48 | 49 | the yellow rectangle 50 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (shape:> rect:shape $0) (sg: $0)))) 51 | 396 52 | 53 | the yellow rectangle 54 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (shape:> rect:shape $0) (sg: $0)))) 55 | 396 56 | 57 | the yellow rectangle object 58 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (shape:> rect:shape $0) (misc:> misc:misc $0) (sg: $0)))) 59 | 396 60 | 61 | the yellow one 62 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (misc:> misc:misc $0) (sg: $0)))) 63 | 396 64 | 65 | the yellow toy 66 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (misc:> misc:misc $0) (sg: $0)))) 67 | 396 68 | 69 | the yellow piece 70 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (misc:> misc:misc $0) (sg: $0)))) 71 | 396 72 | 73 | only the rectangular yellow object 74 | (The:<,e> (lambda $0:e (and: (shape:> rect:shape $0) (color:> yellow:color $0) (misc:> misc:misc $0) (sg: $0)))) 75 | 396 76 | 77 | the yellow toy 78 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (misc:> misc:misc $0) (sg: $0)))) 79 | 396 80 | 81 | the arc only 82 | (The:<,e> (lambda $0:e (and: (sg: $0) (shape:> arch:shape $0)))) 83 | 361 84 | 85 | the orange object 86 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 87 | 361 88 | 89 | the orange bridge 90 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> arch:shape $0) (sg: $0)))) 91 | 361 92 | 93 | the orange , bridge-like object 94 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> arch:shape $0) (misc:> misc:misc $0) (sg: $0)))) 95 | 361 96 | 97 | the orange shaded , crescent shaped toy 98 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> arch:shape $0) (sg: $0)))) 99 | 361 100 | 101 | the orange arch 102 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> arch:shape $0) (sg: $0)))) 103 | 361 104 | 105 | the half circle 106 | (The:<,e> (lambda $0:e (and: (shape:> arch:shape $0) (sg: $0)))) 107 | 361 108 | 109 | the orange toy 110 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 111 | 361 112 | 113 | the orange arch 114 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> arch:shape $0) (sg: $0)))) 115 | 361 116 | 117 | the orange arch block 118 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> arch:shape $0) (misc:> misc:misc $0) (sg: $0)))) 119 | 361 120 | 121 | the orange arch 122 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> arch:shape $0) (sg: $0)))) 123 | 361 124 | 125 | the orange arch 126 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> arch:shape $0) (sg: $0)))) 127 | 361 128 | 129 | the orange toy 130 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 131 | 361 132 | 133 | the orange arch 134 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> arch:shape $0) (sg: $0)))) 135 | 361 136 | 137 | the orange toy 138 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 139 | 361 140 | 141 | the orange toy 142 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 143 | 361 144 | 145 | the orange arch 146 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> arch:shape $0) (sg: $0)))) 147 | 361 148 | 149 | the orange one 150 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 151 | 361 152 | 153 | the beige object 154 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 155 | 361 156 | 157 | the orange arch piece 158 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> arch:shape $0) (misc:> misc:misc $0) (sg: $0)))) 159 | 361 160 | 161 | the peach colored rectangle 162 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (sg: $0)))) 163 | 395 164 | 165 | the light orange rectangular block 166 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (color:> orange:color $0) (shape:> rect:shape $0) (misc:> misc:misc $0) (sg: $0)))) 167 | 395 168 | 169 | the rectangular peach shaded toy 170 | (The:<,e> (lambda $0:e (and: (shape:> rect:shape $0) (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 171 | 395 172 | 173 | the tan cuboid 174 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (sg: $0)))) 175 | 395 176 | 177 | the orange block 178 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 179 | 395 180 | 181 | the orange toy 182 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 183 | 395 184 | 185 | the orange rectangular object 186 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (misc:> misc:misc $0) (sg: $0)))) 187 | 395 188 | 189 | the rectangular toy 190 | (The:<,e> (lambda $0:e (and: (shape:> rect:shape $0) (misc:> misc:misc $0) (sg: $0)))) 191 | 395 192 | 193 | the orange rectangle object 194 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (misc:> misc:misc $0) (sg: $0)))) 195 | 395 196 | 197 | the orange block 198 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 199 | 395 200 | 201 | the orange rectangular toy 202 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (misc:> misc:misc $0) (sg: $0)))) 203 | 395 204 | 205 | the orange rectangle 206 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (sg: $0)))) 207 | 395 208 | 209 | the orange rectangle 210 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (sg: $0)))) 211 | 395 212 | 213 | the orange rectangle 214 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (sg: $0)))) 215 | 395 216 | 217 | the orange rectangle 218 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (sg: $0)))) 219 | 395 220 | 221 | the orange piece 222 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 223 | 395 224 | 225 | the orange rectangle 226 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (sg: $0)))) 227 | 395 228 | 229 | the orange rectangle 230 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (sg: $0)))) 231 | 395 232 | 233 | the beige rectangle 234 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (sg: $0)))) 235 | 395 236 | 237 | -------------------------------------------------------------------------------- /data/genx/labelling/single/devtest.labeled.txt: -------------------------------------------------------------------------------- 1 | the yellow piece 2 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (misc:> misc:misc $0) (sg: $0)))) 3 | 396 4 | 5 | the yellow object 6 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (misc:> misc:misc $0) (sg: $0)))) 7 | 396 8 | 9 | the yellow piece 10 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (misc:> misc:misc $0) (sg: $0)))) 11 | 396 12 | 13 | the yellow object 14 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (misc:> misc:misc $0) (sg: $0)))) 15 | 396 16 | 17 | the yellow block 18 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (misc:> misc:misc $0) (sg: $0)))) 19 | 396 20 | 21 | the item that is yellow and shaped like a rectangle 22 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (shape:> rect:shape $0) (sg: $0)))) 23 | 396 24 | 25 | the yellow rectangle 26 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (shape:> rect:shape $0) (sg: $0)))) 27 | 396 28 | 29 | the yellow rectangle 30 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (shape:> rect:shape $0) (sg: $0)))) 31 | 396 32 | 33 | the yellow rectangle 34 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (shape:> rect:shape $0) (sg: $0)))) 35 | 396 36 | 37 | the yellow rectangle 38 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (shape:> rect:shape $0) (sg: $0)))) 39 | 396 40 | 41 | the yellow rectangle 42 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (shape:> rect:shape $0) (sg: $0)))) 43 | 396 44 | 45 | the yellow rectangle 46 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (shape:> rect:shape $0) (sg: $0)))) 47 | 396 48 | 49 | the yellow rectangle 50 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (shape:> rect:shape $0) (sg: $0)))) 51 | 396 52 | 53 | the yellow rectangle 54 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (shape:> rect:shape $0) (sg: $0)))) 55 | 396 56 | 57 | yellow rectangle object 58 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (shape:> rect:shape $0) (misc:> misc:misc $0) (sg: $0)))) 59 | 396 60 | 61 | the yellow one 62 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (misc:> misc:misc $0) (sg: $0)))) 63 | 396 64 | 65 | the yellow toy 66 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (misc:> misc:misc $0) (sg: $0)))) 67 | 396 68 | 69 | yellow piece 70 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (misc:> misc:misc $0) (sg: $0)))) 71 | 396 72 | 73 | only the rectangular yellow object 74 | (The:<,e> (lambda $0:e (and: (shape:> rect:shape $0) (color:> yellow:color $0) (misc:> misc:misc $0) (sg: $0)))) 75 | 396 76 | 77 | the yellow toy 78 | (The:<,e> (lambda $0:e (and: (color:> yellow:color $0) (misc:> misc:misc $0) (sg: $0)))) 79 | 396 80 | 81 | the arc only 82 | (The:<,e> (lambda $0:e (and: (sg: $0) (shape:> arch:shape $0)))) 83 | 361 84 | 85 | the orange object 86 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 87 | 361 88 | 89 | the orange bridge 90 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> arch:shape $0) (sg: $0)))) 91 | 361 92 | 93 | the orange , bridge-like object 94 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> arch:shape $0) (misc:> misc:misc $0) (sg: $0)))) 95 | 361 96 | 97 | orange shaded , crescent shaped toy 98 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> arch:shape $0) (sg: $0)))) 99 | 361 100 | 101 | the orange arch 102 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> arch:shape $0) (sg: $0)))) 103 | 361 104 | 105 | the half circle 106 | (The:<,e> (lambda $0:e (and: (shape:> arch:shape $0) (sg: $0)))) 107 | 361 108 | 109 | the orange toy 110 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 111 | 361 112 | 113 | the orange arch 114 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> arch:shape $0) (sg: $0)))) 115 | 361 116 | 117 | the orange arch block 118 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> arch:shape $0) (misc:> misc:misc $0) (sg: $0)))) 119 | 361 120 | 121 | the orange arch 122 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> arch:shape $0) (sg: $0)))) 123 | 361 124 | 125 | the orange arch 126 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> arch:shape $0) (sg: $0)))) 127 | 361 128 | 129 | the orange toy 130 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 131 | 361 132 | 133 | the orange arch 134 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> arch:shape $0) (sg: $0)))) 135 | 361 136 | 137 | the orange toy 138 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 139 | 361 140 | 141 | the orange toy 142 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 143 | 361 144 | 145 | the orange arch 146 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> arch:shape $0) (sg: $0)))) 147 | 361 148 | 149 | the orange one 150 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 151 | 361 152 | 153 | the beige object 154 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 155 | 361 156 | 157 | orange arch piece 158 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> arch:shape $0) (misc:> misc:misc $0) (sg: $0)))) 159 | 361 160 | 161 | the peach colored rectangle 162 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (sg: $0)))) 163 | 395 164 | 165 | the light orange rectangular block 166 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (color:> orange:color $0) (shape:> rect:shape $0) (misc:> misc:misc $0) (sg: $0)))) 167 | 395 168 | 169 | the rectangular peach shaded toy 170 | (The:<,e> (lambda $0:e (and: (shape:> rect:shape $0) (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 171 | 395 172 | 173 | the tan cuboid 174 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (sg: $0)))) 175 | 395 176 | 177 | the orange block 178 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 179 | 395 180 | 181 | the orange toy 182 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 183 | 395 184 | 185 | the orange rectangular object 186 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (misc:> misc:misc $0) (sg: $0)))) 187 | 395 188 | 189 | the rectangular toy 190 | (The:<,e> (lambda $0:e (and: (shape:> rect:shape $0) (misc:> misc:misc $0) (sg: $0)))) 191 | 395 192 | 193 | orange rectangle object 194 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (misc:> misc:misc $0) (sg: $0)))) 195 | 395 196 | 197 | the orange block 198 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 199 | 395 200 | 201 | the orange rectangular toy 202 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (misc:> misc:misc $0) (sg: $0)))) 203 | 395 204 | 205 | the orange rectangle 206 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (sg: $0)))) 207 | 395 208 | 209 | the orange rectangle 210 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (sg: $0)))) 211 | 395 212 | 213 | the orange rectangle 214 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (sg: $0)))) 215 | 395 216 | 217 | the orange rectangle 218 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (sg: $0)))) 219 | 395 220 | 221 | the orange piece 222 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 223 | 395 224 | 225 | the bright orange object on the right 226 | model:e 227 | 395 228 | 229 | the orange rectangle 230 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (sg: $0)))) 231 | 395 232 | 233 | the orange rectangle 234 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (sg: $0)))) 235 | 395 236 | 237 | the beige rectangle 238 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> rect:shape $0) (sg: $0)))) 239 | 395 240 | 241 | -------------------------------------------------------------------------------- /data/genx/labelling/single/devtrain.shuffled.txt: -------------------------------------------------------------------------------- 1 | the brown arch 2 | 033 3 | 4 | the yellow rectangle 5 | 493 6 | 7 | the dark green arch 8 | 313 9 | 10 | the red cylinder 11 | 271 12 | 13 | the green cube 14 | 195 15 | 16 | the red triangle 17 | 423 18 | 19 | the green pear 20 | 332 21 | 22 | the yellow block 23 | 501 24 | 25 | the orange cube 26 | 368 27 | 28 | the green object 29 | 319 30 | 31 | the black one 32 | 143 33 | 34 | the orange object 35 | 051 36 | 37 | the yellow pineapple slice 38 | 500 39 | 40 | the gray stone shaped piece 41 | 137 42 | 43 | the gray toy 44 | 033 45 | 46 | the dark green toy 47 | 313 48 | 49 | the pear 50 | 332 51 | 52 | the pie slice 53 | 470 54 | 55 | the pink rectangle 56 | 362 57 | 58 | the yellow toy the square block with round top the yellow object 59 | 494 60 | 61 | the yellow toy 62 | 500 63 | 64 | the brown object 65 | 131 66 | 67 | the yellow toy 68 | 493 69 | 70 | the red bridge shaped piece 71 | 422 72 | 73 | the orange toy 74 | 401 75 | 76 | the red cylinder 77 | 259 78 | 79 | the red toy that is not the cylinder 80 | 445 81 | 82 | the brown arched shaped toy 83 | 033 84 | 85 | the blue object 86 | 076 87 | 88 | the green u shaped toy 89 | 313 90 | 91 | the yellow rectangle 92 | 493 93 | 94 | the yellow domed block 95 | 494 96 | 97 | the red arch 98 | 045 99 | 100 | the curved purple wedge 101 | 033 102 | 103 | the green wedge block 104 | 319 105 | 106 | the yellow toy 107 | 493 108 | 109 | the blue bridge-like object 110 | 129 111 | 112 | the brown stone toy 113 | 454 114 | 115 | the purple piece 116 | 131 117 | 118 | the red one 119 | 271 120 | 121 | the red toy 122 | 430 123 | 124 | the purple triangle 125 | 423 126 | 127 | the brown rectangle 128 | 143 129 | 130 | the orange rectangle 131 | 362 132 | 133 | the black or dark brown piece 134 | 125 135 | 136 | the brown/black rectangle 137 | 125 138 | 139 | the yellow shape 140 | 500 141 | 142 | the brown object 143 | 454 144 | 145 | the green triangle 146 | 319 147 | 148 | the beige cube 149 | 368 150 | 151 | the red toy 152 | 429 153 | 154 | the square blue object 155 | 076 156 | 157 | the light green pear shaped toy 158 | 338 159 | 160 | the round yellow piece 161 | 455 162 | 163 | the orange cube 164 | 207 165 | 166 | the blue object 167 | 092 168 | 169 | the purple triangle 170 | 472 171 | 172 | the red round block 173 | 271 174 | 175 | the purple object 176 | 472 177 | 178 | the red apple 179 | 445 180 | 181 | the red cylinder 182 | 271 183 | 184 | the yellow ball 185 | 455 186 | 187 | the green triangle 188 | 319 189 | 190 | the square 191 | 308 192 | 193 | the red toy that is not a cylinder 194 | 445 195 | 196 | the black object 197 | 033 198 | 199 | the yellow curved toy 200 | 500 201 | 202 | the pie slice 203 | 470 204 | 205 | the pink piece 206 | 423 207 | 208 | the red rectangular prism 209 | 430 210 | 211 | the yellow arch 212 | 487 213 | 214 | the green cube 215 | 308 216 | 217 | the orange block 218 | 471 219 | 220 | the green triangle 221 | 319 222 | 223 | the yellow rectangle 224 | 493 225 | 226 | the green cube 227 | 195 228 | 229 | the orange one 230 | 368 231 | 232 | the purple cube 233 | 201 234 | 235 | the red block 236 | 271 237 | 238 | the light green item 239 | 338 240 | 241 | only the dark green objects 242 | 308 243 | 244 | the yellow toy 245 | 501 246 | 247 | the red item 248 | 271 249 | 250 | the square block with round top 251 | 501 252 | 253 | the blue piece 254 | 092 255 | 256 | the red rectangle 257 | 430 258 | 259 | the green cube 260 | 308 261 | 262 | the curved , yellow object 263 | 500 264 | 265 | the red cylinder 266 | 259 267 | 268 | the green cube 269 | 195 270 | 271 | the orange triangle 272 | 471 273 | 274 | the red arch 275 | 045 276 | 277 | all blue objects 278 | 092 279 | 280 | the red block 281 | 389 282 | 283 | the round yellow object 284 | 455 285 | 286 | the orange block 287 | 368 288 | 289 | the brown object 290 | 131 291 | 292 | the yellow object 293 | 494 294 | 295 | the yellow piece 296 | 500 297 | 298 | the blue toy 299 | 092 300 | 301 | the light green block 302 | 338 303 | 304 | the yellow piece 305 | 501 306 | 307 | the green toy 308 | 313 309 | 310 | the blue square 311 | 076 312 | 313 | the red rod-shaped object 314 | 259 315 | 316 | the orange arch 317 | 051 318 | 319 | the gray one 320 | 033 321 | 322 | the yellow toy 323 | 487 324 | 325 | the brown rectangle 326 | 125 327 | 328 | the lime green toy 329 | 338 330 | 331 | the green cylinder 332 | 265 333 | 334 | the red rectangle 335 | 430 336 | 337 | the orange pyramid 338 | 471 339 | 340 | the pear 341 | 332 342 | 343 | the round yellow object 344 | 455 345 | 346 | the light green toy 347 | 332 348 | 349 | the brown object 350 | 454 351 | 352 | the cube shaped object 353 | 201 354 | 355 | the triangular toy 356 | 472 357 | 358 | the orange object 359 | 471 360 | 361 | the yellow toy 362 | 494 363 | 364 | the red circular block 365 | 259 366 | 367 | the brown toy 368 | 137 369 | 370 | the green triangle 371 | 473 372 | 373 | the brown object 374 | 454 375 | 376 | the green square object 377 | 195 378 | 379 | the yellow lemon object 380 | 455 381 | 382 | the brown hexagon 383 | 131 384 | 385 | the pink rectangle 386 | 362 387 | 388 | the green cube 389 | 308 390 | 391 | the blue cube with a sphere on top of it 392 | 076 393 | 394 | the yellow arch item 395 | 487 396 | 397 | the bright green toy 398 | 338 399 | 400 | the brown ball 401 | 137 402 | 403 | the orange square object 404 | 207 405 | 406 | the red arch 407 | 422 408 | 409 | the red piece 410 | 045 411 | 412 | the red rectangular block 413 | 389 414 | 415 | the green toy that is shaped like a cube 416 | 195 417 | 418 | the pink arch 419 | 422 420 | 421 | the yellow object 422 | 494 423 | 424 | the orange toy 425 | 362 426 | 427 | the red one 428 | 429 429 | 430 | the brown dented object 431 | 033 432 | 433 | the black one 434 | 143 435 | 436 | the pie slice shaped plastic toy 437 | 470 438 | 439 | the triangle 440 | 423 441 | 442 | the orange , triangular object 443 | 471 444 | 445 | the green cube 446 | 195 447 | 448 | the blue cube 449 | 082 450 | 451 | the gray potato 452 | 454 453 | 454 | the purple arch on the far most left side of the table 455 | 033 456 | 457 | the yellow one 458 | 500 459 | 460 | the green square 461 | 195 462 | 463 | the red block 464 | 429 465 | 466 | the brown piece 467 | 131 468 | 469 | the purple triangle 470 | 472 471 | 472 | the green toy 473 | 473 474 | 475 | the rectangle 476 | 401 477 | 478 | the red object 479 | 429 480 | 481 | the green cube 482 | 308 483 | 484 | the brown object 485 | 454 486 | 487 | the green cylinder 488 | 265 489 | 490 | the green object 491 | 473 492 | 493 | the brown toy 494 | 137 495 | 496 | the little orange square 497 | 207 498 | 499 | the red rectangular block 500 | 400 501 | 502 | the black rectangle 503 | 125 504 | 505 | the object that looks like a slice of apple pie 506 | 470 507 | 508 | the blue item 509 | 092 510 | 511 | the red one 512 | 422 513 | 514 | the red toys 515 | 430 516 | 517 | the bright green pear 518 | 332 519 | 520 | the yellow one 521 | 362 522 | 523 | the cube piece 524 | 195 525 | 526 | the blue cube 527 | 082 528 | 529 | the pink rectangle closest to the edge of the table 530 | 362 531 | 532 | the black toy 533 | 125 534 | 535 | only the black bridge object 536 | 033 537 | 538 | the rectangular green block 539 | 304 540 | 541 | the dark green object 542 | 265 543 | 544 | the brown block 545 | 143 546 | 547 | the green arch 548 | 313 549 | 550 | the object that looks like a piece of pie 551 | 470 552 | 553 | the magenta bridge 554 | 422 555 | 556 | the magenta tube shape 557 | 271 558 | 559 | the red rectangle 560 | 429 561 | 562 | the red object 563 | 429 564 | 565 | the yellow object 566 | 494 567 | 568 | the black one 569 | 201 570 | 571 | the red rectangle 572 | 400 573 | 574 | the light green leaf 575 | 332 576 | 577 | only the triangle 578 | 423 579 | 580 | the blue arch 581 | 129 582 | 583 | the brown rock 584 | 137 585 | 586 | the yellow object 587 | 501 588 | 589 | the orange toy 590 | 471 591 | 592 | the yellow object 593 | 501 594 | 595 | the yellow toy 596 | 500 597 | 598 | the round brown ball 599 | 137 600 | 601 | the lemon like item 602 | 455 603 | 604 | the red arch 605 | 045 606 | 607 | the purple arch shaped piece 608 | 033 609 | 610 | the blue object 611 | 076 612 | 613 | the red apple 614 | 445 615 | 616 | the blue arch 617 | 129 618 | 619 | the yellow object 620 | 501 621 | 622 | the brown object 623 | 131 624 | 625 | the red object 626 | 430 627 | 628 | the yellow object 629 | 487 630 | 631 | the blue bridge 632 | 129 633 | 634 | the yellow toy 635 | 494 636 | 637 | the pizza shaped one 638 | 470 639 | 640 | the red rectangle 641 | 429 642 | 643 | the blue cube 644 | 082 645 | 646 | the red u shape 647 | 045 648 | 649 | the peach rectangle 650 | 401 651 | 652 | the yellow toy 653 | 051 654 | 655 | the light green object 656 | 332 657 | 658 | the blue arch 659 | 129 660 | 661 | the brown item 662 | 143 663 | 664 | the orange wedge 665 | 471 666 | 667 | only the dark green toy 668 | 313 669 | 670 | the slice of pizza 671 | 470 672 | 673 | the yellow lemon 674 | 455 675 | 676 | the light green object 677 | 332 678 | 679 | the green triangle 680 | 319 681 | 682 | the toy that looks like a piece of pie 683 | 470 684 | 685 | the blue arch 686 | 129 687 | 688 | the brown item 689 | 125 690 | 691 | the yellow rectangle 692 | 493 693 | 694 | the orange arch block 695 | 051 696 | 697 | only the black rectangular object 698 | 143 699 | 700 | the bridge shaped toy 701 | 033 702 | 703 | the red toy that is shaped like a rectangle 704 | 400 705 | 706 | the orange rectangle 707 | 401 708 | 709 | the orange object 710 | 401 711 | 712 | the yellow lemon 713 | 455 714 | 715 | the yellow toy block 716 | 494 717 | 718 | the yellow 719 | 494 720 | 721 | the red object 722 | 430 723 | 724 | the green pie slice toy 725 | 319 726 | 727 | the green cube 728 | 195 729 | 730 | the orange rectangle 731 | 401 732 | 733 | the yellow square 734 | 501 735 | 736 | the red object 737 | 422 738 | 739 | the yellow , rectangular toy 740 | 493 741 | 742 | the dark green object 743 | 308 744 | 745 | the purple triangle 746 | 423 747 | 748 | the yellow toy 749 | 501 750 | 751 | the yellow toy 752 | 493 753 | 754 | the orange cube 755 | 207 756 | 757 | the red rectangle 758 | 389 759 | 760 | the black block 761 | 125 762 | 763 | the red rectangle 764 | 430 765 | 766 | the red arch 767 | 045 768 | 769 | the peach colored object 770 | 362 771 | 772 | the triangle 773 | 423 774 | 775 | the black bar 776 | 125 777 | 778 | the red cylindrical toy 779 | 259 780 | 781 | the red arch block 782 | 045 783 | 784 | the red cuboid shaped piece 785 | 389 786 | 787 | the dark green one 788 | 265 789 | 790 | the red rectangle block 791 | 400 792 | 793 | the red rectangle 794 | 400 795 | 796 | the blue arch 797 | 129 798 | 799 | the blue toy 800 | 092 801 | 802 | the red rectangular object 803 | 400 804 | 805 | the yellow one 806 | 493 807 | 808 | the yellow curved shaped toy 809 | 500 810 | 811 | the red rectangle 812 | 389 813 | 814 | only the green toy with the arch cut out of it 815 | 313 816 | 817 | the red apple 818 | 445 819 | 820 | the brown rectangle 821 | 125 822 | 823 | the orange block 824 | 207 825 | 826 | the tan cube 827 | 207 828 | 829 | the red dented object 830 | 422 831 | 832 | the green arched shaped piece 833 | 313 834 | 835 | the blue object 836 | 082 837 | 838 | the orange square 839 | 368 840 | 841 | the yellow u toy 842 | 487 843 | 844 | the green wedge 845 | 319 846 | 847 | the red cylinder 848 | 259 849 | 850 | the red arch 851 | 045 852 | 853 | the brown geometrical shaped toy 854 | 131 855 | 856 | the green cube 857 | 195 858 | 859 | the green pear 860 | 338 861 | 862 | the blue arch 863 | 129 864 | 865 | only the yellow object 866 | 487 867 | 868 | the red apple 869 | 445 870 | 871 | the orange cube 872 | 368 873 | 874 | the brown rectangle 875 | 143 876 | 877 | the orange cube 878 | 207 879 | 880 | the orange rectangle 881 | 362 882 | 883 | the green triangular toy 884 | 319 885 | 886 | the red box toy 887 | 389 888 | 889 | the item shaped like a blue cube 890 | 082 891 | 892 | the green rectangle 893 | 304 894 | 895 | the triangle object 896 | 423 897 | 898 | the yellow block 899 | 487 900 | 901 | the purple piece 902 | 423 903 | 904 | the orange object 905 | 368 906 | 907 | the brown cube 908 | 201 909 | 910 | the orange toy 911 | 362 912 | 913 | the green triangle 914 | 319 915 | 916 | the orange arch 917 | 051 918 | 919 | the orange cube 920 | 368 921 | 922 | the brown toy 923 | 131 924 | 925 | the green square 926 | 308 927 | 928 | the green arch 929 | 313 930 | 931 | the yellow block on the right 932 | 493 933 | 934 | the blue object 935 | 082 936 | 937 | the bright green object 938 | 338 939 | 940 | the magenta rectangle piece 941 | 389 942 | 943 | the black u shaped toy 944 | 033 945 | 946 | the green cube 947 | 195 948 | 949 | the green triangle 950 | 473 951 | 952 | the blue object 953 | 092 954 | 955 | the green cube 956 | 195 957 | 958 | the red rectangular block 959 | 389 960 | 961 | the green object 962 | 319 963 | 964 | the blue rectangle 965 | 092 966 | 967 | the dark green object 968 | 313 969 | 970 | the orange toy 971 | 401 972 | 973 | the purple triangle 974 | 472 975 | 976 | the green block 977 | 319 978 | 979 | the red triangle 980 | 423 981 | 982 | the red triangle object 983 | 472 984 | 985 | the red cylinder 986 | 271 987 | 988 | the green bar 989 | 304 990 | 991 | the red apple 992 | 445 993 | 994 | the orange object 995 | 362 996 | 997 | the green piece 998 | 319 999 | 1000 | the blue toy 1001 | 076 1002 | 1003 | the red object 1004 | 429 1005 | 1006 | the pink pie slice toy 1007 | 423 1008 | 1009 | the yellow piece 1010 | 494 1011 | 1012 | the red rectangle 1013 | 389 1014 | 1015 | the red rectangle 1016 | 389 1017 | 1018 | the brown object 1019 | 454 1020 | 1021 | the pink brick 1022 | 401 1023 | 1024 | the yellow square object 1025 | 501 1026 | 1027 | the red object 1028 | 429 1029 | 1030 | the red rectangular block 1031 | 400 1032 | 1033 | only the tan wedge object 1034 | 471 1035 | 1036 | the black item shaped like a cube 1037 | 201 1038 | 1039 | the lemon 1040 | 455 1041 | 1042 | the orange toy 1043 | 471 1044 | 1045 | the blue object 1046 | 076 1047 | 1048 | the yellow rectangle 1049 | 493 1050 | 1051 | the red rectangle 1052 | 430 1053 | 1054 | the brown triangle 1055 | 362 1056 | 1057 | the blue toy 1058 | 076 1059 | 1060 | the orange cube 1061 | 368 1062 | 1063 | the red object 1064 | 430 1065 | 1066 | the yellow object 1067 | 487 1068 | 1069 | the green wedge 1070 | 473 1071 | 1072 | the dark green object 1073 | 313 1074 | 1075 | the brown lump 1076 | 137 1077 | 1078 | the gray/brown one 1079 | 454 1080 | 1081 | the small green square block 1082 | 308 1083 | 1084 | the red cylinder piece 1085 | 259 1086 | 1087 | the wedge 1088 | 471 1089 | 1090 | the red arch 1091 | 422 1092 | 1093 | the green toy 1094 | 338 1095 | 1096 | the green pear-like item 1097 | 332 1098 | 1099 | the item that is black and rectangular 1100 | 143 1101 | 1102 | the black one 1103 | 125 1104 | 1105 | the black block 1106 | 143 1107 | 1108 | the yellow object 1109 | 500 1110 | 1111 | the red rectangle 1112 | 400 1113 | 1114 | the red apple 1115 | 445 1116 | 1117 | the light green object 1118 | 338 1119 | 1120 | the red piece 1121 | 271 1122 | 1123 | the green arch block 1124 | 313 1125 | 1126 | the orange square 1127 | 207 1128 | 1129 | the light green one 1130 | 338 1131 | 1132 | the blue arch 1133 | 129 1134 | 1135 | the lightest green object that looks like a jar it is located just below the blue arch 1136 | 332 1137 | 1138 | the brown square block 1139 | 201 1140 | 1141 | the orange rectangle object 1142 | 401 1143 | 1144 | the orange rectangle 1145 | 362 1146 | 1147 | the yellow arch 1148 | 487 1149 | 1150 | the red piece 1151 | 430 1152 | 1153 | the yellow block 1154 | 487 1155 | 1156 | the dark green one 1157 | 308 1158 | 1159 | the orange rectangle block 1160 | 401 1161 | 1162 | the rectangular shaped item that is red 1163 | 430 1164 | 1165 | the green cylinder 1166 | 265 1167 | 1168 | the arc only 1169 | 045 1170 | 1171 | the blue cube 1172 | 082 1173 | 1174 | the orange arch 1175 | 051 1176 | 1177 | the yellow item that looks like half a circle cut out of it 1178 | 487 1179 | 1180 | the blue object 1181 | 092 1182 | 1183 | the red toy 1184 | 429 1185 | 1186 | the green pear 1187 | 338 1188 | 1189 | the orange cube 1190 | 207 1191 | 1192 | the brown potato 1193 | 454 1194 | 1195 | only the brown toy 1196 | 201 1197 | 1198 | the yellow object 1199 | 494 1200 | 1201 | the red cylinder 1202 | 259 1203 | 1204 | the red rectangular object 1205 | 400 1206 | 1207 | the green rectangle 1208 | 304 1209 | 1210 | the black object 1211 | 125 1212 | 1213 | the green toy 1214 | 473 1215 | 1216 | the red piece 1217 | 430 1218 | 1219 | the red block 1220 | 422 1221 | 1222 | the yellow lemon 1223 | 455 1224 | 1225 | the six-sided object 1226 | 131 1227 | 1228 | the brown shape 1229 | 454 1230 | 1231 | the red object 1232 | 422 1233 | 1234 | the black rectangle 1235 | 125 1236 | 1237 | the blue square 1238 | 082 1239 | 1240 | the green rectangle 1241 | 304 1242 | 1243 | the yellow toy 1244 | 501 1245 | 1246 | the orange rectangle 1247 | 362 1248 | 1249 | the pear 1250 | 338 1251 | 1252 | the black rectangular piece 1253 | 125 1254 | 1255 | the orange cube 1256 | 207 1257 | 1258 | the a purple triangle 1259 | 472 1260 | 1261 | the dark red triangle like one 1262 | 472 1263 | 1264 | the tan colored triangular object 1265 | 471 1266 | 1267 | the brown arch 1268 | 033 1269 | 1270 | the blue arch 1271 | 129 1272 | 1273 | the potato like item 1274 | 454 1275 | 1276 | the orange toy 1277 | 051 1278 | 1279 | the red arch 1280 | 045 1281 | 1282 | the orange toy 1283 | 051 1284 | 1285 | the long red item 1286 | 271 1287 | 1288 | the yellow lemon 1289 | 455 1290 | 1291 | the green one 1292 | 473 1293 | 1294 | the red block 1295 | 400 1296 | 1297 | the orange arch 1298 | 051 1299 | 1300 | the orange triangle 1301 | 471 1302 | 1303 | the red cylinder object 1304 | 259 1305 | 1306 | the yellow one 1307 | 501 1308 | 1309 | the dark green arch 1310 | 313 1311 | 1312 | the blue toy 1313 | 129 1314 | 1315 | the yellow arch 1316 | 487 1317 | 1318 | the slice of pie 1319 | 470 1320 | 1321 | the cube 1322 | 082 1323 | 1324 | the pie piece 1325 | 470 1326 | 1327 | the black rectangle 1328 | 143 1329 | 1330 | the green cube 1331 | 195 1332 | 1333 | the red apple shaped piece 1334 | 445 1335 | 1336 | the blue dented object 1337 | 129 1338 | 1339 | the red rectangle 1340 | 389 1341 | 1342 | the red piece 1343 | 422 1344 | 1345 | the gray piece 1346 | 033 1347 | 1348 | the green cube 1349 | 201 1350 | 1351 | the brown ball 1352 | 137 1353 | 1354 | the gray stone looking piece 1355 | 454 1356 | 1357 | the orange square 1358 | 368 1359 | 1360 | the rectangular prism 1361 | 143 1362 | 1363 | the green arch 1364 | 313 1365 | 1366 | the yellow square 1367 | 494 1368 | 1369 | the hexagon 1370 | 131 1371 | 1372 | the blue toy 1373 | 092 1374 | 1375 | the red rectangle 1376 | 400 1377 | 1378 | the brown rectangle 1379 | 143 1380 | 1381 | the blue toy 1382 | 033 1383 | 1384 | the pie piece 1385 | 470 1386 | 1387 | the red u 1388 | 422 1389 | 1390 | the red cylinder 1391 | 259 1392 | 1393 | the small green cube 1394 | 195 1395 | 1396 | the peach triangle 1397 | 471 1398 | 1399 | the green cube 1400 | 195 1401 | 1402 | the red triangle 1403 | 423 1404 | 1405 | the green arch 1406 | 313 1407 | 1408 | the blue cube 1409 | 082 1410 | 1411 | the orange dented object 1412 | 051 1413 | 1414 | all the brown lumpy toys 1415 | 137 1416 | 1417 | the dark green one 1418 | 319 1419 | 1420 | the orange triangle 1421 | 471 1422 | 1423 | the red toy 1424 | 422 1425 | 1426 | the blue toy 1427 | 092 1428 | 1429 | the green triangular shaped toy 1430 | 473 1431 | 1432 | the red cylinder 1433 | 259 1434 | 1435 | the light purple object 1436 | 423 1437 | 1438 | the brown object 1439 | 131 1440 | 1441 | the brown rectangle 1442 | 143 1443 | 1444 | the orange arch 1445 | 051 1446 | 1447 | the dark blue one 1448 | 092 1449 | 1450 | the blue cube 1451 | 082 1452 | 1453 | the light green pear toy 1454 | 332 1455 | 1456 | the purple wedge 1457 | 472 1458 | 1459 | the green pear 1460 | 338 1461 | 1462 | the yellow item 1463 | 500 1464 | 1465 | the round yellow piece 1466 | 455 1467 | 1468 | the piece that is dark green , rectangular , and in the top right 1469 | 304 1470 | 1471 | the rectangular object 1472 | 389 1473 | 1474 | the purple cube 1475 | 201 1476 | 1477 | the red , c shaped toy 1478 | 422 1479 | 1480 | the dark green one 1481 | 304 1482 | 1483 | the triangle object 1484 | 470 1485 | 1486 | the blue rectangle 1487 | 092 1488 | 1489 | the red toy 1490 | 271 1491 | 1492 | the red block 1493 | 429 1494 | 1495 | the red rectangle 1496 | 389 1497 | 1498 | the cube 1499 | 368 1500 | 1501 | the purple pizza sliced shaped toy 1502 | 472 1503 | 1504 | the red rectangle shaped toy on the table 1505 | 400 1506 | 1507 | the red object 1508 | 422 1509 | 1510 | the red brick 1511 | 429 1512 | 1513 | the red rectangular toy 1514 | 389 1515 | 1516 | the yellow item 1517 | 494 1518 | 1519 | the black cube 1520 | 201 1521 | 1522 | the pie 1523 | 470 1524 | 1525 | the blue cube 1526 | 076 1527 | 1528 | the brown toy 1529 | 131 1530 | 1531 | the yellow object 1532 | 493 1533 | 1534 | the green pear 1535 | 332 1536 | 1537 | the blue toy 1538 | 092 1539 | 1540 | the brown toy 1541 | 131 1542 | 1543 | the red cylinder toy 1544 | 259 1545 | 1546 | the red arch 1547 | 045 1548 | 1549 | the purple triangle 1550 | 472 1551 | 1552 | the black object 1553 | 125 1554 | 1555 | the triangular object 1556 | 472 1557 | 1558 | the yellow piece 1559 | 493 1560 | 1561 | the yellow top 1562 | 494 1563 | 1564 | only the green acute triangle 1565 | 473 1566 | 1567 | the yellow top 1568 | 501 1569 | 1570 | the black rectangular piece 1571 | 143 1572 | 1573 | the red apple 1574 | 445 1575 | 1576 | the orange piece 1577 | 401 1578 | 1579 | the light green 1580 | 332 1581 | 1582 | only the dark green tube toy 1583 | 265 1584 | 1585 | the green block 1586 | 304 1587 | 1588 | the yellow piece 1589 | 501 1590 | 1591 | the green c shaped toy 1592 | 313 1593 | 1594 | the yellow object 1595 | 487 1596 | 1597 | the square object 1598 | 201 1599 | 1600 | the cube 1601 | 207 1602 | 1603 | the green cube 1604 | 195 1605 | 1606 | the item that is salmon colored 1607 | 401 1608 | 1609 | the blue block 1610 | 076 1611 | 1612 | the yellow object 1613 | 493 1614 | 1615 | the yellow round object 1616 | 455 1617 | 1618 | the red toy 1619 | 429 1620 | 1621 | the green triangle 1622 | 319 1623 | 1624 | the peach arch 1625 | 051 1626 | 1627 | the pizza 1628 | 470 1629 | 1630 | the orange rectangle 1631 | 401 1632 | 1633 | the red cylinder 1634 | 259 1635 | 1636 | the red toy 1637 | 429 1638 | 1639 | the rock 1640 | 454 1641 | 1642 | the blue u 1643 | 129 1644 | 1645 | the yellow object 1646 | 487 1647 | 1648 | the dark cube 1649 | 201 1650 | 1651 | the blue object 1652 | 076 1653 | 1654 | the green object 1655 | 308 1656 | 1657 | the green cylinder 1658 | 265 1659 | 1660 | the purple cuboid 1661 | 125 1662 | 1663 | the tan cuboid shaped piece 1664 | 362 1665 | 1666 | the yellow rectangle 1667 | 493 1668 | 1669 | the blue cube 1670 | 082 1671 | 1672 | the yellow toy 1673 | 494 1674 | 1675 | the green triangle 1676 | 319 1677 | 1678 | the red , triangular shaped toy 1679 | 472 1680 | 1681 | the blue toy 1682 | 082 1683 | 1684 | the orange cube 1685 | 368 1686 | 1687 | the black rectangle 1688 | 143 1689 | 1690 | the orange , rectangular toy 1691 | 401 1692 | 1693 | the green triangle 1694 | 473 1695 | 1696 | the orange cube piece 1697 | 368 1698 | 1699 | the orange rectangle 1700 | 362 1701 | 1702 | the orange triangle 1703 | 471 1704 | 1705 | the red rectangle 1706 | 389 1707 | 1708 | the blue cube 1709 | 082 1710 | 1711 | the blue cube 1712 | 082 1713 | 1714 | the blue one 1715 | 076 1716 | 1717 | the blue object 1718 | 076 1719 | 1720 | the green piece 1721 | 473 1722 | 1723 | the brown rectangle 1724 | 125 1725 | 1726 | the red apple 1727 | 445 1728 | 1729 | the green block 1730 | 265 1731 | 1732 | the cube shaped toy on the table 1733 | 207 1734 | 1735 | the blue rectangle 1736 | 092 1737 | 1738 | only the gray item 1739 | 454 1740 | 1741 | the brown arch 1742 | 033 1743 | 1744 | the purple toy 1745 | 423 1746 | 1747 | the triangular shaped object 1748 | 423 1749 | 1750 | the dark red 1751 | 423 1752 | 1753 | the green rectangle 1754 | 304 1755 | 1756 | the yellow object 1757 | 494 1758 | 1759 | the green object 1760 | 304 1761 | 1762 | the purple toy 1763 | 472 1764 | 1765 | the pie slice 1766 | 470 1767 | 1768 | the red arch 1769 | 422 1770 | 1771 | the green rectangular toy 1772 | 304 1773 | 1774 | the green triangle 1775 | 473 1776 | 1777 | the rectangle 1778 | 401 1779 | 1780 | the blue rectangle object 1781 | 129 1782 | 1783 | the green item shaped like a pear 1784 | 338 1785 | 1786 | the green bridge-like object 1787 | 313 1788 | 1789 | the black object 1790 | 143 1791 | 1792 | the red rectangular object 1793 | 400 1794 | 1795 | the red toy 1796 | 045 1797 | 1798 | the blue arch 1799 | 129 1800 | 1801 | the yellow rectangle 1802 | 493 1803 | 1804 | the yellow object 1805 | 487 1806 | 1807 | the yellow lemon 1808 | 455 1809 | 1810 | the green triangle 1811 | 473 1812 | 1813 | the red rectangular toy 1814 | 389 1815 | 1816 | the brown cube 1817 | 201 1818 | 1819 | the cube 1820 | 201 1821 | 1822 | the magenta wedge 1823 | 423 1824 | 1825 | the red toy 1826 | 271 1827 | 1828 | the light green object 1829 | 338 1830 | 1831 | the orange object 1832 | 368 1833 | 1834 | the brown object 1835 | 137 1836 | 1837 | the orange/peach colored one 1838 | 471 1839 | 1840 | the yellow one 1841 | 487 1842 | 1843 | the beige object 1844 | 362 1845 | 1846 | the yellow block 1847 | 494 1848 | 1849 | the green cube shaped toy 1850 | 195 1851 | 1852 | the red block 1853 | 400 1854 | 1855 | the black toy 1856 | 125 1857 | 1858 | the rectangle 1859 | 400 1860 | 1861 | the green triangle 1862 | 473 1863 | 1864 | the brown ball shape 1865 | 454 1866 | 1867 | the brown potato 1868 | 137 1869 | 1870 | the green wedge 1871 | 473 1872 | 1873 | the red apple 1874 | 445 1875 | 1876 | the blue block that has an arch shape cut out 1877 | 129 1878 | 1879 | the orange bridge 1880 | 051 1881 | 1882 | the red apple 1883 | 445 1884 | 1885 | the red block 1886 | 430 1887 | 1888 | the red toy 1889 | 045 1890 | 1891 | the dark green toy 1892 | 313 1893 | 1894 | the red rectangle 1895 | 430 1896 | 1897 | the brown lump 1898 | 454 1899 | 1900 | the red object 1901 | 422 1902 | 1903 | only the blue crescent-shaped object 1904 | 129 1905 | 1906 | the round brown object 1907 | 137 1908 | 1909 | the dark green object 1910 | 304 1911 | 1912 | the orange cube 1913 | 368 1914 | 1915 | the green , rectangular toy 1916 | 304 1917 | 1918 | the red object 1919 | 045 1920 | 1921 | the round red object 1922 | 445 1923 | 1924 | the blue square 1925 | 082 1926 | 1927 | the black toys 1928 | 143 1929 | 1930 | the orange object 1931 | 401 1932 | 1933 | the yellow lemon shaped object 1934 | 455 1935 | 1936 | the triangular object 1937 | 472 1938 | 1939 | the red rectangle object 1940 | 400 1941 | 1942 | the red block 1943 | 389 1944 | 1945 | the yellow toy 1946 | 494 1947 | 1948 | the blue toy 1949 | 092 1950 | 1951 | the red object 1952 | 429 1953 | 1954 | the orange piece 1955 | 471 1956 | 1957 | the dark rectangle 1958 | 125 1959 | 1960 | the red apple 1961 | 445 1962 | 1963 | the yellow toy 1964 | 501 1965 | 1966 | the yellow toy 1967 | 501 1968 | 1969 | the green pear 1970 | 332 1971 | 1972 | the brown shape 1973 | 137 1974 | 1975 | the green rectangle 1976 | 304 1977 | 1978 | the black block 1979 | 201 1980 | 1981 | the yellow shape 1982 | 501 1983 | 1984 | the red piece 1985 | 271 1986 | 1987 | the brown hexagon 1988 | 131 1989 | 1990 | the green cube 1991 | 308 1992 | 1993 | the arch shaped toy 1994 | 033 1995 | 1996 | the yellow object 1997 | 501 1998 | 1999 | the dark green cylinder shaped toy 2000 | 265 2001 | 2002 | the green triangle 2003 | 473 2004 | 2005 | the red one 2006 | 045 2007 | 2008 | the yellow item 2009 | 500 2010 | 2011 | the green pear 2012 | 338 2013 | 2014 | the orange cube 2015 | 368 2016 | 2017 | the yellow arch 2018 | 487 2019 | 2020 | the red cylinder 2021 | 259 2022 | 2023 | the orange cube 2024 | 368 2025 | 2026 | the red arch 2027 | 422 2028 | 2029 | the orange cube 2030 | 207 2031 | 2032 | the blue object 2033 | 092 2034 | 2035 | the red rectangle 2036 | 389 2037 | 2038 | the green cube 2039 | 308 2040 | 2041 | the brown square 2042 | 201 2043 | 2044 | the red toy 2045 | 430 2046 | 2047 | the black rectangle 2048 | 125 2049 | 2050 | the red rectangle 2051 | 400 2052 | 2053 | the pie piece 2054 | 470 2055 | 2056 | the yellow arch 2057 | 487 2058 | 2059 | the red cylinder 2060 | 259 2061 | 2062 | the orange/peach item 2063 | 051 2064 | 2065 | the black rectangle 2066 | 143 2067 | 2068 | the green square object 2069 | 195 2070 | 2071 | the item that is colored yellow 2072 | 494 2073 | 2074 | the red cuboid shaped piece 2075 | 429 2076 | 2077 | the brown object 2078 | 131 2079 | 2080 | the red arch 2081 | 045 2082 | 2083 | the brown item 2084 | 137 2085 | 2086 | the dark green item 2087 | 265 2088 | 2089 | the cube 2090 | 207 2091 | 2092 | the green cylinder 2093 | 265 2094 | 2095 | the red object 2096 | 271 2097 | 2098 | the green cuboid 2099 | 304 2100 | 2101 | the blue object 2102 | 076 2103 | 2104 | the brown toy 2105 | 137 2106 | 2107 | the green cube 2108 | 308 2109 | 2110 | the blue rectangle 2111 | 092 2112 | 2113 | the brown round toy 2114 | 454 2115 | 2116 | the orange rectangle 2117 | 362 2118 | 2119 | the blue arched block 2120 | 129 2121 | 2122 | the red cylinder 2123 | 259 2124 | 2125 | the arch shaped toy 2126 | 051 2127 | 2128 | the light green object 2129 | 332 2130 | 2131 | the pie toy 2132 | 470 2133 | 2134 | the orange cube shaped toy 2135 | 368 2136 | 2137 | the green fruit 2138 | 332 2139 | 2140 | the purple triangle object 2141 | 472 2142 | 2143 | the green cone 2144 | 338 2145 | 2146 | the dark red hexagon 2147 | 131 2148 | 2149 | the green cylinder 2150 | 265 2151 | 2152 | the yellow lemon 2153 | 455 2154 | 2155 | the green wedge block 2156 | 319 2157 | 2158 | the blue toy 2159 | 076 2160 | 2161 | the brown toy 2162 | 131 2163 | 2164 | the blue toy that is on the table 2165 | 076 2166 | 2167 | the yellow toy 2168 | 500 2169 | 2170 | the green cylinder 2171 | 265 2172 | 2173 | the green cylinder 2174 | 265 2175 | 2176 | the purple triangle 2177 | 423 2178 | 2179 | the red apple 2180 | 445 2181 | 2182 | the green square piece 2183 | 308 2184 | 2185 | the orange rectangle 2186 | 401 2187 | 2188 | the red arch 2189 | 045 2190 | 2191 | the blue cube 2192 | 082 2193 | 2194 | the yellow block 2195 | 493 2196 | 2197 | the green arch 2198 | 313 2199 | 2200 | the red toy 2201 | 271 2202 | 2203 | the yellow toy 2204 | 501 2205 | 2206 | the pineapple slice 2207 | 500 2208 | 2209 | the blue object 2210 | 082 2211 | 2212 | any thing red 2213 | 429 2214 | 2215 | the yellow arch 2216 | 487 2217 | 2218 | the brown object 2219 | 131 2220 | 2221 | the red rectangle 2222 | 389 2223 | 2224 | the yellow object 2225 | 500 2226 | 2227 | the red object 2228 | 430 2229 | 2230 | the triangular shaped piece 2231 | 470 2232 | 2233 | the purple cuboid shaped piece 2234 | 143 2235 | 2236 | the green cube 2237 | 308 2238 | 2239 | the green triangle 2240 | 319 2241 | 2242 | the red rectangle 2243 | 430 2244 | 2245 | the red rectangle 2246 | 400 2247 | 2248 | the red apple 2249 | 445 2250 | 2251 | the green cylinder 2252 | 265 2253 | 2254 | the tan triangle shaped piece 2255 | 471 2256 | 2257 | the object shaped like a bridge 2258 | 033 2259 | 2260 | the yellow lemon-looking object 2261 | 455 2262 | 2263 | the dark red one 2264 | 259 2265 | 2266 | the blue one 2267 | 082 2268 | 2269 | the red rectangle 2270 | 429 2271 | 2272 | the triangular shaped toy 2273 | 472 2274 | 2275 | the gray toy 2276 | 137 2277 | 2278 | the red cylinder 2279 | 271 2280 | 2281 | the green triangle 2282 | 473 2283 | 2284 | the red cylinder toy 2285 | 259 2286 | 2287 | the red one 2288 | 430 2289 | 2290 | the red bar 2291 | 389 2292 | 2293 | the blue cube 2294 | 082 2295 | 2296 | the green block 2297 | 473 2298 | 2299 | the dark green rectangular object 2300 | 304 2301 | 2302 | the yellow toy 2303 | 500 2304 | 2305 | the pie slice 2306 | 470 2307 | 2308 | the yellow object 2309 | 501 2310 | 2311 | the green rectangle 2312 | 304 2313 | 2314 | the yellow toy 2315 | 493 2316 | 2317 | the orange arch 2318 | 051 2319 | 2320 | the yellow object 2321 | 494 2322 | 2323 | the gray spherical object 2324 | 454 2325 | 2326 | the orange arch 2327 | 051 2328 | 2329 | the dark green object 2330 | 265 2331 | 2332 | the orange triangle 2333 | 471 2334 | 2335 | the magenta piece 2336 | 430 2337 | 2338 | the dark green one 2339 | 313 2340 | 2341 | the orange object 2342 | 051 2343 | 2344 | the green cube 2345 | 308 2346 | 2347 | the blue one nearest the green one 2348 | 129 2349 | 2350 | the green cube 2351 | 308 2352 | 2353 | the red arch 2354 | 422 2355 | 2356 | the green wedge 2357 | 473 2358 | 2359 | the red cylinder 2360 | 271 2361 | 2362 | only the red that is not a cylinder 2363 | 445 2364 | 2365 | the gray rock 2366 | 454 2367 | 2368 | the lemon 2369 | 455 2370 | 2371 | the green pear 2372 | 338 2373 | 2374 | only the yellow objects 2375 | 500 2376 | 2377 | the green rectangle shaped toy 2378 | 304 2379 | 2380 | the orange cube 2381 | 207 2382 | 2383 | the red toy 2384 | 271 2385 | 2386 | the potato shaped object 2387 | 454 2388 | 2389 | the yellow bridge 2390 | 487 2391 | 2392 | the yellow bar 2393 | 493 2394 | 2395 | the purple triangle 2396 | 472 2397 | 2398 | the blue toy 2399 | 076 2400 | 2401 | the orange object 2402 | 401 2403 | 2404 | the green triangle 2405 | 319 2406 | 2407 | the yellow toy 2408 | 500 2409 | 2410 | the brown cube 2411 | 201 2412 | 2413 | the orange rectangle 2414 | 362 2415 | 2416 | the purple hexagon 2417 | 131 2418 | 2419 | the largest red piece 2420 | 445 2421 | 2422 | the red rectangle 2423 | 429 2424 | 2425 | the green wedge 2426 | 473 2427 | 2428 | the orange square 2429 | 207 2430 | 2431 | the bright green object that looks like a little bottle 2432 | 332 2433 | 2434 | the red toy 2435 | 045 2436 | 2437 | the green cylinder 2438 | 265 2439 | 2440 | the dark rectangular block 2441 | 143 2442 | 2443 | the light green item 2444 | 332 2445 | 2446 | the light green piece 2447 | 332 2448 | 2449 | the orange cube 2450 | 368 2451 | 2452 | the blue object 2453 | 076 2454 | 2455 | the cylinder 2456 | 271 2457 | 2458 | the blue arch 2459 | 129 2460 | 2461 | the light green item 2462 | 332 2463 | 2464 | the green cube 2465 | 195 2466 | 2467 | the purple cube 2468 | 201 2469 | 2470 | the green cylinder 2471 | 265 2472 | 2473 | the arch 2474 | 051 2475 | 2476 | the orange cube 2477 | 368 2478 | 2479 | the blue toy 2480 | 076 2481 | 2482 | the red cuboid 2483 | 400 2484 | 2485 | the orange rectangle 2486 | 401 2487 | 2488 | the peach colored cube 2489 | 207 2490 | 2491 | the brown toys 2492 | 137 2493 | 2494 | the yellow ball 2495 | 455 2496 | 2497 | the red object 2498 | 045 2499 | 2500 | the red apple 2501 | 445 2502 | 2503 | the black arch 2504 | 033 2505 | 2506 | the brown one 2507 | 131 2508 | 2509 | the yellow object 2510 | 500 2511 | 2512 | the rounded brown toy 2513 | 137 2514 | 2515 | the gray rock 2516 | 137 2517 | 2518 | the orange cube 2519 | 207 2520 | 2521 | the yellow piece 2522 | 500 2523 | 2524 | the purple triangle 2525 | 423 2526 | 2527 | the green cylinder 2528 | 265 2529 | 2530 | the blue toy 2531 | 092 2532 | 2533 | the green cylinder 2534 | 265 2535 | 2536 | the black object 2537 | 125 2538 | 2539 | the green wedge 2540 | 319 2541 | 2542 | the orange rectangle 2543 | 401 2544 | 2545 | the small green object , the square object , the smaller square green object 2546 | 195 2547 | 2548 | the blue toy 2549 | 076 2550 | 2551 | the pear 2552 | 338 2553 | 2554 | the red triangle 2555 | 472 2556 | 2557 | the cube shaped piece 2558 | 201 2559 | 2560 | the red object 2561 | 271 2562 | 2563 | the black arch 2564 | 033 2565 | 2566 | the purple object 2567 | 423 2568 | 2569 | the purple triangle shaped piece 2570 | 472 2571 | 2572 | the yellow lemon 2573 | 455 2574 | 2575 | the orange piece 2576 | 207 2577 | 2578 | the green rectangle object 2579 | 304 2580 | 2581 | the red rectangle 2582 | 045 2583 | 2584 | the green rectangle 2585 | 304 2586 | 2587 | the cylinder 2588 | 259 2589 | 2590 | the pear 2591 | 338 2592 | 2593 | the pizza slice 2594 | 470 2595 | 2596 | the cube 2597 | 201 2598 | 2599 | the green cube 2600 | 308 2601 | 2602 | the tan rectangular object 2603 | 362 2604 | 2605 | the orange wedge 2606 | 471 2607 | 2608 | the red block shaped like half a circle has been cut out of it , on the top right of the table 2609 | 422 2610 | 2611 | the blue rectangle object 2612 | 092 2613 | 2614 | the red object 2615 | 429 2616 | 2617 | the red brick 2618 | 400 2619 | 2620 | the brown/gray odd shaped one 2621 | 137 2622 | 2623 | only the red sphere-shaped item 2624 | 259 2625 | 2626 | the orange toy 2627 | 362 2628 | 2629 | the orange cube 2630 | 207 2631 | 2632 | only the green cube 2633 | 308 2634 | 2635 | the arch 2636 | 051 2637 | 2638 | only the yellow rectangular object 2639 | 493 2640 | 2641 | -------------------------------------------------------------------------------- /data/genx/labelling/single/devtrain.txt: -------------------------------------------------------------------------------- 1 | the tan triangle shaped piece 2 | 471 3 | 4 | only the tan wedge object 5 | 471 6 | 7 | the orange wedge 8 | 471 9 | 10 | the orange toy 11 | 471 12 | 13 | the orange , triangular object 14 | 471 15 | 16 | the wedge 17 | 471 18 | 19 | the tan colored triangular object 20 | 471 21 | 22 | the orange object 23 | 471 24 | 25 | the orange triangle 26 | 471 27 | 28 | the peach triangle 29 | 471 30 | 31 | the green arch block 32 | 313 33 | 34 | the green arched shaped piece 35 | 313 36 | 37 | the dark green arch 38 | 313 39 | 40 | the green arch 41 | 313 42 | 43 | the green arch 44 | 313 45 | 46 | only the green toy with the arch cut out of it 47 | 313 48 | 49 | the dark green toy 50 | 313 51 | 52 | the dark green arch 53 | 313 54 | 55 | the green c shaped toy 56 | 313 57 | 58 | the dark green object 59 | 313 60 | 61 | the dark green item 62 | 265 63 | 64 | the dark green object 65 | 265 66 | 67 | the green block 68 | 265 69 | 70 | the green cylinder 71 | 265 72 | 73 | the dark green object 74 | 265 75 | 76 | the green cylinder 77 | 265 78 | 79 | the dark green cylinder shaped toy 80 | 265 81 | 82 | the green cylinder 83 | 265 84 | 85 | the green cylinder 86 | 265 87 | 88 | the green cylinder 89 | 265 90 | 91 | the yellow item 92 | 500 93 | 94 | the yellow object 95 | 500 96 | 97 | the curved , yellow object 98 | 500 99 | 100 | the yellow object 101 | 500 102 | 103 | the yellow shape 104 | 500 105 | 106 | the yellow curved shaped toy 107 | 500 108 | 109 | the pineapple slice 110 | 500 111 | 112 | the yellow piece 113 | 500 114 | 115 | the yellow pineapple slice 116 | 500 117 | 118 | the yellow toy 119 | 500 120 | 121 | the black object 122 | 143 123 | 124 | the brown rectangle 125 | 143 126 | 127 | the purple cuboid shaped piece 128 | 143 129 | 130 | the item that is black and rectangular 131 | 143 132 | 133 | the brown rectangle 134 | 143 135 | 136 | the brown block 137 | 143 138 | 139 | only the black rectangular object 140 | 143 141 | 142 | the rectangular prism 143 | 143 144 | 145 | the black toys 146 | 143 147 | 148 | the dark rectangular block 149 | 143 150 | 151 | the item that is salmon colored 152 | 401 153 | 154 | the orange rectangle 155 | 401 156 | 157 | the orange rectangle object 158 | 401 159 | 160 | the orange , rectangular toy 161 | 401 162 | 163 | the pink brick 164 | 401 165 | 166 | the orange object 167 | 401 168 | 169 | the peach rectangle 170 | 401 171 | 172 | the orange object 173 | 401 174 | 175 | the orange rectangle 176 | 401 177 | 178 | the orange rectangle 179 | 401 180 | 181 | the blue rectangle 182 | 092 183 | 184 | the blue toy 185 | 092 186 | 187 | the blue toy 188 | 092 189 | 190 | the blue rectangle object 191 | 092 192 | 193 | all blue objects 194 | 092 195 | 196 | the blue object 197 | 092 198 | 199 | the blue piece 200 | 092 201 | 202 | the blue toy 203 | 092 204 | 205 | the blue toy 206 | 092 207 | 208 | the blue object 209 | 092 210 | 211 | the yellow toy block 212 | 494 213 | 214 | the yellow toy 215 | 494 216 | 217 | the yellow item 218 | 494 219 | 220 | the yellow block 221 | 494 222 | 223 | the yellow toy the square block with round top the yellow object 224 | 494 225 | 226 | the yellow square 227 | 494 228 | 229 | the yellow object 230 | 494 231 | 232 | the yellow object 233 | 494 234 | 235 | the yellow object 236 | 494 237 | 238 | the item that is colored yellow 239 | 494 240 | 241 | the triangle 242 | 423 243 | 244 | the magenta wedge 245 | 423 246 | 247 | the red triangle 248 | 423 249 | 250 | the purple object 251 | 423 252 | 253 | the purple toy 254 | 423 255 | 256 | the triangle object 257 | 423 258 | 259 | the light purple object 260 | 423 261 | 262 | only the triangle 263 | 423 264 | 265 | the purple triangle 266 | 423 267 | 268 | the purple piece 269 | 423 270 | 271 | the red arch 272 | 422 273 | 274 | the red object 275 | 422 276 | 277 | the pink arch 278 | 422 279 | 280 | the red object 281 | 422 282 | 283 | the red , c shaped toy 284 | 422 285 | 286 | the red bridge shaped piece 287 | 422 288 | 289 | the red arch 290 | 422 291 | 292 | the red block shaped like half a circle has been cut out of it , on the top right of the table 293 | 422 294 | 295 | the red object 296 | 422 297 | 298 | the red dented object 299 | 422 300 | 301 | the red object 302 | 430 303 | 304 | the red toy 305 | 430 306 | 307 | the red piece 308 | 430 309 | 310 | the rectangular shaped item that is red 311 | 430 312 | 313 | the red block 314 | 430 315 | 316 | the red toy 317 | 430 318 | 319 | the red rectangular prism 320 | 430 321 | 322 | the magenta piece 323 | 430 324 | 325 | the red rectangle 326 | 430 327 | 328 | the red rectangle 329 | 430 330 | 331 | the red apple 332 | 445 333 | 334 | the red apple 335 | 445 336 | 337 | the red apple shaped piece 338 | 445 339 | 340 | the red apple 341 | 445 342 | 343 | the red apple 344 | 445 345 | 346 | only the red that is not a cylinder 347 | 445 348 | 349 | the red toy that is not the cylinder 350 | 445 351 | 352 | the round red object 353 | 445 354 | 355 | the red apple 356 | 445 357 | 358 | the red toy that is not a cylinder 359 | 445 360 | 361 | the lightest green object that looks like a jar it is located just below the blue arch 362 | 332 363 | 364 | the light green piece 365 | 332 366 | 367 | the light green object 368 | 332 369 | 370 | the green pear 371 | 332 372 | 373 | the light green object 374 | 332 375 | 376 | the light green item 377 | 332 378 | 379 | the pear 380 | 332 381 | 382 | the light green pear toy 383 | 332 384 | 385 | the pear 386 | 332 387 | 388 | the light green object 389 | 332 390 | 391 | the orange square 392 | 368 393 | 394 | the orange cube 395 | 368 396 | 397 | the cube 398 | 368 399 | 400 | the orange cube 401 | 368 402 | 403 | the orange object 404 | 368 405 | 406 | the orange cube 407 | 368 408 | 409 | the orange cube 410 | 368 411 | 412 | the orange cube shaped toy 413 | 368 414 | 415 | the orange cube 416 | 368 417 | 418 | the orange block 419 | 368 420 | 421 | the yellow lemon object 422 | 455 423 | 424 | the round yellow piece 425 | 455 426 | 427 | the yellow lemon 428 | 455 429 | 430 | the yellow ball 431 | 455 432 | 433 | the yellow round object 434 | 455 435 | 436 | the yellow lemon 437 | 455 438 | 439 | the yellow lemon 440 | 455 441 | 442 | the round yellow object 443 | 455 444 | 445 | the round yellow piece 446 | 455 447 | 448 | the yellow lemon 449 | 455 450 | 451 | the green cube shaped toy 452 | 195 453 | 454 | the green cube 455 | 195 456 | 457 | the green cube 458 | 195 459 | 460 | the green cube 461 | 195 462 | 463 | the green square 464 | 195 465 | 466 | the small green object , the square object , the smaller square green object 467 | 195 468 | 469 | the green cube 470 | 195 471 | 472 | the green toy that is shaped like a cube 473 | 195 474 | 475 | the green square object 476 | 195 477 | 478 | the cube piece 479 | 195 480 | 481 | the orange object 482 | 051 483 | 484 | the peach arch 485 | 051 486 | 487 | the orange toy 488 | 051 489 | 490 | the arch 491 | 051 492 | 493 | the orange object 494 | 051 495 | 496 | the orange arch 497 | 051 498 | 499 | the orange arch 500 | 051 501 | 502 | the orange dented object 503 | 051 504 | 505 | the orange arch block 506 | 051 507 | 508 | the orange arch 509 | 051 510 | 511 | the yellow arch 512 | 487 513 | 514 | the yellow arch 515 | 487 516 | 517 | the yellow object 518 | 487 519 | 520 | the yellow item that looks like half a circle cut out of it 521 | 487 522 | 523 | the yellow object 524 | 487 525 | 526 | the yellow arch 527 | 487 528 | 529 | the yellow object 530 | 487 531 | 532 | the yellow arch 533 | 487 534 | 535 | the yellow block 536 | 487 537 | 538 | the yellow arch item 539 | 487 540 | 541 | the red rectangle 542 | 429 543 | 544 | the red object 545 | 429 546 | 547 | the red cuboid shaped piece 548 | 429 549 | 550 | any thing red 551 | 429 552 | 553 | the red object 554 | 429 555 | 556 | the red toy 557 | 429 558 | 559 | the red brick 560 | 429 561 | 562 | the red toy 563 | 429 564 | 565 | the red block 566 | 429 567 | 568 | the red object 569 | 429 570 | 571 | the green pear 572 | 338 573 | 574 | the light green object 575 | 338 576 | 577 | the light green block 578 | 338 579 | 580 | the green pear 581 | 338 582 | 583 | the light green pear shaped toy 584 | 338 585 | 586 | the bright green object 587 | 338 588 | 589 | the green item shaped like a pear 590 | 338 591 | 592 | the light green object 593 | 338 594 | 595 | the pear 596 | 338 597 | 598 | the pear 599 | 338 600 | 601 | the brown geometrical shaped toy 602 | 131 603 | 604 | the hexagon 605 | 131 606 | 607 | the six-sided object 608 | 131 609 | 610 | the brown object 611 | 131 612 | 613 | the purple piece 614 | 131 615 | 616 | the brown object 617 | 131 618 | 619 | the brown toy 620 | 131 621 | 622 | the purple hexagon 623 | 131 624 | 625 | the brown toy 626 | 131 627 | 628 | the brown object 629 | 131 630 | 631 | the peach colored object 632 | 362 633 | 634 | the tan cuboid shaped piece 635 | 362 636 | 637 | the orange toy 638 | 362 639 | 640 | the tan rectangular object 641 | 362 642 | 643 | the orange rectangle 644 | 362 645 | 646 | the orange rectangle 647 | 362 648 | 649 | the orange rectangle 650 | 362 651 | 652 | the orange object 653 | 362 654 | 655 | the pink rectangle closest to the edge of the table 656 | 362 657 | 658 | the orange rectangle 659 | 362 660 | 661 | the green triangle 662 | 319 663 | 664 | the green triangular toy 665 | 319 666 | 667 | the green wedge block 668 | 319 669 | 670 | the green triangle 671 | 319 672 | 673 | the green piece 674 | 319 675 | 676 | the green triangle 677 | 319 678 | 679 | the green triangle 680 | 319 681 | 682 | the green wedge 683 | 319 684 | 685 | the green object 686 | 319 687 | 688 | the green block 689 | 319 690 | 691 | the green square 692 | 308 693 | 694 | the green cube 695 | 308 696 | 697 | only the green cube 698 | 308 699 | 700 | the green cube 701 | 308 702 | 703 | the small green square block 704 | 308 705 | 706 | only the dark green objects 707 | 308 708 | 709 | the dark green object 710 | 308 711 | 712 | the green object 713 | 308 714 | 715 | the green cube 716 | 308 717 | 718 | the square 719 | 308 720 | 721 | the red toy 722 | 271 723 | 724 | the cylinder 725 | 271 726 | 727 | the red object 728 | 271 729 | 730 | the red toy 731 | 271 732 | 733 | the red block 734 | 271 735 | 736 | the red piece 737 | 271 738 | 739 | the red cylinder 740 | 271 741 | 742 | the magenta tube shape 743 | 271 744 | 745 | the red round block 746 | 271 747 | 748 | the red cylinder 749 | 271 750 | 751 | the cube 752 | 201 753 | 754 | the brown square 755 | 201 756 | 757 | the purple cube 758 | 201 759 | 760 | the square object 761 | 201 762 | 763 | the brown square block 764 | 201 765 | 766 | the dark cube 767 | 201 768 | 769 | the cube shaped object 770 | 201 771 | 772 | the cube 773 | 201 774 | 775 | the black item shaped like a cube 776 | 201 777 | 778 | the brown cube 779 | 201 780 | 781 | the triangular shaped toy 782 | 472 783 | 784 | the red triangle object 785 | 472 786 | 787 | the purple wedge 788 | 472 789 | 790 | the triangular object 791 | 472 792 | 793 | the triangular toy 794 | 472 795 | 796 | the red , triangular shaped toy 797 | 472 798 | 799 | the a purple triangle 800 | 472 801 | 802 | the purple pizza sliced shaped toy 803 | 472 804 | 805 | the red triangle 806 | 472 807 | 808 | the purple triangle shaped piece 809 | 472 810 | 811 | the gray stone looking piece 812 | 454 813 | 814 | the brown round toy 815 | 454 816 | 817 | the gray rock 818 | 454 819 | 820 | the brown potato 821 | 454 822 | 823 | the brown object 824 | 454 825 | 826 | the gray spherical object 827 | 454 828 | 829 | the brown object 830 | 454 831 | 832 | the rock 833 | 454 834 | 835 | the brown object 836 | 454 837 | 838 | the potato shaped object 839 | 454 840 | 841 | the red block 842 | 389 843 | 844 | the red rectangle 845 | 389 846 | 847 | the red cuboid shaped piece 848 | 389 849 | 850 | the red rectangle 851 | 389 852 | 853 | the red block 854 | 389 855 | 856 | the rectangular object 857 | 389 858 | 859 | the red box toy 860 | 389 861 | 862 | the magenta rectangle piece 863 | 389 864 | 865 | the red rectangular block 866 | 389 867 | 868 | the red rectangular block 869 | 389 870 | 871 | the green object 872 | 304 873 | 874 | the green cuboid 875 | 304 876 | 877 | the green rectangle 878 | 304 879 | 880 | the green block 881 | 304 882 | 883 | the green rectangle 884 | 304 885 | 886 | the rectangular green block 887 | 304 888 | 889 | the green , rectangular toy 890 | 304 891 | 892 | the green rectangle object 893 | 304 894 | 895 | the green rectangle shaped toy 896 | 304 897 | 898 | the piece that is dark green , rectangular , and in the top right 899 | 304 900 | 901 | the pie slice 902 | 470 903 | 904 | the pie slice shaped plastic toy 905 | 470 906 | 907 | the pizza 908 | 470 909 | 910 | the slice of pizza 911 | 470 912 | 913 | the slice of pie 914 | 470 915 | 916 | the object that looks like a slice of apple pie 917 | 470 918 | 919 | the triangular shaped piece 920 | 470 921 | 922 | the pie piece 923 | 470 924 | 925 | the object that looks like a piece of pie 926 | 470 927 | 928 | the triangle object 929 | 470 930 | 931 | the yellow square object 932 | 501 933 | 934 | the yellow toy 935 | 501 936 | 937 | the yellow square 938 | 501 939 | 940 | the yellow toy 941 | 501 942 | 943 | the yellow object 944 | 501 945 | 946 | the yellow piece 947 | 501 948 | 949 | the yellow toy 950 | 501 951 | 952 | the square block with round top 953 | 501 954 | 955 | the yellow object 956 | 501 957 | 958 | the yellow block 959 | 501 960 | 961 | the brown rectangle 962 | 125 963 | 964 | the brown rectangle 965 | 125 966 | 967 | the black object 968 | 125 969 | 970 | the brown rectangle 971 | 125 972 | 973 | the black rectangle 974 | 125 975 | 976 | the black block 977 | 125 978 | 979 | the dark rectangle 980 | 125 981 | 982 | the purple cuboid 983 | 125 984 | 985 | the black or dark brown piece 986 | 125 987 | 988 | the black object 989 | 125 990 | 991 | the gray stone shaped piece 992 | 137 993 | 994 | the gray rock 995 | 137 996 | 997 | the round brown object 998 | 137 999 | 1000 | the brown toy 1001 | 137 1002 | 1003 | the brown toy 1004 | 137 1005 | 1006 | the brown item 1007 | 137 1008 | 1009 | the rounded brown toy 1010 | 137 1011 | 1012 | the brown potato 1013 | 137 1014 | 1015 | the gray toy 1016 | 137 1017 | 1018 | the round brown ball 1019 | 137 1020 | 1021 | the red cylinder 1022 | 259 1023 | 1024 | the red circular block 1025 | 259 1026 | 1027 | the red cylinder object 1028 | 259 1029 | 1030 | the red cylinder piece 1031 | 259 1032 | 1033 | the cylinder 1034 | 259 1035 | 1036 | the red cylinder toy 1037 | 259 1038 | 1039 | the red cylinder 1040 | 259 1041 | 1042 | the red cylinder 1043 | 259 1044 | 1045 | the red cylinder 1046 | 259 1047 | 1048 | the red cylinder 1049 | 259 1050 | 1051 | the red toy that is shaped like a rectangle 1052 | 400 1053 | 1054 | the red rectangle object 1055 | 400 1056 | 1057 | the red cuboid 1058 | 400 1059 | 1060 | the red rectangle 1061 | 400 1062 | 1063 | the red rectangle shaped toy on the table 1064 | 400 1065 | 1066 | the red rectangular block 1067 | 400 1068 | 1069 | the red rectangular object 1070 | 400 1071 | 1072 | the red block 1073 | 400 1074 | 1075 | the rectangle 1076 | 400 1077 | 1078 | the red brick 1079 | 400 1080 | 1081 | the red rectangle 1082 | 045 1083 | 1084 | the red arch 1085 | 045 1086 | 1087 | the red arch block 1088 | 045 1089 | 1090 | the arc only 1091 | 045 1092 | 1093 | the red arch 1094 | 045 1095 | 1096 | the red arch 1097 | 045 1098 | 1099 | the red toy 1100 | 045 1101 | 1102 | the red object 1103 | 045 1104 | 1105 | the red arch 1106 | 045 1107 | 1108 | the red object 1109 | 045 1110 | 1111 | the blue cube 1112 | 082 1113 | 1114 | the blue object 1115 | 082 1116 | 1117 | the blue square 1118 | 082 1119 | 1120 | the item shaped like a blue cube 1121 | 082 1122 | 1123 | the blue cube 1124 | 082 1125 | 1126 | the blue cube 1127 | 082 1128 | 1129 | the blue cube 1130 | 082 1131 | 1132 | the blue cube 1133 | 082 1134 | 1135 | the blue object 1136 | 082 1137 | 1138 | the blue cube 1139 | 082 1140 | 1141 | the blue object 1142 | 076 1143 | 1144 | the blue toy 1145 | 076 1146 | 1147 | the blue block 1148 | 076 1149 | 1150 | the blue object 1151 | 076 1152 | 1153 | the blue toy 1154 | 076 1155 | 1156 | the blue object 1157 | 076 1158 | 1159 | the blue object 1160 | 076 1161 | 1162 | the blue cube with a sphere on top of it 1163 | 076 1164 | 1165 | the blue toy that is on the table 1166 | 076 1167 | 1168 | the blue square 1169 | 076 1170 | 1171 | only the yellow rectangular object 1172 | 493 1173 | 1174 | the yellow rectangle 1175 | 493 1176 | 1177 | the yellow object 1178 | 493 1179 | 1180 | the yellow object 1181 | 493 1182 | 1183 | the yellow piece 1184 | 493 1185 | 1186 | the yellow , rectangular toy 1187 | 493 1188 | 1189 | the yellow toy 1190 | 493 1191 | 1192 | the yellow block 1193 | 493 1194 | 1195 | the yellow rectangle 1196 | 493 1197 | 1198 | the yellow toy 1199 | 493 1200 | 1201 | the brown dented object 1202 | 033 1203 | 1204 | the object shaped like a bridge 1205 | 033 1206 | 1207 | the brown arched shaped toy 1208 | 033 1209 | 1210 | the bridge shaped toy 1211 | 033 1212 | 1213 | the purple arch on the far most left side of the table 1214 | 033 1215 | 1216 | the black object 1217 | 033 1218 | 1219 | the purple arch shaped piece 1220 | 033 1221 | 1222 | only the black bridge object 1223 | 033 1224 | 1225 | the gray piece 1226 | 033 1227 | 1228 | the brown arch 1229 | 033 1230 | 1231 | the blue arch 1232 | 129 1233 | 1234 | the blue arch 1235 | 129 1236 | 1237 | the blue arch 1238 | 129 1239 | 1240 | the blue arch 1241 | 129 1242 | 1243 | the blue bridge-like object 1244 | 129 1245 | 1246 | the blue dented object 1247 | 129 1248 | 1249 | the blue arch 1250 | 129 1251 | 1252 | the blue arched block 1253 | 129 1254 | 1255 | the blue rectangle object 1256 | 129 1257 | 1258 | the blue block that has an arch shape cut out 1259 | 129 1260 | 1261 | the orange cube 1262 | 207 1263 | 1264 | the orange square 1265 | 207 1266 | 1267 | the orange cube 1268 | 207 1269 | 1270 | the orange square object 1271 | 207 1272 | 1273 | the cube 1274 | 207 1275 | 1276 | the cube shaped toy on the table 1277 | 207 1278 | 1279 | the peach colored cube 1280 | 207 1281 | 1282 | the cube 1283 | 207 1284 | 1285 | the orange block 1286 | 207 1287 | 1288 | the tan cube 1289 | 207 1290 | 1291 | only the green acute triangle 1292 | 473 1293 | 1294 | the green triangle 1295 | 473 1296 | 1297 | the green piece 1298 | 473 1299 | 1300 | the green triangle 1301 | 473 1302 | 1303 | the green triangular shaped toy 1304 | 473 1305 | 1306 | the green wedge 1307 | 473 1308 | 1309 | the green object 1310 | 473 1311 | 1312 | the green triangle 1313 | 473 1314 | 1315 | the green wedge 1316 | 473 1317 | 1318 | the green block 1319 | 473 1320 | 1321 | the green cylinder 1322 | 265 1323 | 1324 | the green cylinder 1325 | 265 1326 | 1327 | the green cylinder 1328 | 265 1329 | 1330 | the green cylinder 1331 | 265 1332 | 1333 | the green cylinder 1334 | 265 1335 | 1336 | the green cylinder 1337 | 265 1338 | 1339 | the green cylinder 1340 | 265 1341 | 1342 | only the dark green tube toy 1343 | 265 1344 | 1345 | the green cylinder 1346 | 265 1347 | 1348 | the dark green one 1349 | 265 1350 | 1351 | the black rectangular piece 1352 | 143 1353 | 1354 | the black rectangle 1355 | 143 1356 | 1357 | the black block 1358 | 143 1359 | 1360 | the black rectangle 1361 | 143 1362 | 1363 | the brown item 1364 | 143 1365 | 1366 | the black one 1367 | 143 1368 | 1369 | the black one 1370 | 143 1371 | 1372 | the brown rectangle 1373 | 143 1374 | 1375 | the brown rectangle 1376 | 143 1377 | 1378 | the black rectangle 1379 | 143 1380 | 1381 | the blue toy 1382 | 092 1383 | 1384 | the blue toy 1385 | 092 1386 | 1387 | the blue item 1388 | 092 1389 | 1390 | the blue rectangle 1391 | 092 1392 | 1393 | the blue object 1394 | 092 1395 | 1396 | the blue toy 1397 | 092 1398 | 1399 | the blue object 1400 | 092 1401 | 1402 | the blue rectangle 1403 | 092 1404 | 1405 | the dark blue one 1406 | 092 1407 | 1408 | the blue rectangle 1409 | 092 1410 | 1411 | the red triangle 1412 | 423 1413 | 1414 | the red triangle 1415 | 423 1416 | 1417 | the triangular shaped object 1418 | 423 1419 | 1420 | the pink piece 1421 | 423 1422 | 1423 | the purple triangle 1424 | 423 1425 | 1426 | the purple triangle 1427 | 423 1428 | 1429 | the purple triangle 1430 | 423 1431 | 1432 | the pink pie slice toy 1433 | 423 1434 | 1435 | the dark red 1436 | 423 1437 | 1438 | the triangle 1439 | 423 1440 | 1441 | the red arch 1442 | 422 1443 | 1444 | the red u 1445 | 422 1446 | 1447 | the red arch 1448 | 422 1449 | 1450 | the red object 1451 | 422 1452 | 1453 | the red arch 1454 | 422 1455 | 1456 | the red piece 1457 | 422 1458 | 1459 | the red block 1460 | 422 1461 | 1462 | the red one 1463 | 422 1464 | 1465 | the magenta bridge 1466 | 422 1467 | 1468 | the red toy 1469 | 422 1470 | 1471 | the orange/peach colored one 1472 | 471 1473 | 1474 | the orange piece 1475 | 471 1476 | 1477 | the orange triangle 1478 | 471 1479 | 1480 | the orange pyramid 1481 | 471 1482 | 1483 | the orange wedge 1484 | 471 1485 | 1486 | the orange triangle 1487 | 471 1488 | 1489 | the orange triangle 1490 | 471 1491 | 1492 | the orange toy 1493 | 471 1494 | 1495 | the orange triangle 1496 | 471 1497 | 1498 | the orange block 1499 | 471 1500 | 1501 | the dark green one 1502 | 313 1503 | 1504 | the green u shaped toy 1505 | 313 1506 | 1507 | the dark green toy 1508 | 313 1509 | 1510 | only the dark green toy 1511 | 313 1512 | 1513 | the green bridge-like object 1514 | 313 1515 | 1516 | the green arch 1517 | 313 1518 | 1519 | the green toy 1520 | 313 1521 | 1522 | the green arch 1523 | 313 1524 | 1525 | the dark green object 1526 | 313 1527 | 1528 | the green arch 1529 | 313 1530 | 1531 | the yellow curved toy 1532 | 500 1533 | 1534 | the yellow toy 1535 | 500 1536 | 1537 | only the yellow objects 1538 | 500 1539 | 1540 | the yellow toy 1541 | 500 1542 | 1543 | the yellow object 1544 | 500 1545 | 1546 | the yellow piece 1547 | 500 1548 | 1549 | the yellow toy 1550 | 500 1551 | 1552 | the yellow item 1553 | 500 1554 | 1555 | the yellow toy 1556 | 500 1557 | 1558 | the yellow one 1559 | 500 1560 | 1561 | the red apple 1562 | 445 1563 | 1564 | the red apple 1565 | 445 1566 | 1567 | the red apple 1568 | 445 1569 | 1570 | the red apple 1571 | 445 1572 | 1573 | the red apple 1574 | 445 1575 | 1576 | the red apple 1577 | 445 1578 | 1579 | the red apple 1580 | 445 1581 | 1582 | the largest red piece 1583 | 445 1584 | 1585 | the red apple 1586 | 445 1587 | 1588 | the red apple 1589 | 445 1590 | 1591 | the orange rectangle block 1592 | 401 1593 | 1594 | the orange piece 1595 | 401 1596 | 1597 | the rectangle 1598 | 401 1599 | 1600 | the rectangle 1601 | 401 1602 | 1603 | the orange toy 1604 | 401 1605 | 1606 | the orange rectangle 1607 | 401 1608 | 1609 | the orange rectangle 1610 | 401 1611 | 1612 | the orange object 1613 | 401 1614 | 1615 | the orange rectangle 1616 | 401 1617 | 1618 | the orange toy 1619 | 401 1620 | 1621 | the yellow 1622 | 494 1623 | 1624 | the yellow object 1625 | 494 1626 | 1627 | the yellow toy 1628 | 494 1629 | 1630 | the yellow object 1631 | 494 1632 | 1633 | the yellow toy 1634 | 494 1635 | 1636 | the yellow top 1637 | 494 1638 | 1639 | the yellow piece 1640 | 494 1641 | 1642 | the yellow domed block 1643 | 494 1644 | 1645 | the yellow toy 1646 | 494 1647 | 1648 | the yellow object 1649 | 494 1650 | 1651 | the red rectangle 1652 | 430 1653 | 1654 | the red rectangle 1655 | 430 1656 | 1657 | the red piece 1658 | 430 1659 | 1660 | the red one 1661 | 430 1662 | 1663 | the red rectangle 1664 | 430 1665 | 1666 | the red rectangle 1667 | 430 1668 | 1669 | the red toys 1670 | 430 1671 | 1672 | the red object 1673 | 430 1674 | 1675 | the red object 1676 | 430 1677 | 1678 | the red object 1679 | 430 1680 | 1681 | the light green toy 1682 | 332 1683 | 1684 | the bright green pear 1685 | 332 1686 | 1687 | the light green leaf 1688 | 332 1689 | 1690 | the light green item 1691 | 332 1692 | 1693 | the green fruit 1694 | 332 1695 | 1696 | the green pear 1697 | 332 1698 | 1699 | the light green 1700 | 332 1701 | 1702 | the bright green object that looks like a little bottle 1703 | 332 1704 | 1705 | the green pear-like item 1706 | 332 1707 | 1708 | the green pear 1709 | 332 1710 | 1711 | the lime green toy 1712 | 338 1713 | 1714 | the pear 1715 | 338 1716 | 1717 | the green cone 1718 | 338 1719 | 1720 | the green toy 1721 | 338 1722 | 1723 | the green pear 1724 | 338 1725 | 1726 | the light green one 1727 | 338 1728 | 1729 | the light green item 1730 | 338 1731 | 1732 | the bright green toy 1733 | 338 1734 | 1735 | the green pear 1736 | 338 1737 | 1738 | the green pear 1739 | 338 1740 | 1741 | the orange square 1742 | 368 1743 | 1744 | the orange one 1745 | 368 1746 | 1747 | the orange cube 1748 | 368 1749 | 1750 | the orange cube 1751 | 368 1752 | 1753 | the beige cube 1754 | 368 1755 | 1756 | the orange cube 1757 | 368 1758 | 1759 | the orange cube 1760 | 368 1761 | 1762 | the orange object 1763 | 368 1764 | 1765 | the orange cube piece 1766 | 368 1767 | 1768 | the orange cube 1769 | 368 1770 | 1771 | the brown one 1772 | 131 1773 | 1774 | the brown object 1775 | 131 1776 | 1777 | the brown toy 1778 | 131 1779 | 1780 | the brown hexagon 1781 | 131 1782 | 1783 | the brown piece 1784 | 131 1785 | 1786 | the brown object 1787 | 131 1788 | 1789 | the brown toy 1790 | 131 1791 | 1792 | the brown hexagon 1793 | 131 1794 | 1795 | the brown object 1796 | 131 1797 | 1798 | the dark red hexagon 1799 | 131 1800 | 1801 | the orange toy 1802 | 362 1803 | 1804 | the yellow one 1805 | 362 1806 | 1807 | the orange toy 1808 | 362 1809 | 1810 | the brown triangle 1811 | 362 1812 | 1813 | the orange rectangle 1814 | 362 1815 | 1816 | the orange rectangle 1817 | 362 1818 | 1819 | the pink rectangle 1820 | 362 1821 | 1822 | the orange rectangle 1823 | 362 1824 | 1825 | the pink rectangle 1826 | 362 1827 | 1828 | the beige object 1829 | 362 1830 | 1831 | the lemon like item 1832 | 455 1833 | 1834 | the yellow lemon shaped object 1835 | 455 1836 | 1837 | the yellow lemon 1838 | 455 1839 | 1840 | the yellow lemon-looking object 1841 | 455 1842 | 1843 | the lemon 1844 | 455 1845 | 1846 | the yellow lemon 1847 | 455 1848 | 1849 | the yellow ball 1850 | 455 1851 | 1852 | the lemon 1853 | 455 1854 | 1855 | the round yellow object 1856 | 455 1857 | 1858 | the yellow lemon 1859 | 455 1860 | 1861 | the green triangle 1862 | 319 1863 | 1864 | the green triangle 1865 | 319 1866 | 1867 | the green triangle 1868 | 319 1869 | 1870 | the green object 1871 | 319 1872 | 1873 | the green pie slice toy 1874 | 319 1875 | 1876 | the dark green one 1877 | 319 1878 | 1879 | the green wedge 1880 | 319 1881 | 1882 | the green triangle 1883 | 319 1884 | 1885 | the green wedge block 1886 | 319 1887 | 1888 | the green triangle 1889 | 319 1890 | 1891 | the green cube 1892 | 195 1893 | 1894 | the green cube 1895 | 195 1896 | 1897 | the green cube 1898 | 195 1899 | 1900 | the green cube 1901 | 195 1902 | 1903 | the green cube 1904 | 195 1905 | 1906 | the green cube 1907 | 195 1908 | 1909 | the green cube 1910 | 195 1911 | 1912 | the green cube 1913 | 195 1914 | 1915 | the green square object 1916 | 195 1917 | 1918 | the small green cube 1919 | 195 1920 | 1921 | the orange arch 1922 | 051 1923 | 1924 | the orange arch 1925 | 051 1926 | 1927 | the orange arch 1928 | 051 1929 | 1930 | the yellow toy 1931 | 051 1932 | 1933 | the arch shaped toy 1934 | 051 1935 | 1936 | the orange arch 1937 | 051 1938 | 1939 | the orange toy 1940 | 051 1941 | 1942 | the arch 1943 | 051 1944 | 1945 | the orange/peach item 1946 | 051 1947 | 1948 | the orange bridge 1949 | 051 1950 | 1951 | the red cylinder 1952 | 271 1953 | 1954 | the red item 1955 | 271 1956 | 1957 | the red toy 1958 | 271 1959 | 1960 | the long red item 1961 | 271 1962 | 1963 | the red object 1964 | 271 1965 | 1966 | the red cylinder 1967 | 271 1968 | 1969 | the red cylinder 1970 | 271 1971 | 1972 | the red one 1973 | 271 1974 | 1975 | the red piece 1976 | 271 1977 | 1978 | the red toy 1979 | 271 1980 | 1981 | the black block 1982 | 201 1983 | 1984 | the black cube 1985 | 201 1986 | 1987 | the black one 1988 | 201 1989 | 1990 | the brown cube 1991 | 201 1992 | 1993 | the purple cube 1994 | 201 1995 | 1996 | the green cube 1997 | 201 1998 | 1999 | the purple cube 2000 | 201 2001 | 2002 | the brown cube 2003 | 201 2004 | 2005 | the cube shaped piece 2006 | 201 2007 | 2008 | only the brown toy 2009 | 201 2010 | 2011 | the purple triangle 2012 | 472 2013 | 2014 | the purple triangle 2015 | 472 2016 | 2017 | the purple triangle 2018 | 472 2019 | 2020 | the purple triangle 2021 | 472 2022 | 2023 | the purple triangle 2024 | 472 2025 | 2026 | the purple triangle object 2027 | 472 2028 | 2029 | the dark red triangle like one 2030 | 472 2031 | 2032 | the triangular object 2033 | 472 2034 | 2035 | the purple toy 2036 | 472 2037 | 2038 | the purple object 2039 | 472 2040 | 2041 | the yellow object 2042 | 487 2043 | 2044 | the yellow toy 2045 | 487 2046 | 2047 | the yellow u toy 2048 | 487 2049 | 2050 | the yellow arch 2051 | 487 2052 | 2053 | the yellow bridge 2054 | 487 2055 | 2056 | the yellow object 2057 | 487 2058 | 2059 | the yellow block 2060 | 487 2061 | 2062 | the yellow arch 2063 | 487 2064 | 2065 | the yellow one 2066 | 487 2067 | 2068 | only the yellow object 2069 | 487 2070 | 2071 | the brown object 2072 | 454 2073 | 2074 | only the gray item 2075 | 454 2076 | 2077 | the brown shape 2078 | 454 2079 | 2080 | the brown stone toy 2081 | 454 2082 | 2083 | the brown lump 2084 | 454 2085 | 2086 | the brown object 2087 | 454 2088 | 2089 | the gray potato 2090 | 454 2091 | 2092 | the potato like item 2093 | 454 2094 | 2095 | the brown ball shape 2096 | 454 2097 | 2098 | the gray/brown one 2099 | 454 2100 | 2101 | the red object 2102 | 429 2103 | 2104 | the red toy 2105 | 429 2106 | 2107 | the red rectangle 2108 | 429 2109 | 2110 | the red one 2111 | 429 2112 | 2113 | the red rectangle 2114 | 429 2115 | 2116 | the red rectangle 2117 | 429 2118 | 2119 | the red object 2120 | 429 2121 | 2122 | the red block 2123 | 429 2124 | 2125 | the red toy 2126 | 429 2127 | 2128 | the red object 2129 | 429 2130 | 2131 | the red rectangle 2132 | 389 2133 | 2134 | the red rectangle 2135 | 389 2136 | 2137 | the red rectangle 2138 | 389 2139 | 2140 | the red bar 2141 | 389 2142 | 2143 | the red rectangle 2144 | 389 2145 | 2146 | the red rectangle 2147 | 389 2148 | 2149 | the red rectangular toy 2150 | 389 2151 | 2152 | the red rectangle 2153 | 389 2154 | 2155 | the red rectangle 2156 | 389 2157 | 2158 | the red rectangular toy 2159 | 389 2160 | 2161 | the green cube 2162 | 308 2163 | 2164 | the green cube 2165 | 308 2166 | 2167 | the green cube 2168 | 308 2169 | 2170 | the green cube 2171 | 308 2172 | 2173 | the green square piece 2174 | 308 2175 | 2176 | the green cube 2177 | 308 2178 | 2179 | the green cube 2180 | 308 2181 | 2182 | the green cube 2183 | 308 2184 | 2185 | the green cube 2186 | 308 2187 | 2188 | the dark green one 2189 | 308 2190 | 2191 | the green rectangle 2192 | 304 2193 | 2194 | the green rectangle 2195 | 304 2196 | 2197 | the green rectangular toy 2198 | 304 2199 | 2200 | the dark green one 2201 | 304 2202 | 2203 | the dark green object 2204 | 304 2205 | 2206 | the green rectangle 2207 | 304 2208 | 2209 | the green rectangle 2210 | 304 2211 | 2212 | the green bar 2213 | 304 2214 | 2215 | the green rectangle 2216 | 304 2217 | 2218 | the dark green rectangular object 2219 | 304 2220 | 2221 | the pie piece 2222 | 470 2223 | 2224 | the pie piece 2225 | 470 2226 | 2227 | the pie 2228 | 470 2229 | 2230 | the toy that looks like a piece of pie 2231 | 470 2232 | 2233 | the pie slice 2234 | 470 2235 | 2236 | the pie toy 2237 | 470 2238 | 2239 | the pie slice 2240 | 470 2241 | 2242 | the pie slice 2243 | 470 2244 | 2245 | the pizza slice 2246 | 470 2247 | 2248 | the pizza shaped one 2249 | 470 2250 | 2251 | the yellow piece 2252 | 501 2253 | 2254 | the yellow toy 2255 | 501 2256 | 2257 | the yellow top 2258 | 501 2259 | 2260 | the yellow shape 2261 | 501 2262 | 2263 | the yellow one 2264 | 501 2265 | 2266 | the yellow toy 2267 | 501 2268 | 2269 | the yellow toy 2270 | 501 2271 | 2272 | the yellow object 2273 | 501 2274 | 2275 | the yellow object 2276 | 501 2277 | 2278 | the yellow object 2279 | 501 2280 | 2281 | the black bar 2282 | 125 2283 | 2284 | the black toy 2285 | 125 2286 | 2287 | the brown/black rectangle 2288 | 125 2289 | 2290 | the brown item 2291 | 125 2292 | 2293 | the black toy 2294 | 125 2295 | 2296 | the black rectangular piece 2297 | 125 2298 | 2299 | the black one 2300 | 125 2301 | 2302 | the black rectangle 2303 | 125 2304 | 2305 | the black rectangle 2306 | 125 2307 | 2308 | the black object 2309 | 125 2310 | 2311 | the brown ball 2312 | 137 2313 | 2314 | the brown toys 2315 | 137 2316 | 2317 | the brown object 2318 | 137 2319 | 2320 | the brown ball 2321 | 137 2322 | 2323 | all the brown lumpy toys 2324 | 137 2325 | 2326 | the brown/gray odd shaped one 2327 | 137 2328 | 2329 | the brown lump 2330 | 137 2331 | 2332 | the brown shape 2333 | 137 2334 | 2335 | the brown rock 2336 | 137 2337 | 2338 | the brown toy 2339 | 137 2340 | 2341 | the red cylinder 2342 | 259 2343 | 2344 | the red cylinder 2345 | 259 2346 | 2347 | the red cylinder 2348 | 259 2349 | 2350 | the dark red one 2351 | 259 2352 | 2353 | the red cylinder 2354 | 259 2355 | 2356 | the red cylinder 2357 | 259 2358 | 2359 | the red rod-shaped object 2360 | 259 2361 | 2362 | the red cylindrical toy 2363 | 259 2364 | 2365 | the red cylinder toy 2366 | 259 2367 | 2368 | only the red sphere-shaped item 2369 | 259 2370 | 2371 | the red rectangle block 2372 | 400 2373 | 2374 | the red rectangle 2375 | 400 2376 | 2377 | the red rectangle 2378 | 400 2379 | 2380 | the red rectangular block 2381 | 400 2382 | 2383 | the red rectangular object 2384 | 400 2385 | 2386 | the red rectangle 2387 | 400 2388 | 2389 | the red block 2390 | 400 2391 | 2392 | the red rectangular object 2393 | 400 2394 | 2395 | the red rectangle 2396 | 400 2397 | 2398 | the red rectangle 2399 | 400 2400 | 2401 | the red arch 2402 | 045 2403 | 2404 | the red arch 2405 | 045 2406 | 2407 | the red toy 2408 | 045 2409 | 2410 | the red arch 2411 | 045 2412 | 2413 | the red one 2414 | 045 2415 | 2416 | the red piece 2417 | 045 2418 | 2419 | the red toy 2420 | 045 2421 | 2422 | the red arch 2423 | 045 2424 | 2425 | the red u shape 2426 | 045 2427 | 2428 | the red arch 2429 | 045 2430 | 2431 | the blue cube 2432 | 082 2433 | 2434 | the blue square 2435 | 082 2436 | 2437 | the blue object 2438 | 082 2439 | 2440 | the blue cube 2441 | 082 2442 | 2443 | the blue toy 2444 | 082 2445 | 2446 | the blue cube 2447 | 082 2448 | 2449 | the blue cube 2450 | 082 2451 | 2452 | the blue one 2453 | 082 2454 | 2455 | the cube 2456 | 082 2457 | 2458 | the blue cube 2459 | 082 2460 | 2461 | the blue toy 2462 | 076 2463 | 2464 | the blue one 2465 | 076 2466 | 2467 | the blue object 2468 | 076 2469 | 2470 | the blue cube 2471 | 076 2472 | 2473 | the blue toy 2474 | 076 2475 | 2476 | the blue toy 2477 | 076 2478 | 2479 | the blue object 2480 | 076 2481 | 2482 | the blue object 2483 | 076 2484 | 2485 | the blue toy 2486 | 076 2487 | 2488 | the square blue object 2489 | 076 2490 | 2491 | the yellow one 2492 | 493 2493 | 2494 | the yellow toy 2495 | 493 2496 | 2497 | the yellow bar 2498 | 493 2499 | 2500 | the yellow rectangle 2501 | 493 2502 | 2503 | the yellow toy 2504 | 493 2505 | 2506 | the yellow rectangle 2507 | 493 2508 | 2509 | the yellow rectangle 2510 | 493 2511 | 2512 | the yellow rectangle 2513 | 493 2514 | 2515 | the yellow block on the right 2516 | 493 2517 | 2518 | the yellow rectangle 2519 | 493 2520 | 2521 | the arch shaped toy 2522 | 033 2523 | 2524 | the curved purple wedge 2525 | 033 2526 | 2527 | the blue toy 2528 | 033 2529 | 2530 | the gray toy 2531 | 033 2532 | 2533 | the gray one 2534 | 033 2535 | 2536 | the black arch 2537 | 033 2538 | 2539 | the brown arch 2540 | 033 2541 | 2542 | the black u shaped toy 2543 | 033 2544 | 2545 | the brown arch 2546 | 033 2547 | 2548 | the black arch 2549 | 033 2550 | 2551 | the blue bridge 2552 | 129 2553 | 2554 | the blue u 2555 | 129 2556 | 2557 | the blue arch 2558 | 129 2559 | 2560 | the blue arch 2561 | 129 2562 | 2563 | the blue arch 2564 | 129 2565 | 2566 | the blue arch 2567 | 129 2568 | 2569 | the blue arch 2570 | 129 2571 | 2572 | the blue toy 2573 | 129 2574 | 2575 | the blue one nearest the green one 2576 | 129 2577 | 2578 | only the blue crescent-shaped object 2579 | 129 2580 | 2581 | the little orange square 2582 | 207 2583 | 2584 | the orange cube 2585 | 207 2586 | 2587 | the orange cube 2588 | 207 2589 | 2590 | the orange cube 2591 | 207 2592 | 2593 | the orange square 2594 | 207 2595 | 2596 | the orange cube 2597 | 207 2598 | 2599 | the orange cube 2600 | 207 2601 | 2602 | the orange piece 2603 | 207 2604 | 2605 | the orange cube 2606 | 207 2607 | 2608 | the orange cube 2609 | 207 2610 | 2611 | the green triangle 2612 | 473 2613 | 2614 | the green wedge 2615 | 473 2616 | 2617 | the green triangle 2618 | 473 2619 | 2620 | the green triangle 2621 | 473 2622 | 2623 | the green toy 2624 | 473 2625 | 2626 | the green triangle 2627 | 473 2628 | 2629 | the green triangle 2630 | 473 2631 | 2632 | the green wedge 2633 | 473 2634 | 2635 | the green one 2636 | 473 2637 | 2638 | the green toy 2639 | 473 2640 | 2641 | -------------------------------------------------------------------------------- /data/genx/labelling/single/heldout.labeled.NOBAD.txt: -------------------------------------------------------------------------------- 1 | the yellow toy shaped like a bridge 2 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (equal: (A:<,e> (lambda $1:e (and: (shape:> arch:shape $1) (sg: $1)))) $0) (color:> yellow:color $0)))) 3 | 057 4 | 5 | the yellow toy that looks like a bridge 6 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (equal: (A:<,e> (lambda $1:e (and: (shape:> arch:shape $1) (sg: $1)))) $0) (color:> yellow:color $0)))) 7 | 057 8 | 9 | the yellow arch piece 10 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (shape:> arch:shape $0) (color:> yellow:color $0)))) 11 | 057 12 | 13 | the yellow dented object 14 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (shape:> arch:shape $0) (color:> yellow:color $0)))) 15 | 057 16 | 17 | yellow one that is not a cylinder 18 | (The:<,e> (lambda $0:e (and: (not: (equal: $0 (A:<,e> (lambda $1:e (and: (shape:> cylinder:shape $1) (sg: $1)))))) (sg: $0) (color:> yellow:color $0) (misc:> misc:misc $0)))) 19 | 057 20 | 21 | the yellow half circle half square toy 22 | (The:<,e> (lambda $0:e (and: (shape:> arch:shape $0) (sg: $0) (color:> yellow:color $0) (misc:> misc:misc $0)))) 23 | 057 24 | 25 | yellow arch shape 26 | (The:<,e> (lambda $0:e (and: (shape:> arch:shape $0) (sg: $0) (color:> yellow:color $0) (misc:> misc:misc $0)))) 27 | 057 28 | 29 | the rectangular yellow object 30 | (The:<,e> (lambda $0:e (and: (shape:> arch:shape $0) (sg: $0) (color:> yellow:color $0) (misc:> misc:misc $0)))) 31 | 057 32 | 33 | the yellow arch 34 | (The:<,e> (lambda $0:e (and: (shape:> arch:shape $0) (sg: $0) (color:> yellow:color $0)))) 35 | 057 36 | 37 | the yellow arch 38 | (The:<,e> (lambda $0:e (and: (shape:> arch:shape $0) (sg: $0) (color:> yellow:color $0)))) 39 | 057 40 | 41 | the yellow arch 42 | (The:<,e> (lambda $0:e (and: (shape:> arch:shape $0) (sg: $0) (color:> yellow:color $0)))) 43 | 057 44 | 45 | the yellow arch 46 | (The:<,e> (lambda $0:e (and: (shape:> arch:shape $0) (sg: $0) (color:> yellow:color $0)))) 47 | 057 48 | 49 | the yellow arch 50 | (The:<,e> (lambda $0:e (and: (shape:> arch:shape $0) (sg: $0) (color:> yellow:color $0)))) 51 | 057 52 | 53 | the yellow arch 54 | (The:<,e> (lambda $0:e (and: (shape:> arch:shape $0) (sg: $0) (color:> yellow:color $0)))) 55 | 057 56 | 57 | the yellow block with the half circle cut out 58 | (The:<,e> (lambda $0:e (and: (shape:> arch:shape $0) (sg: $0) (color:> yellow:color $0)))) 59 | 057 60 | 61 | the yellow bridge 62 | (The:<,e> (lambda $0:e (and: (shape:> arch:shape $0) (sg: $0) (color:> yellow:color $0)))) 63 | 057 64 | 65 | the yellow curved wedge 66 | (The:<,e> (lambda $0:e (and: (shape:> arch:shape $0) (sg: $0) (color:> yellow:color $0)))) 67 | 057 68 | 69 | the yellow toy that has a crescent shape 70 | (The:<,e> (lambda $0:e (and: (shape:> arch:shape $0) (sg: $0) (color:> yellow:color $0) (misc:> misc:misc $0)))) 71 | 057 72 | 73 | yellow arch 74 | (The:<,e> (lambda $0:e (and: (shape:> arch:shape $0) (sg: $0) (color:> yellow:color $0)))) 75 | 057 76 | 77 | the long , blue block 78 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> blue:color $0) (shape:> rect:shape $0) (sg: $0)))) 79 | 081 80 | 81 | the blue block 82 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> blue:color $0)))) 83 | 081 84 | 85 | the blue object 86 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> blue:color $0)))) 87 | 081 88 | 89 | the blue object 90 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> blue:color $0)))) 91 | 081 92 | 93 | the blue one 94 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> blue:color $0)))) 95 | 081 96 | 97 | the blue piece 98 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> blue:color $0)))) 99 | 081 100 | 101 | the blue piece 102 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> blue:color $0)))) 103 | 081 104 | 105 | the blue piece 106 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> blue:color $0)))) 107 | 081 108 | 109 | the blue toy 110 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> blue:color $0)))) 111 | 081 112 | 113 | the blue toy 114 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> blue:color $0)))) 115 | 081 116 | 117 | the rectangle object 118 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (shape:> rect:shape $0)))) 119 | 081 120 | 121 | the blue rectangular solid 122 | (The:<,e> (lambda $0:e (and: (sg: $0) (shape:> rect:shape $0) (color:> blue:color $0)))) 123 | 081 124 | 125 | the blue bar 126 | (The:<,e> (lambda $0:e (and: (shape:> rect:shape $0) (sg: $0) (color:> blue:color $0)))) 127 | 081 128 | 129 | the blue rectangle 130 | (The:<,e> (lambda $0:e (and: (shape:> rect:shape $0) (sg: $0) (color:> blue:color $0)))) 131 | 081 132 | 133 | the blue rectangle 134 | (The:<,e> (lambda $0:e (and: (shape:> rect:shape $0) (sg: $0) (color:> blue:color $0)))) 135 | 081 136 | 137 | the blue rectangle 138 | (The:<,e> (lambda $0:e (and: (shape:> rect:shape $0) (sg: $0) (color:> blue:color $0)))) 139 | 081 140 | 141 | the blue rectangle 142 | (The:<,e> (lambda $0:e (and: (shape:> rect:shape $0) (sg: $0) (color:> blue:color $0)))) 143 | 081 144 | 145 | the blue rectangle 146 | (The:<,e> (lambda $0:e (and: (shape:> rect:shape $0) (sg: $0) (color:> blue:color $0)))) 147 | 081 148 | 149 | the blue rectangle 150 | (The:<,e> (lambda $0:e (and: (shape:> rect:shape $0) (sg: $0) (color:> blue:color $0)))) 151 | 081 152 | 153 | the blue rectangle 154 | (The:<,e> (lambda $0:e (and: (shape:> rect:shape $0) (sg: $0) (color:> blue:color $0)))) 155 | 081 156 | 157 | the blue block 158 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> blue:color $0)))) 159 | 088 160 | 161 | the blue item 162 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> blue:color $0)))) 163 | 088 164 | 165 | the blue object 166 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> blue:color $0)))) 167 | 088 168 | 169 | the blue object 170 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> blue:color $0)))) 171 | 088 172 | 173 | the blue object 174 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> blue:color $0)))) 175 | 088 176 | 177 | the blue object 178 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> blue:color $0)))) 179 | 088 180 | 181 | the blue one 182 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> blue:color $0)))) 183 | 088 184 | 185 | the blue piece 186 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> blue:color $0)))) 187 | 088 188 | 189 | the blue toy 190 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> blue:color $0)))) 191 | 088 192 | 193 | the blue toy 194 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> blue:color $0)))) 195 | 088 196 | 197 | blue triangle piece 198 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (shape:> triangle:shape $0) (sg: $0) (color:> blue:color $0)))) 199 | 088 200 | 201 | blue pie shaped toy 202 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (shape:> triangle:shape $0) (sg: $0) (color:> blue:color $0)))) 203 | 088 204 | 205 | the blue triangle 206 | (The:<,e> (lambda $0:e (and: (shape:> triangle:shape $0) (sg: $0) (color:> blue:color $0)))) 207 | 088 208 | 209 | the blue triangle 210 | (The:<,e> (lambda $0:e (and: (shape:> triangle:shape $0) (sg: $0) (color:> blue:color $0)))) 211 | 088 212 | 213 | the blue triangle 214 | (The:<,e> (lambda $0:e (and: (shape:> triangle:shape $0) (sg: $0) (color:> blue:color $0)))) 215 | 088 216 | 217 | the blue triangle 218 | (The:<,e> (lambda $0:e (and: (shape:> triangle:shape $0) (sg: $0) (color:> blue:color $0)))) 219 | 088 220 | 221 | the blue triangle 222 | (The:<,e> (lambda $0:e (and: (shape:> triangle:shape $0) (sg: $0) (color:> blue:color $0)))) 223 | 088 224 | 225 | the blue triangle 226 | (The:<,e> (lambda $0:e (and: (shape:> triangle:shape $0) (sg: $0) (color:> blue:color $0)))) 227 | 088 228 | 229 | the blue wedge 230 | (The:<,e> (lambda $0:e (and: (shape:> triangle:shape $0) (sg: $0) (color:> blue:color $0)))) 231 | 088 232 | 233 | the blue wedge 234 | (The:<,e> (lambda $0:e (and: (shape:> triangle:shape $0) (sg: $0) (color:> blue:color $0)))) 235 | 088 236 | 237 | the red object that is cube-shaped 238 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (shape:> cube:shape $0) (color:> red:color $0)))) 239 | 189 240 | 241 | the red square object 242 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (shape:> cube:shape $0) (color:> red:color $0)))) 243 | 189 244 | 245 | the red square like item 246 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (shape:> cube:shape $0) (color:> red:color $0)))) 247 | 189 248 | 249 | only the red square 250 | (The:<,e> (lambda $0:e (and: (shape:> cube:shape $0) (sg: $0) (color:> red:color $0)))) 251 | 189 252 | 253 | the red cube 254 | (The:<,e> (lambda $0:e (and: (shape:> cube:shape $0) (sg: $0) (color:> red:color $0)))) 255 | 189 256 | 257 | the red cube 258 | (The:<,e> (lambda $0:e (and: (shape:> cube:shape $0) (sg: $0) (color:> red:color $0)))) 259 | 189 260 | 261 | the red cube 262 | (The:<,e> (lambda $0:e (and: (shape:> cube:shape $0) (sg: $0) (color:> red:color $0)))) 263 | 189 264 | 265 | the red cube 266 | (The:<,e> (lambda $0:e (and: (shape:> cube:shape $0) (sg: $0) (color:> red:color $0)))) 267 | 189 268 | 269 | the red cube 270 | (The:<,e> (lambda $0:e (and: (shape:> cube:shape $0) (sg: $0) (color:> red:color $0)))) 271 | 189 272 | 273 | the red cube 274 | (The:<,e> (lambda $0:e (and: (shape:> cube:shape $0) (sg: $0) (color:> red:color $0)))) 275 | 189 276 | 277 | the red cube 278 | (The:<,e> (lambda $0:e (and: (shape:> cube:shape $0) (sg: $0) (color:> red:color $0)))) 279 | 189 280 | 281 | the red cube 282 | (The:<,e> (lambda $0:e (and: (shape:> cube:shape $0) (sg: $0) (color:> red:color $0)))) 283 | 189 284 | 285 | the red cube 286 | (The:<,e> (lambda $0:e (and: (shape:> cube:shape $0) (sg: $0) (color:> red:color $0)))) 287 | 189 288 | 289 | the red cube 290 | (The:<,e> (lambda $0:e (and: (shape:> cube:shape $0) (sg: $0) (color:> red:color $0)))) 291 | 189 292 | 293 | the red cube 294 | (The:<,e> (lambda $0:e (and: (shape:> cube:shape $0) (sg: $0) (color:> red:color $0)))) 295 | 189 296 | 297 | the red cube 298 | (The:<,e> (lambda $0:e (and: (shape:> cube:shape $0) (sg: $0) (color:> red:color $0)))) 299 | 189 300 | 301 | the red cube 302 | (The:<,e> (lambda $0:e (and: (shape:> cube:shape $0) (sg: $0) (color:> red:color $0)))) 303 | 189 304 | 305 | the red cube 306 | (The:<,e> (lambda $0:e (and: (shape:> cube:shape $0) (sg: $0) (color:> red:color $0)))) 307 | 189 308 | 309 | the red square 310 | (The:<,e> (lambda $0:e (and: (shape:> cube:shape $0) (sg: $0) (color:> red:color $0)))) 311 | 189 312 | 313 | the red square 314 | (The:<,e> (lambda $0:e (and: (shape:> cube:shape $0) (sg: $0) (color:> red:color $0)))) 315 | 189 316 | 317 | the bright red toy 318 | (The:<,e> (lambda $0:e (and: (sg: $0) (color:> red:color $0) (misc:> misc:misc $0)))) 319 | 416 320 | 321 | the dark pink object 322 | (The:<,e> (lambda $0:e (and: (sg: $0) (color:> red:color $0) (misc:> misc:misc $0)))) 323 | 416 324 | 325 | the square red item 326 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> red:color $0) (type:> lego:type $0)))) 327 | 416 328 | 329 | the item that is red 330 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> red:color $0)))) 331 | 416 332 | 333 | the red item 334 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> red:color $0)))) 335 | 416 336 | 337 | the red item 338 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> red:color $0)))) 339 | 416 340 | 341 | the red object 342 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> red:color $0)))) 343 | 416 344 | 345 | the red object 346 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> red:color $0)))) 347 | 416 348 | 349 | the red object 350 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> red:color $0)))) 351 | 416 352 | 353 | the red object 354 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> red:color $0)))) 355 | 416 356 | 357 | the red object 358 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> red:color $0)))) 359 | 416 360 | 361 | the red object 362 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> red:color $0)))) 363 | 416 364 | 365 | the red objects 366 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> red:color $0)))) 367 | 416 368 | 369 | the red one 370 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> red:color $0)))) 371 | 416 372 | 373 | the red piece 374 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> red:color $0)))) 375 | 416 376 | 377 | the red piece 378 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> red:color $0)))) 379 | 416 380 | 381 | the red shape 382 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> red:color $0)))) 383 | 416 384 | 385 | the red toy 386 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> red:color $0)))) 387 | 416 388 | 389 | the red toy 390 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (sg: $0) (color:> red:color $0)))) 391 | 416 392 | 393 | the red square 394 | (The:<,e> (lambda $0:e (and: (type:> lego:type $0) (sg: $0) (color:> red:color $0)))) 395 | 416 396 | 397 | -------------------------------------------------------------------------------- /data/genx/labelling/single/init.labeled.NOBAD.txt: -------------------------------------------------------------------------------- 1 | the orange object 2 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 3 | 359 4 | 5 | the peach colored triangle 6 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (sg: $0)))) 7 | 359 8 | 9 | the orange wedge 10 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (sg: $0)))) 11 | 359 12 | 13 | the orange wedge 14 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (sg: $0)))) 15 | 359 16 | 17 | the orange block 18 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 19 | 359 20 | 21 | the orange object 22 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 23 | 359 24 | 25 | the orange wedge 26 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (sg: $0)))) 27 | 359 28 | 29 | the orange block 30 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 31 | 359 32 | 33 | the orange triangle 34 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (sg: $0)))) 35 | 359 36 | 37 | the orange wedge 38 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (sg: $0)))) 39 | 359 40 | 41 | the orange wedge 42 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (sg: $0)))) 43 | 359 44 | 45 | the orange triangle 46 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (sg: $0)))) 47 | 359 48 | 49 | the orange pizza slice shaped toy 50 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (misc:> misc:misc $0) (sg: $0)))) 51 | 359 52 | 53 | the orange toy 54 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 55 | 359 56 | 57 | the orange pie slice toy 58 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (misc:> misc:misc $0) (sg: $0)))) 59 | 359 60 | 61 | the orange one 62 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 63 | 359 64 | 65 | the beige object 66 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 67 | 359 68 | 69 | the orange triangular object 70 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (misc:> misc:misc $0) (sg: $0)))) 71 | 359 72 | 73 | the orange triangle block 74 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (misc:> misc:misc $0) (sg: $0)))) 75 | 359 76 | 77 | the wedge 78 | (The:<,e> (lambda $0:e (and: (shape:> triangle:shape $0) (sg: $0)))) 79 | 359 80 | 81 | the blue rectangle 82 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (shape:> rect:shape $0) (sg: $0)))) 83 | 141 84 | 85 | the blue piece 86 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 87 | 141 88 | 89 | the blue toy 90 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 91 | 141 92 | 93 | the blue rectangle 94 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (shape:> rect:shape $0) (sg: $0)))) 95 | 141 96 | 97 | the blue object 98 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 99 | 141 100 | 101 | the blue object 102 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 103 | 141 104 | 105 | the blue cuboid shaped piece 106 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (shape:> rect:shape $0) (misc:> misc:misc $0) (sg: $0)))) 107 | 141 108 | 109 | the blue brick 110 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 111 | 141 112 | 113 | the blue object 114 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 115 | 141 116 | 117 | the blue toy 118 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 119 | 141 120 | 121 | the blue rectangle 122 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (shape:> rect:shape $0) (sg: $0)))) 123 | 141 124 | 125 | the blue rectangle 126 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (shape:> rect:shape $0) (sg: $0)))) 127 | 141 128 | 129 | the blue toy 130 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 131 | 141 132 | 133 | the blue toy 134 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 135 | 141 136 | 137 | the blue object 138 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 139 | 141 140 | 141 | the blue rectangle 142 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (shape:> rect:shape $0) (sg: $0)))) 143 | 141 144 | 145 | the blue one 146 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 147 | 141 148 | 149 | the rectangular block 150 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (shape:> rect:shape $0) (sg: $0)))) 151 | 141 152 | 153 | the blue item 154 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 155 | 141 156 | 157 | only the blue rectangle 158 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (shape:> rect:shape $0) (sg: $0)))) 159 | 141 160 | 161 | the yellow cube 162 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 163 | 213 164 | 165 | the orange cube 166 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 167 | 213 168 | 169 | the orange cube 170 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 171 | 213 172 | 173 | the tan cube only 174 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 175 | 213 176 | 177 | the orange cube 178 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 179 | 213 180 | 181 | the tan cube 182 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 183 | 213 184 | 185 | the cube 186 | (The:<,e> (lambda $0:e (and: (shape:> cube:shape $0) (sg: $0)))) 187 | 213 188 | 189 | the orange square 190 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 191 | 213 192 | 193 | the orange cube 194 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 195 | 213 196 | 197 | the orange cube 198 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 199 | 213 200 | 201 | the orange cube 202 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 203 | 213 204 | 205 | the orange cube 206 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 207 | 213 208 | 209 | the orange cube 210 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 211 | 213 212 | 213 | the orange square 214 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 215 | 213 216 | 217 | the orange cube 218 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 219 | 213 220 | 221 | the orange cube 222 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 223 | 213 224 | 225 | the orange triangle 226 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 227 | 213 228 | 229 | the one that looks like a square 230 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (shape:> cube:shape $0) (sg: $0)))) 231 | 213 232 | 233 | the little orange square 234 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 235 | 213 236 | 237 | -------------------------------------------------------------------------------- /data/genx/labelling/single/init.labeled.txt: -------------------------------------------------------------------------------- 1 | the orange object 2 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 3 | 359 4 | 5 | the peach colored triangle 6 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (sg: $0)))) 7 | 359 8 | 9 | the orange wedge 10 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (sg: $0)))) 11 | 359 12 | 13 | the orange wedge 14 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (sg: $0)))) 15 | 359 16 | 17 | the orange block 18 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 19 | 359 20 | 21 | the orange object 22 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 23 | 359 24 | 25 | the orange wedge 26 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (sg: $0)))) 27 | 359 28 | 29 | the orange block 30 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 31 | 359 32 | 33 | the orange triangle 34 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (sg: $0)))) 35 | 359 36 | 37 | the orange wedge 38 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (sg: $0)))) 39 | 359 40 | 41 | the orange wedge 42 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (sg: $0)))) 43 | 359 44 | 45 | the orange triangle 46 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (sg: $0)))) 47 | 359 48 | 49 | the orange pizza slice shaped toy 50 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (misc:> misc:misc $0) (sg: $0)))) 51 | 359 52 | 53 | the orange toy 54 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 55 | 359 56 | 57 | the orange pie slice toy 58 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (misc:> misc:misc $0) (sg: $0)))) 59 | 359 60 | 61 | the orange one 62 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 63 | 359 64 | 65 | the beige object 66 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (misc:> misc:misc $0) (sg: $0)))) 67 | 359 68 | 69 | the orange triangular object 70 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (misc:> misc:misc $0) (sg: $0)))) 71 | 359 72 | 73 | the orange triangle block 74 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> triangle:shape $0) (misc:> misc:misc $0) (sg: $0)))) 75 | 359 76 | 77 | the wedge 78 | (The:<,e> (lambda $0:e (and: (shape:> triangle:shape $0) (sg: $0)))) 79 | 359 80 | 81 | the blue rectangle 82 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (shape:> rect:shape $0) (sg: $0)))) 83 | 141 84 | 85 | the blue piece 86 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 87 | 141 88 | 89 | the blue toy 90 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 91 | 141 92 | 93 | the blue rectangle 94 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (shape:> rect:shape $0) (sg: $0)))) 95 | 141 96 | 97 | the blue object 98 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 99 | 141 100 | 101 | the blue object 102 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 103 | 141 104 | 105 | the blue cuboid shaped piece 106 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (shape:> rect:shape $0) (misc:> misc:misc $0) (sg: $0)))) 107 | 141 108 | 109 | the blue brick 110 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 111 | 141 112 | 113 | the blue object 114 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 115 | 141 116 | 117 | the blue toy 118 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 119 | 141 120 | 121 | the blue rectangle 122 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (shape:> rect:shape $0) (sg: $0)))) 123 | 141 124 | 125 | the blue rectangle 126 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (shape:> rect:shape $0) (sg: $0)))) 127 | 141 128 | 129 | the blue toy 130 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 131 | 141 132 | 133 | the blue toy 134 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 135 | 141 136 | 137 | the blue object 138 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 139 | 141 140 | 141 | the blue rectangle 142 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (shape:> rect:shape $0) (sg: $0)))) 143 | 141 144 | 145 | the blue one 146 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 147 | 141 148 | 149 | the rectangular block 150 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (shape:> rect:shape $0) (sg: $0)))) 151 | 141 152 | 153 | the blue item 154 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (misc:> misc:misc $0) (sg: $0)))) 155 | 141 156 | 157 | only the blue rectangle 158 | (The:<,e> (lambda $0:e (and: (color:> blue:color $0) (shape:> rect:shape $0) (sg: $0)))) 159 | 141 160 | 161 | the yellow cube 162 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 163 | 213 164 | 165 | the orange cube 166 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 167 | 213 168 | 169 | the orange cube 170 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 171 | 213 172 | 173 | the tan cube only 174 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 175 | 213 176 | 177 | the orange cube 178 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 179 | 213 180 | 181 | the tan cube 182 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 183 | 213 184 | 185 | the cube 186 | (The:<,e> (lambda $0:e (and: (shape:> cube:shape $0) (sg: $0)))) 187 | 213 188 | 189 | the orange square 190 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 191 | 213 192 | 193 | the orange cube 194 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 195 | 213 196 | 197 | the orange cube 198 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 199 | 213 200 | 201 | the orange cube 202 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 203 | 213 204 | 205 | the orange cube 206 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 207 | 213 208 | 209 | the orange cube 210 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 211 | 213 212 | 213 | the orange square 214 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 215 | 213 216 | 217 | the orange cube 218 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 219 | 213 220 | 221 | the orange cube 222 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 223 | 213 224 | 225 | the orange triangle 226 | (The:<,e> (lambda $0:e (and: (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 227 | 213 228 | 229 | the smaller pink object nearest you at the table 230 | model:e 231 | 213 232 | 233 | the one that looks like a square 234 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (shape:> cube:shape $0) (sg: $0)))) 235 | 213 236 | 237 | the little orange square 238 | (The:<,e> (lambda $0:e (and: (misc:> misc:misc $0) (color:> orange:color $0) (shape:> cube:shape $0) (sg: $0)))) 239 | 213 240 | 241 | -------------------------------------------------------------------------------- /data/genx/state/SceneIndex.txt: -------------------------------------------------------------------------------- 1 | 001::001.03 001.07 001.06 001.05::001.00 001.01 001.02 001.04 001.08 001.09 2 | 002::001.03 001.06 001.05::001.00 001.01 001.02 001.04 001.07 001.08 001.09 3 | 003::001.03 001.07 001.06 001.05 001.04 001.09::001.00 001.01 001.02 001.08 4 | 004::001.01 001.05::001.00 001.02 001.03 001.04 001.06 001.07 001.08 001.09 5 | 005::001.00 001.02 001.08 001.06::001.01 001.03 001.04 001.05 001.07 001.09 6 | 006::001.03 001.08 001.07 001.06 001.05::001.00 001.01 001.02 001.04 001.09 7 | 007::001.03::001.00 001.01 001.02 001.04 001.05 001.06 001.07 001.08 001.09 8 | 008::001.08 001.06::001.00 001.01 001.02 001.03 001.04 001.05 001.07 001.09 9 | 009::009.09 009.08 009.06 009.05::009.00 009.01 009.02 009.03 009.04 009.07 009.10 10 | 010::009.03 009.01::009.00 009.02 009.04 009.05 009.06 009.07 009.08 009.09 009.10 11 | 011::009.03 009.01 009.00 009.04::009.02 009.05 009.06 009.07 009.08 009.09 009.10 12 | 012::009.08 009.02 009.01 009.00 009.07 009.06 009.04::009.03 009.05 009.09 009.10 13 | 013::009.02 009.08 009.07 009.06::009.00 009.01 009.03 009.04 009.05 009.09 009.10 14 | 014::009.05::009.00 009.01 009.02 009.03 009.04 009.06 009.07 009.08 009.09 009.10 15 | 015::015.02 015.00 015.01 015.08::015.03 015.04 015.05 015.06 015.07 015.09 015.10 16 | 016::015.03 015.01 015.04::015.00 015.02 015.05 015.06 015.07 015.08 015.09 015.10 17 | 017::015.06 015.04::015.00 015.01 015.02 015.03 015.05 015.07 015.08 015.09 015.10 18 | 018::015.02 015.03 015.01::015.00 015.04 015.05 015.06 015.07 015.08 015.09 015.10 19 | 019::015.00 015.08 015.04::015.01 015.02 015.03 015.05 015.06 015.07 015.09 015.10 20 | 020::015.02::015.00 015.01 015.03 015.04 015.05 015.06 015.07 015.08 015.09 015.10 21 | 021::021.09 021.01 021.00 021.08::021.02 021.03 021.04 021.05 021.06 021.07 021.10 021.11 22 | 022::021.04 021.06 021.01 021.00::021.02 021.03 021.05 021.07 021.08 021.09 021.10 021.11 23 | 023::021.01 021.09 021.08 021.00 021.02::021.03 021.04 021.05 021.06 021.07 021.10 021.11 24 | 024::021.01 021.09 021.08 021.03 021.00::021.02 021.04 021.05 021.06 021.07 021.10 021.11 25 | 025::021.09::021.00 021.01 021.02 021.03 021.04 021.05 021.06 021.07 021.08 021.10 021.11 26 | 026::026.08 026.05 026.06 026.07::026.00 026.01 026.02 026.03 026.04 026.09 026.10 27 | 027::026.00 026.01 026.02 026.08 026.09::026.03 026.04 026.05 026.06 026.07 026.10 28 | 028::026.00 026.03 026.05::026.01 026.02 026.04 026.06 026.07 026.08 026.09 026.10 29 | 029::026.08 026.06 026.07::026.00 026.01 026.02 026.03 026.04 026.05 026.09 026.10 30 | 030::026.01 026.02 026.03 026.04 026.05 026.06 026.07 026.10::026.00 026.08 026.09 31 | 031::026.07::026.00 026.01 026.02 026.03 026.04 026.05 026.06 026.08 026.09 026.10 32 | 032::026.07::026.00 026.01 026.02 026.03 026.04 026.05 026.06 026.08 026.09 026.10 33 | 033::033.04::033.00 033.01 033.02 033.03 033.05 033.06 34 | 034::033.02 033.03::033.00 033.01 033.04 033.05 033.06 35 | 035::033.06 033.04 033.02 033.00::033.01 033.03 033.05 36 | 036::033.02 033.00 033.01::033.03 033.04 033.05 033.06 37 | 037::033.04 033.03::033.00 033.01 033.02 033.05 033.06 38 | 038::033.02 033.00 033.01::033.03 033.04 033.05 033.06 39 | 039::039.01::039.00 039.02 039.03 039.04 039.05 40 | 040::039.00 039.02 039.05::039.01 039.03 039.04 41 | 041::039.00 039.01 039.02 039.03 039.04::039.05 42 | 042::039.02 039.03 039.04 039.05::039.00 039.01 43 | 043::039.01 039.02 039.05::039.00 039.03 039.04 44 | 044::039.01 039.05::039.00 039.02 039.03 039.04 45 | 045::045.01::045.00 045.02 045.03 045.04 045.05 46 | 046::045.02 045.01 045.05::045.00 045.03 045.04 47 | 047::045.02 045.01 045.05 045.04::045.00 045.03 48 | 048::045.02 045.01::045.00 045.03 045.04 045.05 49 | 049::045.03::045.00 045.01 045.02 045.04 045.05 50 | 050::045.03 045.02::045.00 045.01 045.04 045.05 51 | 051::051.00::051.01 051.02 051.03 051.04 051.05 051.06 52 | 052::051.00 051.05::051.01 051.02 051.03 051.04 051.06 53 | 053::051.02 051.04::051.00 051.01 051.03 051.05 051.06 54 | 054::051.02 051.03 051.04 051.05::051.00 051.01 051.06 55 | 055::051.03 051.00 051.01::051.02 051.04 051.05 051.06 56 | 056::051.02 051.03::051.00 051.01 051.04 051.05 051.06 57 | 057::057.02::057.00 057.01 057.03 057.04 057.05 58 | 058::057.00 057.03::057.01 057.02 057.04 057.05 59 | 059::057.01 057.03::057.00 057.02 057.04 057.05 60 | 060::057.02::057.00 057.01 057.03 057.04 057.05 61 | 061::061.09 061.00 061.05 061.07::061.01 061.02 061.03 061.04 061.06 061.08 061.10 061.11 62 | 062::061.01 061.09 061.02 061.05::061.00 061.03 061.04 061.06 061.07 061.08 061.10 061.11 63 | 063::061.11 061.06 061.08 061.03 061.02 061.04 061.10::061.00 061.01 061.05 061.07 061.09 64 | 064::061.11 061.08 061.01 061.10 061.03 061.02 061.04 061.06::061.00 061.05 061.07 061.09 65 | 065::061.09 061.00 061.10 061.05 061.04 061.07 061.06::061.01 061.02 061.03 061.08 061.11 66 | 066::061.05::061.00 061.01 061.02 061.03 061.04 061.06 061.07 061.08 061.09 061.10 061.11 67 | 067::067.00 067.01 067.09 067.08::067.02 067.03 067.04 067.05 067.06 067.07 067.10 067.11 68 | 068::067.07 067.11 067.04 067.01 067.00::067.02 067.03 067.05 067.06 067.08 067.09 067.10 69 | 069::069.08 069.03 069.05 069.07::069.00 069.01 069.02 069.04 069.06 069.09 069.10 069.11 70 | 070::069.01 069.10 069.02 069.04 069.06 069.09::069.00 069.03 069.05 069.07 069.08 069.11 71 | 071::069.08 069.03 069.07::069.00 069.01 069.02 069.04 069.05 069.06 069.09 069.10 069.11 72 | 072::069.09 069.06::069.00 069.01 069.02 069.03 069.04 069.05 069.07 069.08 069.10 069.11 73 | 073::069.07::069.00 069.01 069.02 069.03 069.04 069.05 069.06 069.08 069.09 069.10 069.11 74 | 074::074.07 074.06 074.05 074.04::074.00 074.01 074.02 074.03 074.08 074.09 074.10 75 | 075::075.02 075.03 075.05 075.06 075.07::075.00 075.01 075.04 075.08 075.09 075.10 075.11 075.12 76 | 076::076.00::076.01 076.02 076.03 076.04 076.05 076.06 076.07 77 | 077::076.03 076.05 076.04::076.00 076.01 076.02 076.06 076.07 78 | 078::076.04 076.06::076.00 076.01 076.02 076.03 076.05 076.07 79 | 079::076.01 076.00 076.03::076.02 076.04 076.05 076.06 076.07 80 | 080::076.01 076.04::076.00 076.02 076.03 076.05 076.06 076.07 81 | 081::081.00::081.01 081.02 081.03 081.04 081.05 081.06 82 | 082::082.02::082.00 082.01 082.03 082.04 082.05 082.06 082.07 83 | 083::082.02 082.00::082.01 082.03 082.04 082.05 082.06 082.07 84 | 084::082.06 082.07 082.05 082.03::082.00 082.01 082.02 082.04 85 | 085::082.07 082.04 082.05 082.02 082.03 082.01::082.00 082.06 86 | 086::082.04 082.00::082.01 082.02 082.03 082.05 082.06 082.07 87 | 087::082.06 082.05 082.02 082.01::082.00 082.03 082.04 082.07 88 | 088::088.02::088.00 088.01 088.03 088.04 088.05 088.06 088.07 89 | 089::088.02 088.06::088.00 088.01 088.03 088.04 088.05 088.07 90 | 090::088.00 088.01 088.02 088.04 088.05 088.06 088.07::088.03 91 | 091::088.00 088.01 088.03 088.04 088.05 088.06 088.07::088.02 92 | 092::092.01::092.00 092.02 092.03 092.04 092.05 092.06 93 | 093::093.00 093.03 093.04 093.06::093.01 093.02 093.05 093.07 093.08 093.09 093.10 94 | 094::093.00 093.08 093.05 093.07::093.01 093.02 093.03 093.04 093.06 093.09 093.10 95 | 095::093.00 093.03 093.06::093.01 093.02 093.04 093.05 093.07 093.08 093.09 093.10 96 | 096::093.09 093.02 093.01::093.00 093.03 093.04 093.05 093.06 093.07 093.08 093.10 97 | 097::093.00 093.01 093.03 093.04 093.06 093.09::093.02 093.05 093.07 093.08 093.10 98 | 098::093.00 093.08 093.07::093.01 093.02 093.03 093.04 093.05 093.06 093.09 093.10 99 | 099::099.06 099.07 099.08 099.09::099.00 099.01 099.02 099.03 099.04 099.05 099.10 100 | 100::099.07 099.04 099.05 099.08::099.00 099.01 099.02 099.03 099.06 099.09 099.10 101 | 101::099.04 099.05 099.08::099.00 099.01 099.02 099.03 099.06 099.07 099.09 099.10 102 | 102::099.04 099.03 099.10::099.00 099.01 099.02 099.05 099.06 099.07 099.08 099.09 103 | 103::099.08 099.09 099.06 099.07 099.02 099.00::099.01 099.03 099.04 099.05 099.10 104 | 104::099.04 099.05 099.02 099.03 099.00 099.01 099.10::099.06 099.07 099.08 099.09 105 | 105::099.06 099.07 099.02 099.08 099.00::099.01 099.03 099.04 099.05 099.09 099.10 106 | 106::106.01 106.00 106.10 106.02::106.03 106.04 106.05 106.06 106.07 106.08 106.09 107 | 107::106.09 106.07 106.01::106.00 106.02 106.03 106.04 106.05 106.06 106.08 106.10 108 | 108::106.04 106.06 106.08::106.00 106.01 106.02 106.03 106.05 106.07 106.09 106.10 109 | 109::106.05 106.07 106.01 106.02::106.00 106.03 106.04 106.06 106.08 106.09 106.10 110 | 110::106.04 106.06 106.03::106.00 106.01 106.02 106.05 106.07 106.08 106.09 106.10 111 | 111::106.05 106.07 106.09::106.00 106.01 106.02 106.03 106.04 106.06 106.08 106.10 112 | 112::106.01::106.00 106.02 106.03 106.04 106.05 106.06 106.07 106.08 106.09 106.10 113 | 113::113.07 113.09 113.01 113.08::113.00 113.02 113.03 113.04 113.05 113.06 113.10 114 | 114::113.10 113.09 113.08 113.07 113.05 113.04 113.03 113.02 113.01 113.00::113.06 115 | 115::113.03 113.02::113.00 113.01 113.04 113.05 113.06 113.07 113.08 113.09 113.10 116 | 116::113.10 113.05 113.01 113.00::113.02 113.03 113.04 113.06 113.07 113.08 113.09 117 | 117::113.07 113.04 113.01 113.09 113.08::113.00 113.02 113.03 113.05 113.06 113.10 118 | 118::113.04 113.09 113.08::113.00 113.01 113.02 113.03 113.05 113.06 113.07 113.10 119 | 119::119.05 119.04 119.00 119.03::119.01 119.02 119.06 119.07 119.08 119.09 119.10 119.11 120 | 120::119.09 119.05 119.04 119.07 119.06 119.00 119.03 119.02 119.10 119.11::119.01 119.08 121 | 121::119.08 119.05 119.04 119.07 119.06 119.01 119.00 119.10::119.02 119.03 119.09 119.11 122 | 122::119.09 119.08 119.07 119.06 119.01 119.10 119.02 119.11::119.00 119.03 119.04 119.05 123 | 123::119.00::119.01 119.02 119.03 119.04 119.05 119.06 119.07 119.08 119.09 119.10 119.11 124 | 124::119.00::119.01 119.02 119.03 119.04 119.05 119.06 119.07 119.08 119.09 119.10 119.11 125 | 125::125.02::125.00 125.01 125.03 125.04 125.05 125.06 126 | 126::125.00 125.01 125.04 125.05::125.02 125.03 125.06 127 | 127::125.00 125.01 125.05::125.02 125.03 125.04 125.06 128 | 128::125.02::125.00 125.01 125.03 125.04 125.05 125.06 129 | 129::125.03::125.00 125.01 125.02 125.04 125.05 125.06 130 | 130::125.03 125.06 125.04::125.00 125.01 125.02 125.05 131 | 131::131.03::131.00 131.01 131.02 131.04 131.05 131.06 131.07 132 | 132::131.03 131.02 131.00 131.07 131.06 131.05 131.04::131.01 133 | 133::131.02 131.01 131.00 131.07 131.06 131.05 131.04::131.03 134 | 134::131.03 131.02 131.06 131.04::131.00 131.01 131.05 131.07 135 | 135::131.03 131.02 131.07 131.06 131.05 131.04::131.00 131.01 136 | 136::131.03 131.01 131.07 131.06 131.05 131.04::131.00 131.02 137 | 137::137.01::137.00 137.02 137.03 137.04 137.05 137.06 138 | 138::137.04 137.03::137.00 137.01 137.02 137.05 137.06 139 | 139::137.05 137.04 137.00::137.01 137.02 137.03 137.06 140 | 140::137.06 137.01 137.00 137.03 137.02::137.04 137.05 141 | 141::137.02::137.00 137.01 137.03 137.04 137.05 137.06 142 | 142::137.01 137.00 137.03::137.02 137.04 137.05 137.06 143 | 143::143.00::143.01 143.02 143.03 143.04 143.05 143.06 144 | 144::143.02 143.03 143.00 143.01 143.06 143.05::143.04 145 | 145::145.02::145.00 145.01 145.03 145.04 145.05 145.06 145.07 146 | 146::145.02 145.03 145.05 145.07::145.00 145.01 145.04 145.06 147 | 147::145.02 145.03 145.05 145.07::145.00 145.01 145.04 145.06 148 | 148::145.02 145.03 145.04 145.06::145.00 145.01 145.05 145.07 149 | 149::145.02 145.03 145.04 145.06 145.07::145.00 145.01 145.05 150 | 150::145.00 145.01 145.02 145.03 145.04 145.06 145.07::145.05 151 | 151::151.08 151.03 151.05 151.06::151.00 151.01 151.02 151.04 151.07 151.09 151.10 152 | 152::151.08 151.03 151.02 151.05 151.07 151.06::151.00 151.01 151.04 151.09 151.10 153 | 153::151.03 151.05 151.06::151.00 151.01 151.02 151.04 151.07 151.08 151.09 151.10 154 | 154::151.09 151.08 151.00 151.03 151.05 151.06::151.01 151.02 151.04 151.07 151.10 155 | 155::151.08 151.05 151.06::151.00 151.01 151.02 151.03 151.04 151.07 151.09 151.10 156 | 156::151.09 151.08 151.00 151.03 151.05 151.06::151.01 151.02 151.04 151.07 151.10 157 | 157::151.03::151.00 151.01 151.02 151.04 151.05 151.06 151.07 151.08 151.09 151.10 158 | 158::151.03::151.00 151.01 151.02 151.04 151.05 151.06 151.07 151.08 151.09 151.10 159 | 159::159.05 159.04 159.06::159.00 159.01 159.02 159.03 159.07 159.08 159.09 160 | 160::159.00 159.03 159.02 159.05 159.04 159.07 159.06 159.09 159.08::159.01 161 | 161::159.01 159.00 159.03 159.02 159.07::159.04 159.05 159.06 159.08 159.09 162 | 162::159.01 159.00 159.03 159.02 159.05 159.04 159.07 159.06::159.08 159.09 163 | 163::159.01 159.00 159.02 159.05 159.07 159.06 159.09 159.08::159.03 159.04 164 | 164::159.01 159.00 159.03 159.02 159.07 159.09 159.08::159.04 159.05 159.06 165 | 165::159.06::159.00 159.01 159.02 159.03 159.04 159.05 159.07 159.08 159.09 166 | 166::159.06::159.00 159.01 159.02 159.03 159.04 159.05 159.07 159.08 159.09 167 | 167::167.01 167.02 167.04 167.05::167.00 167.03 167.06 167.07 167.08 167.09 168 | 168::167.01 167.02 167.04::167.00 167.03 167.05 167.06 167.07 167.08 167.09 169 | 169::167.00 167.05 167.07::167.01 167.02 167.03 167.04 167.06 167.08 167.09 170 | 170::167.08 167.00 167.06::167.01 167.02 167.03 167.04 167.05 167.07 167.09 171 | 171::167.08 167.01 167.02::167.00 167.03 167.04 167.05 167.06 167.07 167.09 172 | 172::167.08 167.01 167.02 167.06::167.00 167.03 167.04 167.05 167.07 167.09 173 | 173::173.05 173.01 173.03 173.02::173.00 173.04 173.06 173.07 173.08 173.09 173.10 174 | 174::173.09 173.08 173.07 173.06 173.00 173.10::173.01 173.02 173.03 173.04 173.05 175 | 175::173.08 173.05 173.04 173.06 173.01 173.00 173.03 173.02 173.10::173.07 173.09 176 | 176::173.05 173.04 173.06 173.01 173.00 173.10 173.02::173.03 173.07 173.08 173.09 177 | 177::173.04 173.07 173.09 173.08 173.10::173.00 173.01 173.02 173.03 173.05 173.06 178 | 178::173.09 173.08 173.04 173.07 173.06 173.00 173.10::173.01 173.02 173.03 173.05 179 | 179::173.06 173.01::173.00 173.02 173.03 173.04 173.05 173.07 173.08 173.09 173.10 180 | 180::173.03::173.00 173.01 173.02 173.04 173.05 173.06 173.07 173.08 173.09 173.10 181 | 181::181.00 181.01 181.02 181.03::181.04 181.05 181.06 181.07 181.08 181.09 181.10 181.11 182 | 182::181.01 181.04 181.05 181.07 181.11 181.10::181.00 181.02 181.03 181.06 181.08 181.09 183 | 183::181.09 181.00 181.02 181.04 181.05 181.06 181.07 181.10::181.01 181.03 181.08 181.11 184 | 184::181.10 181.04 181.05 181.07::181.00 181.01 181.02 181.03 181.06 181.08 181.09 181.11 185 | 185::181.08 181.09 181.00 181.01 181.02 181.03::181.04 181.05 181.06 181.07 181.10 181.11 186 | 186::181.08 181.09 181.04 181.05 181.06 181.07 181.11 181.10::181.00 181.01 181.02 181.03 187 | 187::181.01::181.00 181.02 181.03 181.04 181.05 181.06 181.07 181.08 181.09 181.10 181.11 188 | 188::181.01::181.00 181.02 181.03 181.04 181.05 181.06 181.07 181.08 181.09 181.10 181.11 189 | 189::189.00::189.01 189.02 189.03 189.04 189.05 189.06 190 | 190::189.01 189.02 189.03::189.00 189.04 189.05 189.06 191 | 191::189.00 189.02 189.03 189.04::189.01 189.05 189.06 192 | 192::189.01 189.02 189.05::189.00 189.03 189.04 189.06 193 | 193::189.01 189.05::189.00 189.02 189.03 189.04 189.06 194 | 194::189.01 189.03::189.00 189.02 189.04 189.05 189.06 195 | 195::195.00::195.01 195.02 195.03 195.04 195.05 195.06 196 | 196::195.00 195.03 195.05 195.04 195.06::195.01 195.02 197 | 197::195.00 195.03 195.02 195.06::195.01 195.04 195.05 198 | 198::195.02 195.05 195.04 195.06::195.00 195.01 195.03 199 | 199::195.01 195.03 195.05 195.04 195.06::195.00 195.02 200 | 200::195.01 195.03 195.02::195.00 195.04 195.05 195.06 201 | 201::201.02::201.00 201.01 201.03 201.04 201.05 201.06 202 | 202::201.01 201.03 201.04::201.00 201.02 201.05 201.06 203 | 203::201.01 201.00 201.03 201.02 201.05 201.04::201.06 204 | 204::201.02 201.04::201.00 201.01 201.03 201.05 201.06 205 | 205::201.01 201.00 201.03 201.05::201.02 201.04 201.06 206 | 206::201.00 201.02 201.05::201.01 201.03 201.04 201.06 207 | 207::207.00::207.01 207.02 207.03 207.04 207.05 207.06 208 | 208::207.06 207.04 207.03 207.00::207.01 207.02 207.05 209 | 209::207.06 207.05 207.02::207.00 207.01 207.03 207.04 210 | 210::207.04 207.03 207.02::207.00 207.01 207.05 207.06 211 | 211::207.06 207.05 207.04 207.03 207.01::207.00 207.02 212 | 212::207.02 207.01 207.00::207.03 207.04 207.05 207.06 213 | 213::213.03::213.00 213.01 213.02 213.04 213.05 213.06 214 | 214::213.02 213.03 213.00 213.01::213.04 213.05 213.06 215 | 215::213.03 213.00 213.01 213.04 213.05::213.02 213.06 216 | 216::213.03 213.01 213.06 213.04 213.05::213.00 213.02 217 | 217::213.02 213.00 213.01 213.06 213.04::213.03 213.05 218 | 218::213.02 213.00 213.06::213.01 213.03 213.04 213.05 219 | 219::219.04 219.05 219.02 219.03::219.00 219.01 219.06 219.07 219.08 219.09 219.10 220 | 220::219.04 219.05 219.02::219.00 219.01 219.03 219.06 219.07 219.08 219.09 219.10 221 | 221::219.07 219.08 219.09 219.01::219.00 219.02 219.03 219.04 219.05 219.06 219.10 222 | 222::219.05 219.02 219.03::219.00 219.01 219.04 219.06 219.07 219.08 219.09 219.10 223 | 223::219.08 219.09 219.04 219.05 219.01 219.02 219.03::219.00 219.06 219.07 219.10 224 | 224::219.04 219.05 219.01 219.02 219.03::219.00 219.06 219.07 219.08 219.09 219.10 225 | 225::219.06 219.00 219.02::219.01 219.03 219.04 219.05 219.07 219.08 219.09 219.10 226 | 226::219.02::219.00 219.01 219.03 219.04 219.05 219.06 219.07 219.08 219.09 219.10 227 | 227::227.01 227.00 227.10 227.09::227.02 227.03 227.04 227.05 227.06 227.07 227.08 227.11 228 | 228::227.11 227.10 227.01 227.03 227.02 227.05 227.07 227.06::227.00 227.04 227.08 227.09 229 | 229::227.11 227.03 227.02 227.05 227.07 227.06 227.08::227.00 227.01 227.04 227.09 227.10 230 | 230::227.01 227.00 227.03 227.02 227.05 227.06::227.04 227.07 227.08 227.09 227.10 227.11 231 | 231::227.11 227.05 227.04 227.07 227.06 227.08::227.00 227.01 227.02 227.03 227.09 227.10 232 | 232::227.11 227.03 227.02 227.05 227.04 227.07 227.06 227.08::227.00 227.01 227.09 227.10 233 | 233::227.09 227.08 227.04::227.00 227.01 227.02 227.03 227.05 227.06 227.07 227.10 227.11 234 | 234::227.09::227.00 227.01 227.02 227.03 227.04 227.05 227.06 227.07 227.08 227.10 227.11 235 | 235::235.04 235.05 235.02 235.01::235.00 235.03 235.06 235.07 235.08 235.09 236 | 236::235.05 235.03 235.00::235.01 235.02 235.04 235.06 235.07 235.08 235.09 237 | 237::235.04 235.05 235.02::235.00 235.01 235.03 235.06 235.07 235.08 235.09 238 | 238::235.07 235.04 235.05 235.02 235.01::235.00 235.03 235.06 235.08 235.09 239 | 239::235.06 235.01::235.00 235.02 235.03 235.04 235.05 235.07 235.08 235.09 240 | 240::240.02 240.07 240.04 240.05::240.00 240.01 240.03 240.06 240.08 240.09 240.10 241 | 241::240.08 240.09 240.03 240.00 240.04 240.05 240.10::240.01 240.02 240.06 240.07 242 | 242::240.02 240.09 240.01 240.06 240.07::240.00 240.03 240.04 240.05 240.08 240.10 243 | 243::240.09 240.08 240.01 240.06 240.00::240.02 240.03 240.04 240.05 240.07 240.10 244 | 244::240.08 240.09 240.03 240.00 240.01 240.06 240.10::240.02 240.04 240.05 240.07 245 | 245::240.03 240.01 240.06 240.09 240.10::240.00 240.02 240.04 240.05 240.07 240.08 246 | 246::240.08 240.00 240.04 240.05::240.01 240.02 240.03 240.06 240.07 240.09 240.10 247 | 247::247.09 247.08 247.05 247.04::247.00 247.01 247.02 247.03 247.06 247.07 248 | 248::247.03 247.02 247.00 247.05 247.04 247.09 247.08::247.01 247.06 247.07 249 | 249::247.02 247.01 247.00 247.07 247.06 247.05 247.04 247.09 247.08::247.03 250 | 250::247.03 247.02 247.01 247.00 247.07::247.04 247.05 247.06 247.08 247.09 251 | 251::247.03 247.02 247.00 247.07 247.06::247.01 247.04 247.05 247.08 247.09 252 | 252::247.03 247.08 247.00 247.04::247.01 247.02 247.05 247.06 247.07 247.09 253 | 253::247.01 247.07 247.05::247.00 247.02 247.03 247.04 247.06 247.08 247.09 254 | 254::254.01::254.00 254.02 254.03 254.04 254.05 254.06 255 | 255::254.05 254.01 254.00::254.02 254.03 254.04 254.06 256 | 256::254.06 254.04 254.02::254.00 254.01 254.03 254.05 257 | 257::254.05 254.03::254.00 254.01 254.02 254.04 254.06 258 | 258::254.04 254.01 254.00::254.02 254.03 254.05 254.06 259 | 259::259.02::259.00 259.01 259.03 259.04 259.05 259.06 259.07 260 | 260::259.02 259.03 259.05 259.06::259.00 259.01 259.04 259.07 261 | 261::259.01 259.03 259.06::259.00 259.02 259.04 259.05 259.07 262 | 262::259.00 259.01 259.02 259.03::259.04 259.05 259.06 259.07 263 | 263::259.01 259.02 259.04 259.05::259.00 259.03 259.06 259.07 264 | 264::259.03 259.05::259.00 259.01 259.02 259.04 259.06 259.07 265 | 265::265.00::265.01 265.02 265.03 265.04 265.05 265.06 266 | 266::265.06 265.03::265.00 265.01 265.02 265.04 265.05 267 | 267::265.05 265.04 265.03::265.00 265.01 265.02 265.06 268 | 268::265.05 265.04 265.03 265.00::265.01 265.02 265.06 269 | 269::265.06 265.03::265.00 265.01 265.02 265.04 265.05 270 | 270::265.06 265.05 265.03 265.00::265.01 265.02 265.04 271 | 271::271.03::271.00 271.01 271.02 271.04 271.05 271.06 271.07 272 | 272::271.04 271.05 271.03 271.00 271.01::271.02 271.06 271.07 273 | 273::271.06 271.07 271.02 271.03::271.00 271.01 271.04 271.05 274 | 274::271.06 271.07 271.04 271.05 271.00 271.01::271.02 271.03 275 | 275::271.05 271.02 271.03::271.00 271.01 271.04 271.06 271.07 276 | 276::271.06 271.07 271.05 271.02::271.00 271.01 271.03 271.04 277 | 277::277.08 277.00 277.01 277.02::277.03 277.04 277.05 277.06 277.07 277.09 278 | 278::277.04 277.05 277.06 277.07 277.03 277.08 277.09::277.00 277.01 277.02 279 | 279::277.04 277.05 277.06 277.07 277.00 277.01 277.02 277.08 277.09::277.03 280 | 280::280.06 280.05 280.03 280.09::280.00 280.01 280.02 280.04 280.07 280.08 280.10 281 | 281::280.06 280.05 280.02 280.03 280.00 280.01 280.08 280.09::280.04 280.07 280.10 282 | 282::280.06 280.04 280.05 280.02 280.03 280.00 280.01 280.08 280.09::280.07 280.10 283 | 283::280.06 280.07 280.05 280.02 280.03 280.00 280.01 280.08 280.09::280.04 280.10 284 | 284::280.07 280.04 280.03 280.01 280.08 280.09 280.10::280.00 280.02 280.05 280.06 285 | 285::280.07 280.04 280.02 280.10 280.00::280.01 280.03 280.05 280.06 280.08 280.09 286 | 286::280.05::280.00 280.01 280.02 280.03 280.04 280.06 280.07 280.08 280.09 280.10 287 | 287::287.03 287.02 287.01 287.00::287.04 287.05 287.06 287.07 287.08 287.09 288 | 288::287.07 287.05 287.04::287.00 287.01 287.02 287.03 287.06 287.08 287.09 289 | 289::287.03 287.02 287.01::287.00 287.04 287.05 287.06 287.07 287.08 287.09 290 | 290::290.07 290.06 290.01 290.00::290.02 290.03 290.04 290.05 290.08 290.09 290.10 291 | 291::290.07 290.06 290.05 290.04 290.03 290.00 290.09 290.08 290.10::290.01 290.02 292 | 292::290.07 290.06 290.04 290.03 290.02 290.01 290.00 290.09 290.10::290.05 290.08 293 | 293::290.07 290.06 290.05 290.01 290.00 290.09 290.08 290.10::290.02 290.03 290.04 294 | 294::290.06 290.05 290.03 290.00 290.09 290.08 290.10::290.01 290.02 290.04 290.07 295 | 295::290.05 290.04 290.03 290.02::290.00 290.01 290.06 290.07 290.08 290.09 290.10 296 | 296::290.07::290.00 290.01 290.02 290.03 290.04 290.05 290.06 290.08 290.09 290.10 297 | 297::297.02 297.03 297.00 297.09::297.01 297.04 297.05 297.06 297.07 297.08 297.10 298 | 298::297.06 297.07 297.04 297.05 297.02 297.03 297.00 297.08 297.09 297.10::297.01 299 | 299::297.06 297.05 297.08 297.01::297.00 297.02 297.03 297.04 297.07 297.09 297.10 300 | 300::297.07 297.04 297.05 297.10 297.08 297.09::297.00 297.01 297.02 297.03 297.06 301 | 301::297.07 297.04 297.08 297.01::297.00 297.02 297.03 297.05 297.06 297.09 297.10 302 | 302::297.06 297.07 297.04 297.05 297.01 297.08::297.00 297.02 297.03 297.09 297.10 303 | 303::297.00::297.01 297.02 297.03 297.04 297.05 297.06 297.07 297.08 297.09 297.10 304 | 304::304.01::304.00 304.02 304.03 304.04 304.05 304.06 304.07 305 | 305::304.01 304.00 304.02::304.03 304.04 304.05 304.06 304.07 306 | 306::304.05 304.04::304.00 304.01 304.02 304.03 304.06 304.07 307 | 307::304.06 304.01 304.02::304.00 304.03 304.04 304.05 304.07 308 | 308::308.00::308.01 308.02 308.03 308.04 308.05 308.06 309 | 309::308.05 308.04::308.00 308.01 308.02 308.03 308.06 310 | 310::308.01 308.00 308.03 308.02 308.04 308.06::308.05 311 | 311::308.01 308.05::308.00 308.02 308.03 308.04 308.06 312 | 312::308.00 308.04::308.01 308.02 308.03 308.05 308.06 313 | 313::313.02::313.00 313.01 313.03 313.04 313.05 313.06 314 | 314::313.01 313.00 313.03 313.04::313.02 313.05 313.06 315 | 315::313.01 313.03 313.02 313.05 313.06::313.00 313.04 316 | 316::313.03 313.04::313.00 313.01 313.02 313.05 313.06 317 | 317::313.02 313.05 313.04 313.06::313.00 313.01 313.03 318 | 318::313.00 313.05 313.04::313.01 313.02 313.03 313.06 319 | 319::319.02::319.00 319.01 319.03 319.04 319.05 319.06 319.07 320 | 320::319.03 319.02 319.00 319.07 319.06 319.05::319.01 319.04 321 | 321::319.00 319.07 319.06 319.05 319.04::319.01 319.02 319.03 322 | 322::319.02 319.01 319.00 319.07 319.06 319.05 319.04::319.03 323 | 323::319.03 319.02 319.01 319.07 319.06 319.05 319.04::319.00 324 | 324::319.03 319.01 319.00 319.07 319.05 319.04::319.02 319.06 325 | 325::325.07 325.08 325.01 325.09::325.00 325.02 325.03 325.04 325.05 325.06 325.10 326 | 326::325.04 325.05 325.06 325.00 325.02 325.03::325.01 325.07 325.08 325.09 325.10 327 | 327::325.07 325.00 325.01 325.03 325.08 325.09::325.02 325.04 325.05 325.06 325.10 328 | 328::325.05 325.03::325.00 325.01 325.02 325.04 325.06 325.07 325.08 325.09 325.10 329 | 329::329.08 329.09 329.03 329.05::329.00 329.01 329.02 329.04 329.06 329.07 329.10 329.11 330 | 330::330.02 330.00 330.01 330.08::330.03 330.04 330.05 330.06 330.07 330.09 330.10 330.11 331 | 331::331.05 331.04 331.06 331.03::331.00 331.01 331.02 331.07 331.08 331.09 331.10 331.11 331.12 332 | 332::332.01::332.00 332.02 332.03 332.04 332.05 332.06 332.07 332.08 332.09 333 | 333::332.04 332.06 332.07 332.03::332.00 332.01 332.02 332.05 332.08 332.09 334 | 334::332.05 332.06 332.03::332.00 332.01 332.02 332.04 332.07 332.08 332.09 335 | 335::332.04 332.05 332.06 332.07 332.03::332.00 332.01 332.02 332.08 332.09 336 | 336::332.06 332.07::332.00 332.01 332.02 332.03 332.04 332.05 332.08 332.09 337 | 337::337.02::337.00 337.01 337.03 337.04 337.05 337.06 337.07 338 | 338::338.01::338.00 338.02 338.03 338.04 338.05 338.06 338.07 338.08 339 | 339::339.04 339.06 339.10 339.03::339.00 339.01 339.02 339.05 339.07 339.08 339.09 340 | 340::339.10 339.05 339.04 339.07 339.06 339.00 339.03 339.02 339.09 339.08::339.01 341 | 341::339.04 339.06 339.10 339.03 339.02::339.00 339.01 339.05 339.07 339.08 339.09 342 | 342::339.04 339.01 339.08 339.02::339.00 339.03 339.05 339.06 339.07 339.09 339.10 343 | 343::339.01 339.02::339.00 339.03 339.04 339.05 339.06 339.07 339.08 339.09 339.10 344 | 344::339.05 339.07 339.09 339.08 339.00::339.01 339.02 339.03 339.04 339.06 339.10 345 | 345::339.06::339.00 339.01 339.02 339.03 339.04 339.05 339.07 339.08 339.09 339.10 346 | 346::339.04::339.00 339.01 339.02 339.03 339.05 339.06 339.07 339.08 339.09 339.10 347 | 347::339.04 339.08 339.02::339.00 339.01 339.03 339.05 339.06 339.07 339.09 339.10 348 | 348::348.09 348.01 348.00 348.02::348.03 348.04 348.05 348.06 348.07 348.08 348.10 349 | 349::349.09 349.10 349.01 349.07::349.00 349.02 349.03 349.04 349.05 349.06 349.08 350 | 350::349.02 349.03 349.00 349.06 349.04 349.05 349.08::349.01 349.07 349.09 349.10 351 | 351::349.10 349.09 349.07::349.00 349.01 349.02 349.03 349.04 349.05 349.06 349.08 352 | 352::349.10 349.02 349.03 349.06 349.07 349.04 349.08 349.09::349.00 349.01 349.05 353 | 353::353.08 353.01 353.00 353.02::353.03 353.04 353.05 353.06 353.07 353.09 354 | 354::353.00::353.01 353.02 353.03 353.04 353.05 353.06 353.07 353.08 353.09 355 | 355::353.00::353.01 353.02 353.03 353.04 353.05 353.06 353.07 353.08 353.09 356 | 356::356.05 356.02 356.08 356.01::356.00 356.03 356.04 356.06 356.07 356.09 356.10 357 | 357::356.05 356.02::356.00 356.01 356.03 356.04 356.06 356.07 356.08 356.09 356.10 358 | 358::356.05 356.02::356.00 356.01 356.03 356.04 356.06 356.07 356.08 356.09 356.10 359 | 359::359.01::359.00 359.02 359.03 359.04 359.05 359.06 359.07 360 | 360::359.03 359.01::359.00 359.02 359.04 359.05 359.06 359.07 361 | 361::361.00::361.01 361.02 361.03 361.04 361.05 361.06 362 | 362::362.02::362.00 362.01 362.03 362.04 362.05 362.06 363 | 363::362.04 362.06 362.02::362.00 362.01 362.03 362.05 364 | 364::362.04 362.01 362.00 362.03::362.02 362.05 362.06 365 | 365::362.06 362.02::362.00 362.01 362.03 362.04 362.05 366 | 366::362.04 362.01::362.00 362.02 362.03 362.05 362.06 367 | 367::362.05 362.04 362.06 362.01 362.03 362.02::362.00 368 | 368::368.01::368.00 368.02 368.03 368.04 368.05 368.06 369 | 369::369.08 369.06 369.00 369.03::369.01 369.02 369.04 369.05 369.07 369.09 369.10 370 | 370::369.08 369.06 369.00::369.01 369.02 369.03 369.04 369.05 369.07 369.09 369.10 371 | 371::369.07::369.00 369.01 369.02 369.03 369.04 369.05 369.06 369.08 369.09 369.10 372 | 372::369.04 369.06 369.01::369.00 369.02 369.03 369.05 369.07 369.08 369.09 369.10 373 | 373::369.03::369.00 369.01 369.02 369.04 369.05 369.06 369.07 369.08 369.09 369.10 374 | 374::369.06::369.00 369.01 369.02 369.03 369.04 369.05 369.07 369.08 369.09 369.10 375 | 375::375.04 375.07 375.08 375.03::375.00 375.01 375.02 375.05 375.06 375.09 375.10 376 | 376::375.04 375.07::375.00 375.01 375.02 375.03 375.05 375.06 375.08 375.09 375.10 377 | 377::377.07 377.06 377.05 377.04::377.00 377.01 377.02 377.03 377.08 377.09 377.10 377.11 378 | 378::377.10 377.05 377.04 377.00::377.01 377.02 377.03 377.06 377.07 377.08 377.09 377.11 379 | 379::377.06 377.05 377.04::377.00 377.01 377.02 377.03 377.07 377.08 377.09 377.10 377.11 380 | 380::377.03 377.02 377.01 377.00 377.09 377.08 377.10 377.11::377.04 377.05 377.06 377.07 381 | 381::377.04 377.01::377.00 377.02 377.03 377.05 377.06 377.07 377.08 377.09 377.10 377.11 382 | 382::377.04::377.00 377.01 377.02 377.03 377.05 377.06 377.07 377.08 377.09 377.10 377.11 383 | 383::383.01 383.10 383.11 383.09::383.00 383.02 383.03 383.04 383.05 383.06 383.07 383.08 384 | 384::383.08 383.09 383.05::383.00 383.01 383.02 383.03 383.04 383.06 383.07 383.10 383.11 385 | 385::383.09::383.00 383.01 383.02 383.03 383.04 383.05 383.06 383.07 383.08 383.10 383.11 386 | 386::386.07 386.05 386.04 386.03::386.00 386.01 386.02 386.06 386.08 386.09 386.10 387 | 387::386.03 386.02::386.00 386.01 386.04 386.05 386.06 386.07 386.08 386.09 386.10 388 | 388::386.03::386.00 386.01 386.02 386.04 386.05 386.06 386.07 386.08 386.09 386.10 389 | 389::389.01::389.00 389.02 389.03 389.04 389.05 389.06 390 | 390::389.00::389.01 389.02 389.03 389.04 389.05 389.06 391 | 391::389.06 389.04 389.05 389.02 389.03::389.00 389.01 392 | 392::389.02 389.00 389.01::389.03 389.04 389.05 389.06 393 | 393::389.04 389.05 389.03::389.00 389.01 389.02 389.06 394 | 394::389.00 389.01::389.02 389.03 389.04 389.05 389.06 395 | 395::395.03::395.00 395.01 395.02 395.04 395.05 395.06 396 | 396::396.01::396.00 396.02 396.03 396.04 396.05 396.06 397 | 397::396.03 396.01::396.00 396.02 396.04 396.05 396.06 398 | 398::396.03 396.01 396.05::396.00 396.02 396.04 396.06 399 | 399::396.02 396.06 396.04 396.05::396.00 396.01 396.03 400 | 400::400.01::400.00 400.02 400.03 400.04 400.05 401 | 401::401.00::401.01 401.02 401.03 401.04 401.05 401.06 402 | 402::402.02 402.03 402.04 402.10::402.00 402.01 402.05 402.06 402.07 402.08 402.09 402.11 403 | 403::402.01 402.09 402.05::402.00 402.02 402.03 402.04 402.06 402.07 402.08 402.10 402.11 404 | 404::402.02 402.03 402.04::402.00 402.01 402.05 402.06 402.07 402.08 402.09 402.10 402.11 405 | 405::405.02 405.07 405.05 405.04::405.00 405.01 405.03 405.06 405.08 405.09 405.10 406 | 406::406.06 406.04 406.05 406.03::406.00 406.01 406.02 406.07 406.08 406.09 406.10 407 | 407::406.04 406.02 406.10::406.00 406.01 406.03 406.05 406.06 406.07 406.08 406.09 408 | 408::406.07 406.02 406.08 406.09::406.00 406.01 406.03 406.04 406.05 406.06 406.10 409 | 409::406.08 406.09 406.07 406.02 406.10 406.00 406.01::406.03 406.04 406.05 406.06 410 | 410::406.08 406.09 406.06 406.07 406.05 406.02 406.03 406.00 406.01::406.04 406.10 411 | 411::406.06 406.05 406.03::406.00 406.01 406.02 406.04 406.07 406.08 406.09 406.10 412 | 412::412.07 412.06 412.04 412.03::412.00 412.01 412.02 412.05 412.08 412.09 412.10 413 | 413::412.07 412.06 412.03::412.00 412.01 412.02 412.04 412.05 412.08 412.09 412.10 414 | 414::412.07 412.06 412.03 412.09::412.00 412.01 412.02 412.04 412.05 412.08 412.10 415 | 415::415.04 415.05 415.02 415.03::415.00 415.01 415.06 415.07 415.08 415.09 415.10 416 | 416::416.00::416.01 416.02 416.03 416.04 416.05 416.06 417 | 417::416.01 416.00 416.05::416.02 416.03 416.04 416.06 418 | 418::416.03 416.02 416.01 416.05::416.00 416.04 416.06 419 | 419::416.01 416.00 416.05::416.02 416.03 416.04 416.06 420 | 420::416.03 416.02 416.01 416.06 416.05 416.04::416.00 421 | 421::416.02 416.01::416.00 416.03 416.04 416.05 416.06 422 | 422::422.02::422.00 422.01 422.03 422.04 422.05 422.06 422.07 423 | 423::423.07::423.00 423.01 423.02 423.03 423.04 423.05 423.06 424 | 424::423.03 423.07 423.06 423.05::423.00 423.01 423.02 423.04 425 | 425::423.02::423.00 423.01 423.03 423.04 423.05 423.06 423.07 426 | 426::423.03 423.02 423.00 423.06 423.05 423.04::423.01 423.07 427 | 427::423.02 423.07 423.06::423.00 423.01 423.03 423.04 423.05 428 | 428::423.03 423.02 423.01 423.00 423.07 423.06 423.04::423.05 429 | 429::429.00::429.01 429.02 429.03 429.04 429.05 429.06 430 | 430::430.05::430.00 430.01 430.02 430.03 430.04 430.06 431 | 431::431.02::431.00 431.01 431.03 431.04 431.05 431.06 431.07 432 | 432::432.05 432.07 432.09 432.08::432.00 432.01 432.02 432.03 432.04 432.06 432.10 433 | 433::432.05 432.07::432.00 432.01 432.02 432.03 432.04 432.06 432.08 432.09 432.10 434 | 434::432.05 432.07::432.00 432.01 432.02 432.03 432.04 432.06 432.08 432.09 432.10 435 | 435::435.00 435.01 435.02 435.03::435.04 435.05 435.06 435.07 435.08 435.09 435.10 436 | 436::435.00 435.01 435.02 435.03 435.04 435.05 435.06 435.07 435.08::435.09 435.10 437 | 437::435.00 435.02 435.03 435.04 435.05::435.01 435.06 435.07 435.08 435.09 435.10 438 | 438::435.00 435.01 435.02 435.03 435.04 435.05 435.07 435.08 435.09 435.10::435.06 439 | 439::435.00 435.03 435.04::435.01 435.02 435.05 435.06 435.07 435.08 435.09 435.10 440 | 440::435.00 435.03::435.01 435.02 435.04 435.05 435.06 435.07 435.08 435.09 435.10 441 | 441::441.07 441.06 441.05 441.04::441.00 441.01 441.02 441.03 441.08 441.09 441.10 442 | 442::441.04::441.00 441.01 441.02 441.03 441.05 441.06 441.07 441.08 441.09 441.10 443 | 443::443.00 443.06::443.01 443.02 443.03 443.04 443.05 444 | 444::443.00 443.06::443.01 443.02 443.03 443.04 443.05 445 | 445::445.00::445.01 445.02 445.03 445.04 445.05 445.06 445.07 445.08 446 | 446::445.07 445.05 445.04 445.03 445.02 445.01 445.00 445.08::445.06 447 | 447::445.04 445.03 445.02 445.00::445.01 445.05 445.06 445.07 445.08 448 | 448::445.07 445.06 445.05 445.03 445.01 445.00 445.08::445.02 445.04 449 | 449::449.00::449.01 449.02 449.03 449.04 449.05 449.06 449.07 450 | 450::449.03 449.02 449.01 449.00 449.07::449.04 449.05 449.06 451 | 451::449.03 449.02 449.01::449.00 449.04 449.05 449.06 449.07 452 | 452::449.02 449.05 449.04::449.00 449.01 449.03 449.06 449.07 453 | 453::449.07 449.05 449.04::449.00 449.01 449.02 449.03 449.06 454 | 454::454.00::454.01 454.02 454.03 454.04 454.05 454.06 454.07 455 | 455::455.02::455.00 455.01 455.03 455.04 455.05 455.06 456 | 456::456.07 456.04 456.03 456.01::456.00 456.02 456.05 456.06 456.08 456.09 457 | 457::456.04 456.03::456.00 456.01 456.02 456.05 456.06 456.07 456.08 456.09 458 | 458::456.06 456.05 456.02 456.00 456.09 456.08::456.01 456.03 456.04 456.07 459 | 459::456.05 456.01::456.00 456.02 456.03 456.04 456.06 456.07 456.08 456.09 460 | 460::456.01::456.00 456.02 456.03 456.04 456.05 456.06 456.07 456.08 456.09 461 | 461::461.05 461.07 461.06 461.08::461.00 461.01 461.02 461.03 461.04 461.09 462 | 462::461.05 461.02::461.00 461.01 461.03 461.04 461.06 461.07 461.08 461.09 463 | 463::463.07 463.06 463.05 463.08::463.00 463.01 463.02 463.03 463.04 463.09 463.10 464 | 464::463.10 463.03 463.09 463.01 463.08::463.00 463.02 463.04 463.05 463.06 463.07 465 | 465::463.09 463.02 463.01 463.00::463.03 463.04 463.05 463.06 463.07 463.08 463.10 466 | 466::466.00 466.08 466.09 466.07::466.01 466.02 466.03 466.04 466.05 466.06 467 | 467::467.03 467.02 467.09 467.00::467.01 467.04 467.05 467.06 467.07 467.08 467.10 468 | 468::467.01 467.00::467.02 467.03 467.04 467.05 467.06 467.07 467.08 467.09 467.10 469 | 469::467.00::467.01 467.02 467.03 467.04 467.05 467.06 467.07 467.08 467.09 467.10 470 | 470::470.03::470.00 470.01 470.02 470.04 470.05 470.06 471 | 471::471.02::471.00 471.01 471.03 471.04 471.05 471.06 471.07 472 | 472::472.05::472.00 472.01 472.02 472.03 472.04 472.06 473 | 473::473.00::473.01 473.02 473.03 473.04 473.05 473.06 474 | 474::474.06 474.05 474.03 474.02 474.11::474.00 474.01 474.04 474.07 474.08 474.09 474.10 475 | 475::474.10 474.09 474.08::474.00 474.01 474.02 474.03 474.04 474.05 474.06 474.07 474.11 476 | 476::474.10 474.09::474.00 474.01 474.02 474.03 474.04 474.05 474.06 474.07 474.08 474.11 477 | 477::474.07 474.04 474.01::474.00 474.02 474.03 474.05 474.06 474.08 474.09 474.10 474.11 478 | 478::478.02 478.09 478.00 478.10 478.12::478.01 478.03 478.04 478.05 478.06 478.07 478.08 478.11 479 | 479::478.09 478.10::478.00 478.01 478.02 478.03 478.04 478.05 478.06 478.07 478.08 478.11 478.12 480 | 480::480.04 480.05 480.06 480.07 480.03::480.00 480.01 480.02 480.08 480.09 480.10 480.11 480.12 481 | 481::480.05 480.06 480.00 480.02::480.01 480.03 480.04 480.07 480.08 480.09 480.10 480.11 480.12 482 | 482::480.05 480.06 480.10 480.00 480.02::480.01 480.03 480.04 480.07 480.08 480.09 480.11 480.12 483 | 483::480.04 480.07 480.03::480.00 480.01 480.02 480.05 480.06 480.08 480.09 480.10 480.11 480.12 484 | 484::484.02 484.03 484.04 484.05 484.10::484.00 484.01 484.06 484.07 484.08 484.09 484.11 484.12 484.13 485 | 485::484.02::484.00 484.01 484.03 484.04 484.05 484.06 484.07 484.08 484.09 484.10 484.11 484.12 484.13 486 | 486::486.06 486.04 486.05 486.03::486.00 486.01 486.02 486.07 486.08 486.09 486.10 487 | 487::487.01::487.00 487.02 487.03 487.04 487.05 487.06 487.07 487.08 488 | 488::487.00 487.08::487.01 487.02 487.03 487.04 487.05 487.06 487.07 489 | 489::487.01 487.02 487.04 487.07 487.06 487.08::487.00 487.03 487.05 490 | 490::487.05 487.07::487.00 487.01 487.02 487.03 487.04 487.06 487.08 491 | 491::487.01 487.00 487.03 487.05 487.07::487.02 487.04 487.06 487.08 492 | 492::487.08 487.04::487.00 487.01 487.02 487.03 487.05 487.06 487.07 493 | 493::493.01::493.00 493.02 493.03 493.04 493.05 493.06 493.07 494 | 494::494.02::494.00 494.01 494.03 494.04 494.05 494.06 494.07 495 | 495::494.01 494.00 494.03 494.02 494.07::494.04 494.05 494.06 496 | 496::494.01 494.00 494.03 494.04 494.06::494.02 494.05 494.07 497 | 497::494.02 494.07::494.00 494.01 494.03 494.04 494.05 494.06 498 | 498::494.05 494.04 494.07::494.00 494.01 494.02 494.03 494.06 499 | 499::494.03 494.02 494.05 494.04 494.07::494.00 494.01 494.06 500 | 500::500.05::500.00 500.01 500.02 500.03 500.04 500.06 500.07 501 | 501::501.01::501.00 501.02 501.03 501.04 501.05 501.06 502 | -------------------------------------------------------------------------------- /data/load.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python2 2 | 3 | from collections import defaultdict, namedtuple 4 | import sexpdata 5 | 6 | Label = namedtuple("Label", ["nl", "lf"]) 7 | Entity = namedtuple("Entity", ["props"]) 8 | Scene = namedtuple("Scene", ["targets", "distractors"]) 9 | Dataset = namedtuple("Dataset", ["scenes", "labels", "attrs", "train_ids", "test_ids"]) 10 | 11 | def simplify(lf): 12 | if isinstance(lf, list): 13 | head = lf[0].value() 14 | if "The:" in head or "Every:" in head or "A:" in head: 15 | assert len(lf) == 2 16 | return simplify(lf[1]) 17 | if "lambda" in head: 18 | assert len(lf) == 3 19 | return simplify(lf[2]) 20 | if "shape:" in head: 21 | assert len(lf) == 3 22 | return lf[1].value() 23 | if "type:" in head: 24 | assert len(lf) == 3 25 | return lf[1].value() 26 | if "color:" in head: 27 | assert len(lf) == 3 28 | return lf[1].value() 29 | if "misc:" in head: 30 | return None 31 | if "equal:" in head: 32 | assert len(lf) == 3 33 | return simplify(lf[1]) 34 | if "plu:" in head or "sg:" in head or "cardinality:" in head: 35 | return None 36 | simp = [simplify(l) for l in lf] 37 | simp = [s for s in simp if s is not None] 38 | if simp[0] in ("and", "or") and len(simp) == 1: 39 | return None 40 | if simp[0] == "and" and len(simp) == 2: 41 | return simp[1] 42 | if simp[0] == "gminus" and len(simp) == 2: 43 | return ["not", simp[1]] 44 | if simp[0] == "gminus" and len(simp) == 3: 45 | simp = ["and", simp[2], ["not", simp[1]]] 46 | if simp[0] == "not" and len(simp) == 1: 47 | return None 48 | return simp 49 | 50 | val = lf.value() 51 | if "or:" in val: 52 | return "or" 53 | if "and:" in val: 54 | return "and" 55 | if "not:" in val: 56 | return "not" 57 | if "gminus:" in val: 58 | return "gminus" 59 | if "gplus:" in val: 60 | return "or" 61 | if isinstance(lf, sexpdata.Symbol): 62 | return None 63 | 64 | return lf 65 | 66 | 67 | def load_genx(): 68 | labels = defaultdict(list) 69 | counter = 0 70 | train_ids = set() 71 | test_ids = set() 72 | for name, path in [ 73 | ("train", "data/genx/labelling/all/LABELED_TRAINING.txt"), 74 | ("test", "data/genx/labelling/all/heldout.labeled.NOBAD.txt")]: 75 | with open(path) as label_f: 76 | lines = label_f.readlines() 77 | for i in range(0, len(lines), 4): 78 | sent, lf_str, ex_id, _ = lines[i:i+4] 79 | sent = sent.strip().split() 80 | ex_id = int(ex_id) 81 | lf = sexpdata.loads(lf_str) 82 | lf = simplify(lf) 83 | if lf is None: 84 | print "warning: unable to parse", lf_str 85 | continue 86 | labels[ex_id].append(Label(sent, lf)) 87 | counter += 1 88 | 89 | if name == "train": 90 | train_ids.add(ex_id) 91 | else: 92 | test_ids.add(ex_id) 93 | 94 | assert len(train_ids & test_ids) == 0 95 | train_ids = sorted(train_ids) 96 | test_ids = sorted(test_ids) 97 | 98 | all_attrs = {} 99 | entities = {} 100 | with open("data/genx/state/Attributes.tsv") as ent_f: 101 | for line in ent_f: 102 | ent_id, attrs = line.strip().split("\t") 103 | attrs = set(attrs.split(",")) 104 | for attr in attrs: 105 | if attr not in all_attrs: 106 | all_attrs[attr] = len(all_attrs) 107 | entities[ent_id] = Entity(attrs) 108 | 109 | scenes = {} 110 | with open("data/genx/state/SceneIndex.txt") as scene_f: 111 | for line in scene_f: 112 | ex_id, target_ids, distractor_ids = line.strip().split("::") 113 | ex_id = int(ex_id) 114 | target_ids = target_ids.split() 115 | distractor_ids = distractor_ids.split() 116 | targets = [entities[i] for i in target_ids] 117 | distractors = [entities[i] for i in distractor_ids] 118 | scenes[ex_id] = Scene(targets, distractors) 119 | 120 | return Dataset(scenes, dict(labels), all_attrs, train_ids, test_ids) 121 | -------------------------------------------------------------------------------- /logic.py: -------------------------------------------------------------------------------- 1 | from data.load import Entity 2 | import numpy as np 3 | 4 | #def flatten(lol): 5 | # if not isinstance(lol, tuple): 6 | # return lol 7 | # out = [] 8 | # for l in lol: 9 | # out.append(flatten(l)) 10 | # return out 11 | 12 | def tokens(lol): 13 | if isinstance(lol, str): 14 | return [lol] 15 | elif isinstance(lol, list): 16 | out = [] 17 | for l in lol: 18 | out += tokens(l) 19 | return out 20 | else: 21 | assert False 22 | 23 | def enumerate_lfs(max_depth, dataset): 24 | if max_depth == 0: 25 | return 26 | for attr in dataset.attrs: 27 | yield attr 28 | for out in enumerate_lfs(max_depth-1, dataset): 29 | yield ("not", out) 30 | for op in ("and", "or"): 31 | for out1 in enumerate_lfs(max_depth-1, dataset): 32 | for out2 in enumerate_lfs(max_depth-1, dataset): 33 | if out1 != out2: 34 | yield (op, out1, out2) 35 | 36 | def eval_lf(thing, lf, dataset): 37 | if not np.any(thing): 38 | return False 39 | assert isinstance(lf, str) or isinstance(lf, list) or isinstance(lf, tuple) 40 | if isinstance(lf, str) and isinstance(thing, Entity): 41 | return lf in thing.props 42 | elif isinstance(lf, str) and isinstance(thing, np.ndarray): 43 | return thing[dataset.attrs[lf]] == 1 44 | elif lf[0] == "not": 45 | return not eval_lf(thing, lf[1], dataset) 46 | elif lf[0] == "and": 47 | return all(eval_lf(thing, l, dataset) for l in lf[1:]) 48 | elif lf[0] == "or": 49 | return any(eval_lf(thing, l, dataset) for l in lf[1:]) 50 | 51 | def explain_env(env, label, lfs, dataset): 52 | valid = [] 53 | for lf in lfs: 54 | ok = True 55 | for i in range(env.shape[0]): 56 | if not any(env[i]): 57 | continue 58 | ev = 1 if eval_lf(env[i], lf, dataset) else 0 59 | if ev != label[i]: 60 | ok = False 61 | break 62 | if ok: 63 | valid.append(lf) 64 | return min(valid, key=lambda x: 1 if isinstance(x, int) else len(_flatten(x))) 65 | 66 | def pp(lf): 67 | if isinstance(lf, str): 68 | return lf 69 | return "(" + " ".join([pp(l) for l in lf]) + ")" 70 | -------------------------------------------------------------------------------- /net.py: -------------------------------------------------------------------------------- 1 | import tensorflow as tf 2 | 3 | INIT_SCALE = 1.47 4 | 5 | def linear(t_in, n_out): 6 | if len(t_in.get_shape()) == 2: 7 | op = "ij,jk->ik" 8 | elif len(t_in.get_shape()) == 3: 9 | op = "ijk,kl->ijl" 10 | else: 11 | assert False 12 | v_w = tf.get_variable( 13 | "w", 14 | shape=(t_in.get_shape()[-1], n_out), 15 | initializer=tf.uniform_unit_scaling_initializer( 16 | factor=INIT_SCALE)) 17 | v_b = tf.get_variable( 18 | "b", 19 | shape=n_out, 20 | initializer=tf.constant_initializer(0)) 21 | return tf.einsum(op, t_in, v_w) + v_b 22 | 23 | def embed(t_in, n_embeddings, n_out): 24 | v = tf.get_variable( 25 | "embed", shape=(n_embeddings, n_out), 26 | initializer=tf.uniform_unit_scaling_initializer()) 27 | t_embed = tf.nn.embedding_lookup(v, t_in) 28 | return t_embed 29 | 30 | 31 | def mlp(t_in, widths, activations): 32 | assert len(widths) == len(activations) 33 | prev_width = t_in.get_shape()[1] 34 | prev_layer = t_in 35 | for i_layer, (width, act) in enumerate(zip(widths, activations)): 36 | with tf.variable_scope(str(i_layer)): 37 | layer = linear(prev_layer, width) 38 | if act is not None: 39 | layer = act(layer) 40 | prev_layer = layer 41 | prev_width = width 42 | return prev_layer 43 | --------------------------------------------------------------------------------