File size: 36,838 Bytes
69a4aea 8e6e428 28a6dc2 8e6e428 d9ead82 1afe1f0 2ce26c8 66206fa 2ce26c8 a1b00b2 2ce26c8 66206fa 8e6e428 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 |
---
annotations_creators:
- crowdsourced
license: cc-by-nc-sa-4.0
size_categories:
- 10K<n<100K
task_categories:
- image-classification
- image-feature-extraction
pretty_name: Galaxy Zoo DESI
arxiv: 2404.02973
tags:
- galaxy zoo
- physics
- astronomy
- galaxies
- citizen science
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: test
path: data/test-*
- config_name: tiny
data_files:
- split: train
path: tiny/train-*
- split: test
path: tiny/test-*
dataset_info:
- config_name: default
features:
- name: image
dtype: image
- name: id_str
dtype: string
- name: dataset_name
dtype: string
- name: ra
dtype: float64
- name: dec
dtype: float64
- name: smooth-or-featured-dr12_smooth
dtype: int32
- name: smooth-or-featured-dr12_smooth_fraction
dtype: float32
- name: smooth-or-featured-dr12_total-votes
dtype: int32
- name: smooth-or-featured-dr12_featured-or-disk
dtype: int32
- name: smooth-or-featured-dr12_featured-or-disk_fraction
dtype: float32
- name: smooth-or-featured-dr12_artifact
dtype: int32
- name: smooth-or-featured-dr12_artifact_fraction
dtype: float32
- name: disk-edge-on-dr12_yes
dtype: int32
- name: disk-edge-on-dr12_yes_fraction
dtype: float32
- name: disk-edge-on-dr12_total-votes
dtype: int32
- name: disk-edge-on-dr12_no
dtype: int32
- name: disk-edge-on-dr12_no_fraction
dtype: float32
- name: has-spiral-arms-dr12_yes
dtype: int32
- name: has-spiral-arms-dr12_yes_fraction
dtype: float32
- name: has-spiral-arms-dr12_total-votes
dtype: int32
- name: has-spiral-arms-dr12_no
dtype: int32
- name: has-spiral-arms-dr12_no_fraction
dtype: float32
- name: bar-dr12_yes
dtype: int32
- name: bar-dr12_yes_fraction
dtype: float32
- name: bar-dr12_total-votes
dtype: int32
- name: bar-dr12_no
dtype: int32
- name: bar-dr12_no_fraction
dtype: float32
- name: bulge-size-dr12_dominant
dtype: int32
- name: bulge-size-dr12_dominant_fraction
dtype: float32
- name: bulge-size-dr12_total-votes
dtype: int32
- name: bulge-size-dr12_obvious
dtype: int32
- name: bulge-size-dr12_obvious_fraction
dtype: float32
- name: bulge-size-dr12_none
dtype: int32
- name: bulge-size-dr12_none_fraction
dtype: float32
- name: how-rounded-dr12_completely
dtype: int32
- name: how-rounded-dr12_completely_fraction
dtype: float32
- name: how-rounded-dr12_total-votes
dtype: int32
- name: how-rounded-dr12_in-between
dtype: int32
- name: how-rounded-dr12_in-between_fraction
dtype: float32
- name: how-rounded-dr12_cigar-shaped
dtype: int32
- name: how-rounded-dr12_cigar-shaped_fraction
dtype: float32
- name: edge-on-bulge-dr12_boxy
dtype: int32
- name: edge-on-bulge-dr12_boxy_fraction
dtype: float32
- name: edge-on-bulge-dr12_total-votes
dtype: int32
- name: edge-on-bulge-dr12_none
dtype: int32
- name: edge-on-bulge-dr12_none_fraction
dtype: float32
- name: edge-on-bulge-dr12_rounded
dtype: int32
- name: edge-on-bulge-dr12_rounded_fraction
dtype: float32
- name: spiral-winding-dr12_tight
dtype: int32
- name: spiral-winding-dr12_tight_fraction
dtype: float32
- name: spiral-winding-dr12_total-votes
dtype: int32
- name: spiral-winding-dr12_medium
dtype: int32
- name: spiral-winding-dr12_medium_fraction
dtype: float32
- name: spiral-winding-dr12_loose
dtype: int32
- name: spiral-winding-dr12_loose_fraction
dtype: float32
- name: spiral-arm-count-dr12_1
dtype: int32
- name: spiral-arm-count-dr12_1_fraction
dtype: float32
- name: spiral-arm-count-dr12_total-votes
dtype: int32
- name: spiral-arm-count-dr12_2
dtype: int32
- name: spiral-arm-count-dr12_2_fraction
dtype: float32
- name: spiral-arm-count-dr12_3
dtype: int32
- name: spiral-arm-count-dr12_3_fraction
dtype: float32
- name: spiral-arm-count-dr12_4
dtype: int32
- name: spiral-arm-count-dr12_4_fraction
dtype: float32
- name: spiral-arm-count-dr12_more-than-4
dtype: int32
- name: spiral-arm-count-dr12_more-than-4_fraction
dtype: float32
- name: merging-dr12_neither
dtype: int32
- name: merging-dr12_neither_fraction
dtype: float32
- name: merging-dr12_total-votes
dtype: int32
- name: merging-dr12_tidal-debris
dtype: int32
- name: merging-dr12_tidal-debris_fraction
dtype: float32
- name: merging-dr12_both
dtype: int32
- name: merging-dr12_both_fraction
dtype: float32
- name: merging-dr12_merger
dtype: int32
- name: merging-dr12_merger_fraction
dtype: float32
- name: smooth-or-featured-dr5_smooth
dtype: int32
- name: smooth-or-featured-dr5_smooth_fraction
dtype: float32
- name: smooth-or-featured-dr5_total-votes
dtype: int32
- name: smooth-or-featured-dr5_featured-or-disk
dtype: int32
- name: smooth-or-featured-dr5_featured-or-disk_fraction
dtype: float32
- name: smooth-or-featured-dr5_artifact
dtype: int32
- name: smooth-or-featured-dr5_artifact_fraction
dtype: float32
- name: disk-edge-on-dr5_yes
dtype: int32
- name: disk-edge-on-dr5_yes_fraction
dtype: float32
- name: disk-edge-on-dr5_total-votes
dtype: int32
- name: disk-edge-on-dr5_no
dtype: int32
- name: disk-edge-on-dr5_no_fraction
dtype: float32
- name: has-spiral-arms-dr5_yes
dtype: int32
- name: has-spiral-arms-dr5_yes_fraction
dtype: float32
- name: has-spiral-arms-dr5_total-votes
dtype: int32
- name: has-spiral-arms-dr5_no
dtype: int32
- name: has-spiral-arms-dr5_no_fraction
dtype: float32
- name: bar-dr5_strong
dtype: int32
- name: bar-dr5_strong_fraction
dtype: float32
- name: bar-dr5_total-votes
dtype: int32
- name: bar-dr5_weak
dtype: int32
- name: bar-dr5_weak_fraction
dtype: float32
- name: bar-dr5_no
dtype: int32
- name: bar-dr5_no_fraction
dtype: float32
- name: bulge-size-dr5_dominant
dtype: int32
- name: bulge-size-dr5_dominant_fraction
dtype: float32
- name: bulge-size-dr5_total-votes
dtype: int32
- name: bulge-size-dr5_large
dtype: int32
- name: bulge-size-dr5_large_fraction
dtype: float32
- name: bulge-size-dr5_moderate
dtype: int32
- name: bulge-size-dr5_moderate_fraction
dtype: float32
- name: bulge-size-dr5_small
dtype: int32
- name: bulge-size-dr5_small_fraction
dtype: float32
- name: bulge-size-dr5_none
dtype: int32
- name: bulge-size-dr5_none_fraction
dtype: float32
- name: how-rounded-dr5_round
dtype: int32
- name: how-rounded-dr5_round_fraction
dtype: float32
- name: how-rounded-dr5_total-votes
dtype: int32
- name: how-rounded-dr5_in-between
dtype: int32
- name: how-rounded-dr5_in-between_fraction
dtype: float32
- name: how-rounded-dr5_cigar-shaped
dtype: int32
- name: how-rounded-dr5_cigar-shaped_fraction
dtype: float32
- name: edge-on-bulge-dr5_boxy
dtype: int32
- name: edge-on-bulge-dr5_boxy_fraction
dtype: float32
- name: edge-on-bulge-dr5_total-votes
dtype: int32
- name: edge-on-bulge-dr5_none
dtype: int32
- name: edge-on-bulge-dr5_none_fraction
dtype: float32
- name: edge-on-bulge-dr5_rounded
dtype: int32
- name: edge-on-bulge-dr5_rounded_fraction
dtype: float32
- name: spiral-winding-dr5_tight
dtype: int32
- name: spiral-winding-dr5_tight_fraction
dtype: float32
- name: spiral-winding-dr5_total-votes
dtype: int32
- name: spiral-winding-dr5_medium
dtype: int32
- name: spiral-winding-dr5_medium_fraction
dtype: float32
- name: spiral-winding-dr5_loose
dtype: int32
- name: spiral-winding-dr5_loose_fraction
dtype: float32
- name: spiral-arm-count-dr5_1
dtype: int32
- name: spiral-arm-count-dr5_1_fraction
dtype: float32
- name: spiral-arm-count-dr5_total-votes
dtype: int32
- name: spiral-arm-count-dr5_2
dtype: int32
- name: spiral-arm-count-dr5_2_fraction
dtype: float32
- name: spiral-arm-count-dr5_3
dtype: int32
- name: spiral-arm-count-dr5_3_fraction
dtype: float32
- name: spiral-arm-count-dr5_4
dtype: int32
- name: spiral-arm-count-dr5_4_fraction
dtype: float32
- name: spiral-arm-count-dr5_more-than-4
dtype: int32
- name: spiral-arm-count-dr5_more-than-4_fraction
dtype: float32
- name: spiral-arm-count-dr5_cant-tell
dtype: int32
- name: spiral-arm-count-dr5_cant-tell_fraction
dtype: float32
- name: merging-dr5_none
dtype: int32
- name: merging-dr5_none_fraction
dtype: float32
- name: merging-dr5_total-votes
dtype: int32
- name: merging-dr5_minor-disturbance
dtype: int32
- name: merging-dr5_minor-disturbance_fraction
dtype: float32
- name: merging-dr5_major-disturbance
dtype: int32
- name: merging-dr5_major-disturbance_fraction
dtype: float32
- name: merging-dr5_merger
dtype: int32
- name: merging-dr5_merger_fraction
dtype: float32
- name: smooth-or-featured-dr8_smooth
dtype: int32
- name: smooth-or-featured-dr8_smooth_fraction
dtype: float32
- name: smooth-or-featured-dr8_total-votes
dtype: int32
- name: smooth-or-featured-dr8_featured-or-disk
dtype: int32
- name: smooth-or-featured-dr8_featured-or-disk_fraction
dtype: float32
- name: smooth-or-featured-dr8_artifact
dtype: int32
- name: smooth-or-featured-dr8_artifact_fraction
dtype: float32
- name: disk-edge-on-dr8_yes
dtype: int32
- name: disk-edge-on-dr8_yes_fraction
dtype: float32
- name: disk-edge-on-dr8_total-votes
dtype: int32
- name: disk-edge-on-dr8_no
dtype: int32
- name: disk-edge-on-dr8_no_fraction
dtype: float32
- name: has-spiral-arms-dr8_yes
dtype: int32
- name: has-spiral-arms-dr8_yes_fraction
dtype: float32
- name: has-spiral-arms-dr8_total-votes
dtype: int32
- name: has-spiral-arms-dr8_no
dtype: int32
- name: has-spiral-arms-dr8_no_fraction
dtype: float32
- name: bar-dr8_strong
dtype: int32
- name: bar-dr8_strong_fraction
dtype: float32
- name: bar-dr8_total-votes
dtype: int32
- name: bar-dr8_weak
dtype: int32
- name: bar-dr8_weak_fraction
dtype: float32
- name: bar-dr8_no
dtype: int32
- name: bar-dr8_no_fraction
dtype: float32
- name: bulge-size-dr8_dominant
dtype: int32
- name: bulge-size-dr8_dominant_fraction
dtype: float32
- name: bulge-size-dr8_total-votes
dtype: int32
- name: bulge-size-dr8_large
dtype: int32
- name: bulge-size-dr8_large_fraction
dtype: float32
- name: bulge-size-dr8_moderate
dtype: int32
- name: bulge-size-dr8_moderate_fraction
dtype: float32
- name: bulge-size-dr8_small
dtype: int32
- name: bulge-size-dr8_small_fraction
dtype: float32
- name: bulge-size-dr8_none
dtype: int32
- name: bulge-size-dr8_none_fraction
dtype: float32
- name: how-rounded-dr8_round
dtype: int32
- name: how-rounded-dr8_round_fraction
dtype: float32
- name: how-rounded-dr8_total-votes
dtype: int32
- name: how-rounded-dr8_in-between
dtype: int32
- name: how-rounded-dr8_in-between_fraction
dtype: float32
- name: how-rounded-dr8_cigar-shaped
dtype: int32
- name: how-rounded-dr8_cigar-shaped_fraction
dtype: float32
- name: edge-on-bulge-dr8_boxy
dtype: int32
- name: edge-on-bulge-dr8_boxy_fraction
dtype: float32
- name: edge-on-bulge-dr8_total-votes
dtype: int32
- name: edge-on-bulge-dr8_none
dtype: int32
- name: edge-on-bulge-dr8_none_fraction
dtype: float32
- name: edge-on-bulge-dr8_rounded
dtype: int32
- name: edge-on-bulge-dr8_rounded_fraction
dtype: float32
- name: spiral-winding-dr8_tight
dtype: int32
- name: spiral-winding-dr8_tight_fraction
dtype: float32
- name: spiral-winding-dr8_total-votes
dtype: int32
- name: spiral-winding-dr8_medium
dtype: int32
- name: spiral-winding-dr8_medium_fraction
dtype: float32
- name: spiral-winding-dr8_loose
dtype: int32
- name: spiral-winding-dr8_loose_fraction
dtype: float32
- name: spiral-arm-count-dr8_1
dtype: int32
- name: spiral-arm-count-dr8_1_fraction
dtype: float32
- name: spiral-arm-count-dr8_total-votes
dtype: int32
- name: spiral-arm-count-dr8_2
dtype: int32
- name: spiral-arm-count-dr8_2_fraction
dtype: float32
- name: spiral-arm-count-dr8_3
dtype: int32
- name: spiral-arm-count-dr8_3_fraction
dtype: float32
- name: spiral-arm-count-dr8_4
dtype: int32
- name: spiral-arm-count-dr8_4_fraction
dtype: float32
- name: spiral-arm-count-dr8_more-than-4
dtype: int32
- name: spiral-arm-count-dr8_more-than-4_fraction
dtype: float32
- name: spiral-arm-count-dr8_cant-tell
dtype: int32
- name: spiral-arm-count-dr8_cant-tell_fraction
dtype: float32
- name: merging-dr8_none
dtype: int32
- name: merging-dr8_none_fraction
dtype: float32
- name: merging-dr8_total-votes
dtype: int32
- name: merging-dr8_minor-disturbance
dtype: int32
- name: merging-dr8_minor-disturbance_fraction
dtype: float32
- name: merging-dr8_major-disturbance
dtype: int32
- name: merging-dr8_major-disturbance_fraction
dtype: float32
- name: merging-dr8_merger
dtype: int32
- name: merging-dr8_merger_fraction
dtype: float32
- name: summary
dtype: string
splits:
- name: train
num_bytes: 13952475705.51
num_examples: 319530
download_size: 13995338725
dataset_size: 13952475705.51
- config_name: tiny
features:
- name: image
dtype: image
- name: id_str
dtype: string
- name: dataset_name
dtype: string
- name: ra
dtype: float64
- name: dec
dtype: float64
- name: smooth-or-featured-dr12_smooth
dtype: int32
- name: smooth-or-featured-dr12_smooth_fraction
dtype: float32
- name: smooth-or-featured-dr12_total-votes
dtype: int32
- name: smooth-or-featured-dr12_featured-or-disk
dtype: int32
- name: smooth-or-featured-dr12_featured-or-disk_fraction
dtype: float32
- name: smooth-or-featured-dr12_artifact
dtype: int32
- name: smooth-or-featured-dr12_artifact_fraction
dtype: float32
- name: disk-edge-on-dr12_yes
dtype: int32
- name: disk-edge-on-dr12_yes_fraction
dtype: float32
- name: disk-edge-on-dr12_total-votes
dtype: int32
- name: disk-edge-on-dr12_no
dtype: int32
- name: disk-edge-on-dr12_no_fraction
dtype: float32
- name: has-spiral-arms-dr12_yes
dtype: int32
- name: has-spiral-arms-dr12_yes_fraction
dtype: float32
- name: has-spiral-arms-dr12_total-votes
dtype: int32
- name: has-spiral-arms-dr12_no
dtype: int32
- name: has-spiral-arms-dr12_no_fraction
dtype: float32
- name: bar-dr12_yes
dtype: int32
- name: bar-dr12_yes_fraction
dtype: float32
- name: bar-dr12_total-votes
dtype: int32
- name: bar-dr12_no
dtype: int32
- name: bar-dr12_no_fraction
dtype: float32
- name: bulge-size-dr12_dominant
dtype: int32
- name: bulge-size-dr12_dominant_fraction
dtype: float32
- name: bulge-size-dr12_total-votes
dtype: int32
- name: bulge-size-dr12_obvious
dtype: int32
- name: bulge-size-dr12_obvious_fraction
dtype: float32
- name: bulge-size-dr12_none
dtype: int32
- name: bulge-size-dr12_none_fraction
dtype: float32
- name: how-rounded-dr12_completely
dtype: int32
- name: how-rounded-dr12_completely_fraction
dtype: float32
- name: how-rounded-dr12_total-votes
dtype: int32
- name: how-rounded-dr12_in-between
dtype: int32
- name: how-rounded-dr12_in-between_fraction
dtype: float32
- name: how-rounded-dr12_cigar-shaped
dtype: int32
- name: how-rounded-dr12_cigar-shaped_fraction
dtype: float32
- name: edge-on-bulge-dr12_boxy
dtype: int32
- name: edge-on-bulge-dr12_boxy_fraction
dtype: float32
- name: edge-on-bulge-dr12_total-votes
dtype: int32
- name: edge-on-bulge-dr12_none
dtype: int32
- name: edge-on-bulge-dr12_none_fraction
dtype: float32
- name: edge-on-bulge-dr12_rounded
dtype: int32
- name: edge-on-bulge-dr12_rounded_fraction
dtype: float32
- name: spiral-winding-dr12_tight
dtype: int32
- name: spiral-winding-dr12_tight_fraction
dtype: float32
- name: spiral-winding-dr12_total-votes
dtype: int32
- name: spiral-winding-dr12_medium
dtype: int32
- name: spiral-winding-dr12_medium_fraction
dtype: float32
- name: spiral-winding-dr12_loose
dtype: int32
- name: spiral-winding-dr12_loose_fraction
dtype: float32
- name: spiral-arm-count-dr12_1
dtype: int32
- name: spiral-arm-count-dr12_1_fraction
dtype: float32
- name: spiral-arm-count-dr12_total-votes
dtype: int32
- name: spiral-arm-count-dr12_2
dtype: int32
- name: spiral-arm-count-dr12_2_fraction
dtype: float32
- name: spiral-arm-count-dr12_3
dtype: int32
- name: spiral-arm-count-dr12_3_fraction
dtype: float32
- name: spiral-arm-count-dr12_4
dtype: int32
- name: spiral-arm-count-dr12_4_fraction
dtype: float32
- name: spiral-arm-count-dr12_more-than-4
dtype: int32
- name: spiral-arm-count-dr12_more-than-4_fraction
dtype: float32
- name: merging-dr12_neither
dtype: int32
- name: merging-dr12_neither_fraction
dtype: float32
- name: merging-dr12_total-votes
dtype: int32
- name: merging-dr12_tidal-debris
dtype: int32
- name: merging-dr12_tidal-debris_fraction
dtype: float32
- name: merging-dr12_both
dtype: int32
- name: merging-dr12_both_fraction
dtype: float32
- name: merging-dr12_merger
dtype: int32
- name: merging-dr12_merger_fraction
dtype: float32
- name: smooth-or-featured-dr5_smooth
dtype: int32
- name: smooth-or-featured-dr5_smooth_fraction
dtype: float32
- name: smooth-or-featured-dr5_total-votes
dtype: int32
- name: smooth-or-featured-dr5_featured-or-disk
dtype: int32
- name: smooth-or-featured-dr5_featured-or-disk_fraction
dtype: float32
- name: smooth-or-featured-dr5_artifact
dtype: int32
- name: smooth-or-featured-dr5_artifact_fraction
dtype: float32
- name: disk-edge-on-dr5_yes
dtype: int32
- name: disk-edge-on-dr5_yes_fraction
dtype: float32
- name: disk-edge-on-dr5_total-votes
dtype: int32
- name: disk-edge-on-dr5_no
dtype: int32
- name: disk-edge-on-dr5_no_fraction
dtype: float32
- name: has-spiral-arms-dr5_yes
dtype: int32
- name: has-spiral-arms-dr5_yes_fraction
dtype: float32
- name: has-spiral-arms-dr5_total-votes
dtype: int32
- name: has-spiral-arms-dr5_no
dtype: int32
- name: has-spiral-arms-dr5_no_fraction
dtype: float32
- name: bar-dr5_strong
dtype: int32
- name: bar-dr5_strong_fraction
dtype: float32
- name: bar-dr5_total-votes
dtype: int32
- name: bar-dr5_weak
dtype: int32
- name: bar-dr5_weak_fraction
dtype: float32
- name: bar-dr5_no
dtype: int32
- name: bar-dr5_no_fraction
dtype: float32
- name: bulge-size-dr5_dominant
dtype: int32
- name: bulge-size-dr5_dominant_fraction
dtype: float32
- name: bulge-size-dr5_total-votes
dtype: int32
- name: bulge-size-dr5_large
dtype: int32
- name: bulge-size-dr5_large_fraction
dtype: float32
- name: bulge-size-dr5_moderate
dtype: int32
- name: bulge-size-dr5_moderate_fraction
dtype: float32
- name: bulge-size-dr5_small
dtype: int32
- name: bulge-size-dr5_small_fraction
dtype: float32
- name: bulge-size-dr5_none
dtype: int32
- name: bulge-size-dr5_none_fraction
dtype: float32
- name: how-rounded-dr5_round
dtype: int32
- name: how-rounded-dr5_round_fraction
dtype: float32
- name: how-rounded-dr5_total-votes
dtype: int32
- name: how-rounded-dr5_in-between
dtype: int32
- name: how-rounded-dr5_in-between_fraction
dtype: float32
- name: how-rounded-dr5_cigar-shaped
dtype: int32
- name: how-rounded-dr5_cigar-shaped_fraction
dtype: float32
- name: edge-on-bulge-dr5_boxy
dtype: int32
- name: edge-on-bulge-dr5_boxy_fraction
dtype: float32
- name: edge-on-bulge-dr5_total-votes
dtype: int32
- name: edge-on-bulge-dr5_none
dtype: int32
- name: edge-on-bulge-dr5_none_fraction
dtype: float32
- name: edge-on-bulge-dr5_rounded
dtype: int32
- name: edge-on-bulge-dr5_rounded_fraction
dtype: float32
- name: spiral-winding-dr5_tight
dtype: int32
- name: spiral-winding-dr5_tight_fraction
dtype: float32
- name: spiral-winding-dr5_total-votes
dtype: int32
- name: spiral-winding-dr5_medium
dtype: int32
- name: spiral-winding-dr5_medium_fraction
dtype: float32
- name: spiral-winding-dr5_loose
dtype: int32
- name: spiral-winding-dr5_loose_fraction
dtype: float32
- name: spiral-arm-count-dr5_1
dtype: int32
- name: spiral-arm-count-dr5_1_fraction
dtype: float32
- name: spiral-arm-count-dr5_total-votes
dtype: int32
- name: spiral-arm-count-dr5_2
dtype: int32
- name: spiral-arm-count-dr5_2_fraction
dtype: float32
- name: spiral-arm-count-dr5_3
dtype: int32
- name: spiral-arm-count-dr5_3_fraction
dtype: float32
- name: spiral-arm-count-dr5_4
dtype: int32
- name: spiral-arm-count-dr5_4_fraction
dtype: float32
- name: spiral-arm-count-dr5_more-than-4
dtype: int32
- name: spiral-arm-count-dr5_more-than-4_fraction
dtype: float32
- name: spiral-arm-count-dr5_cant-tell
dtype: int32
- name: spiral-arm-count-dr5_cant-tell_fraction
dtype: float32
- name: merging-dr5_none
dtype: int32
- name: merging-dr5_none_fraction
dtype: float32
- name: merging-dr5_total-votes
dtype: int32
- name: merging-dr5_minor-disturbance
dtype: int32
- name: merging-dr5_minor-disturbance_fraction
dtype: float32
- name: merging-dr5_major-disturbance
dtype: int32
- name: merging-dr5_major-disturbance_fraction
dtype: float32
- name: merging-dr5_merger
dtype: int32
- name: merging-dr5_merger_fraction
dtype: float32
- name: smooth-or-featured-dr8_smooth
dtype: int32
- name: smooth-or-featured-dr8_smooth_fraction
dtype: float32
- name: smooth-or-featured-dr8_total-votes
dtype: int32
- name: smooth-or-featured-dr8_featured-or-disk
dtype: int32
- name: smooth-or-featured-dr8_featured-or-disk_fraction
dtype: float32
- name: smooth-or-featured-dr8_artifact
dtype: int32
- name: smooth-or-featured-dr8_artifact_fraction
dtype: float32
- name: disk-edge-on-dr8_yes
dtype: int32
- name: disk-edge-on-dr8_yes_fraction
dtype: float32
- name: disk-edge-on-dr8_total-votes
dtype: int32
- name: disk-edge-on-dr8_no
dtype: int32
- name: disk-edge-on-dr8_no_fraction
dtype: float32
- name: has-spiral-arms-dr8_yes
dtype: int32
- name: has-spiral-arms-dr8_yes_fraction
dtype: float32
- name: has-spiral-arms-dr8_total-votes
dtype: int32
- name: has-spiral-arms-dr8_no
dtype: int32
- name: has-spiral-arms-dr8_no_fraction
dtype: float32
- name: bar-dr8_strong
dtype: int32
- name: bar-dr8_strong_fraction
dtype: float32
- name: bar-dr8_total-votes
dtype: int32
- name: bar-dr8_weak
dtype: int32
- name: bar-dr8_weak_fraction
dtype: float32
- name: bar-dr8_no
dtype: int32
- name: bar-dr8_no_fraction
dtype: float32
- name: bulge-size-dr8_dominant
dtype: int32
- name: bulge-size-dr8_dominant_fraction
dtype: float32
- name: bulge-size-dr8_total-votes
dtype: int32
- name: bulge-size-dr8_large
dtype: int32
- name: bulge-size-dr8_large_fraction
dtype: float32
- name: bulge-size-dr8_moderate
dtype: int32
- name: bulge-size-dr8_moderate_fraction
dtype: float32
- name: bulge-size-dr8_small
dtype: int32
- name: bulge-size-dr8_small_fraction
dtype: float32
- name: bulge-size-dr8_none
dtype: int32
- name: bulge-size-dr8_none_fraction
dtype: float32
- name: how-rounded-dr8_round
dtype: int32
- name: how-rounded-dr8_round_fraction
dtype: float32
- name: how-rounded-dr8_total-votes
dtype: int32
- name: how-rounded-dr8_in-between
dtype: int32
- name: how-rounded-dr8_in-between_fraction
dtype: float32
- name: how-rounded-dr8_cigar-shaped
dtype: int32
- name: how-rounded-dr8_cigar-shaped_fraction
dtype: float32
- name: edge-on-bulge-dr8_boxy
dtype: int32
- name: edge-on-bulge-dr8_boxy_fraction
dtype: float32
- name: edge-on-bulge-dr8_total-votes
dtype: int32
- name: edge-on-bulge-dr8_none
dtype: int32
- name: edge-on-bulge-dr8_none_fraction
dtype: float32
- name: edge-on-bulge-dr8_rounded
dtype: int32
- name: edge-on-bulge-dr8_rounded_fraction
dtype: float32
- name: spiral-winding-dr8_tight
dtype: int32
- name: spiral-winding-dr8_tight_fraction
dtype: float32
- name: spiral-winding-dr8_total-votes
dtype: int32
- name: spiral-winding-dr8_medium
dtype: int32
- name: spiral-winding-dr8_medium_fraction
dtype: float32
- name: spiral-winding-dr8_loose
dtype: int32
- name: spiral-winding-dr8_loose_fraction
dtype: float32
- name: spiral-arm-count-dr8_1
dtype: int32
- name: spiral-arm-count-dr8_1_fraction
dtype: float32
- name: spiral-arm-count-dr8_total-votes
dtype: int32
- name: spiral-arm-count-dr8_2
dtype: int32
- name: spiral-arm-count-dr8_2_fraction
dtype: float32
- name: spiral-arm-count-dr8_3
dtype: int32
- name: spiral-arm-count-dr8_3_fraction
dtype: float32
- name: spiral-arm-count-dr8_4
dtype: int32
- name: spiral-arm-count-dr8_4_fraction
dtype: float32
- name: spiral-arm-count-dr8_more-than-4
dtype: int32
- name: spiral-arm-count-dr8_more-than-4_fraction
dtype: float32
- name: spiral-arm-count-dr8_cant-tell
dtype: int32
- name: spiral-arm-count-dr8_cant-tell_fraction
dtype: float32
- name: merging-dr8_none
dtype: int32
- name: merging-dr8_none_fraction
dtype: float32
- name: merging-dr8_total-votes
dtype: int32
- name: merging-dr8_minor-disturbance
dtype: int32
- name: merging-dr8_minor-disturbance_fraction
dtype: float32
- name: merging-dr8_major-disturbance
dtype: int32
- name: merging-dr8_major-disturbance_fraction
dtype: float32
- name: merging-dr8_merger
dtype: int32
- name: merging-dr8_merger_fraction
dtype: float32
- name: summary
dtype: string
splits:
- name: train
num_bytes: 140274700.385
num_examples: 3195
- name: test
num_bytes: 35024622.0
num_examples: 798
download_size: 174924356
dataset_size: 175299322.385
---
# GZ Campaign Datasets
## Dataset Summary
[Galaxy Zoo](www.galaxyzoo.org) volunteers label telescope images of galaxies according to their visible features: spiral arms, galaxy-galaxy collisions, and so on.
These datasets share the galaxy images and volunteer labels in a machine-learning-friendly format. We use these datasets to train [our foundation models](https://arxiv.org/abs/2404.02973). We hope they'll help you too.
- **Curated by:** [Mike Walmsley](https://walmsley.dev/)
- **License:** [cc-by-nc-sa-4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en). We specifically require **all models trained on these datasets to be released as source code by publication**.
## Downloading
Install the Datasets library
pip install datasets
and then log in to your HuggingFace account
huggingface-cli login
All unpublished* datasets are temporarily "gated" i.e. you must have requested and been approved for access. Galaxy Zoo team members should go to https://huggingface.co/mwalmsley/datasets/gz_desi, click "request access", ping Mike, then wait for approval.
Gating will be removed on publication.
*Currently: the `gz_h2o` and `gz_ukidss` datasets
## Usage
```python
from datasets import load_dataset
# . split='train' picks which split to load
dataset = load_dataset(
'mwalmsley/gz_desi', # each dataset has a random fixed train/test split
split='train'
# some datasets also allow name=subset (e.g. name="tiny" for gz_evo). see the viewer for subset options
)
dataset.set_format('torch') # your framework of choice e.g. numpy, tensorflow, jax, etc
print(dataset_name, dataset[0]['image'].shape)
```
Then use the `dataset` object as with any other HuggingFace dataset, e.g.,
```python
from torch.utils.data import DataLoader
dataloader = DataLoader(ds, batch_size=4, num_workers=1)
for batch in dataloader:
print(batch.keys())
# the image key, plus a key counting the volunteer votes for each answer
# (e.g. smooth-or-featured-gz2_smooth)
print(batch['image'].shape)
break
```
You may find these HuggingFace docs useful:
- [PyTorch loading options](https://huggingface.co/docs/datasets/en/use_with_pytorch#data-loading).
- [Applying transforms/augmentations](https://huggingface.co/docs/datasets/en/image_process#apply-transforms).
- [Frameworks supported](https://huggingface.co/docs/datasets/v2.19.0/en/package_reference/main_classes#datasets.Dataset.set_format) by `set_format`.
## Dataset Structure
Each dataset is structured like:
```json
{
'image': ..., # image of a galaxy
'smooth-or-featured-[campaign]_smooth': 4,
'smooth-or-featured-[campaign]_featured-or-disk': 12,
... # and so on for many questions and answers
}
```
Images are loaded according to your `set_format` choice above. For example, ```set_format("torch")``` gives a (3, 424, 424) CHW `Torch.Tensor`.
The other keys are formatted like `[question]_[answer]`, where `question` is what the volunteers were asked (e.g. "smooth or featured?" and `answer` is the choice selected (e.g. "smooth"). **The values are the count of volunteers who selected each answer.**
`question` is appended with a string noting in which Galaxy Zoo campaign this question was asked e.g. `smooth-or-featured-gz2`. For most datasets, all questions were asked during the same campaign. For GZ DESI, there are three campaigns (`dr12`, `dr5`, and `dr8`) with very similar questions.
GZ Evo combines all the published datasets (currently GZ2, GZ DESI, GZ CANDELS, GZ Hubble, and GZ UKIDSS) into a single dataset aimed at multi-task learning. This is helpful for [building models that adapt to new tasks and new telescopes]((https://arxiv.org/abs/2404.02973)).
(we will shortly add keys for the astronomical identifiers i.e. the sky coordinates and telescope source unique ids)
## Key Limitations
Because the volunteers are answering a decision tree, the questions asked depend on the previous answers, and so each galaxy and each question can have very different total numbers of votes. This interferes with typical metrics that use aggregated labels (e.g. classification of the most voted, regression on the mean vote fraction, etc.) because we have different levels of confidence in the aggregated labels for each galaxy. We suggest a custom loss to handle this. Please see the Datasets and Benchmarks paper for more details (under review, sorry).
All labels are imperfect. The vote counts may not always reflect the true appearance of each galaxy. Additionally,
the true appearance of each galaxy may be uncertain - even to expert astronomers.
We therefore caution against over-interpreting small changes in performance to indicate a method is "superior". **These datasets should not be used as a precise performance benchmark.**
## Citation Information
The machine-learning friendly versions of each dataset are described in a recently-submitted paper. Citation information will be added if accepted.
For each specific dataset you use, please also cite the original Galaxy Zoo data release paper (listed below) and the telescope description paper (cited therein).
### Galaxy Zoo 2
@article{10.1093/mnras/stt1458,
author = {Willett, Kyle W. and Lintott, Chris J. and Bamford, Steven P. and Masters, Karen L. and Simmons, Brooke D. and Casteels, Kevin R. V. and Edmondson, Edward M. and Fortson, Lucy F. and Kaviraj, Sugata and Keel, William C. and Melvin, Thomas and Nichol, Robert C. and Raddick, M. Jordan and Schawinski, Kevin and Simpson, Robert J. and Skibba, Ramin A. and Smith, Arfon M. and Thomas, Daniel},
title = "{Galaxy Zoo 2: detailed morphological classifications for 304 122 galaxies from the Sloan Digital Sky Survey}",
journal = {Monthly Notices of the Royal Astronomical Society},
volume = {435},
number = {4},
pages = {2835-2860},
year = {2013},
month = {09},
issn = {0035-8711},
doi = {10.1093/mnras/stt1458},
}
### Galaxy Zoo Hubble
@article{2017MNRAS.464.4176W,
author = {Willett, Kyle W. and Galloway, Melanie A. and Bamford, Steven P. and Lintott, Chris J. and Masters, Karen L. and Scarlata, Claudia and Simmons, B.~D. and Beck, Melanie and {Cardamone}, Carolin N. and Cheung, Edmond and Edmondson, Edward M. and Fortson, Lucy F. and Griffith, Roger L. and H{\"a}u{\ss}ler, Boris and Han, Anna and Hart, Ross and Melvin, Thomas and Parrish, Michael and Schawinski, Kevin and Smethurst, R.~J. and {Smith}, Arfon M.},
title = "{Galaxy Zoo: morphological classifications for 120 000 galaxies in HST legacy imaging}",
journal = {Monthly Notices of the Royal Astronomical Society},
year = 2017,
month = feb,
volume = {464},
number = {4},
pages = {4176-4203},
doi = {10.1093/mnras/stw2568}
}
### Galaxy Zoo CANDELS
@article{10.1093/mnras/stw2587,
author = {Simmons, B. D. and Lintott, Chris and Willett, Kyle W. and Masters, Karen L. and Kartaltepe, Jeyhan S. and Häußler, Boris and Kaviraj, Sugata and Krawczyk, Coleman and Kruk, S. J. and McIntosh, Daniel H. and Smethurst, R. J. and Nichol, Robert C. and Scarlata, Claudia and Schawinski, Kevin and Conselice, Christopher J. and Almaini, Omar and Ferguson, Henry C. and Fortson, Lucy and Hartley, William and Kocevski, Dale and Koekemoer, Anton M. and Mortlock, Alice and Newman, Jeffrey A. and Bamford, Steven P. and Grogin, N. A. and Lucas, Ray A. and Hathi, Nimish P. and McGrath, Elizabeth and Peth, Michael and Pforr, Janine and Rizer, Zachary and Wuyts, Stijn and Barro, Guillermo and Bell, Eric F. and Castellano, Marco and Dahlen, Tomas and Dekel, Avishai and Ownsworth, Jamie and Faber, Sandra M. and Finkelstein, Steven L. and Fontana, Adriano and Galametz, Audrey and Grützbauch, Ruth and Koo, David and Lotz, Jennifer and Mobasher, Bahram and Mozena, Mark and Salvato, Mara and Wiklind, Tommy},
title = "{Galaxy Zoo: quantitative visual morphological classifications for 48 000 galaxies from CANDELS★}",
journal = {Monthly Notices of the Royal Astronomical Society},
volume = {464},
number = {4},
pages = {4420-4447},
year = {2016},
month = {10},
doi = {10.1093/mnras/stw2587}
}
### Galaxy Zoo DESI
(two citations due to being released over two papers)
@article{10.1093/mnras/stab2093,
author = {Walmsley, Mike and Lintott, Chris and Géron, Tobias and Kruk, Sandor and Krawczyk, Coleman and Willett, Kyle W and Bamford, Steven and Kelvin, Lee S and Fortson, Lucy and Gal, Yarin and Keel, William and Masters, Karen L and Mehta, Vihang and Simmons, Brooke D and Smethurst, Rebecca and Smith, Lewis and Baeten, Elisabeth M and Macmillan, Christine},
title = "{Galaxy Zoo DECaLS: Detailed visual morphology measurements from volunteers and deep learning for 314 000 galaxies}",
journal = {Monthly Notices of the Royal Astronomical Society},
volume = {509},
number = {3},
pages = {3966-3988},
year = {2021},
month = {09},
issn = {0035-8711},
doi = {10.1093/mnras/stab2093}
}
@article{10.1093/mnras/stad2919,
author = {Walmsley, Mike and Géron, Tobias and Kruk, Sandor and Scaife, Anna M M and Lintott, Chris and Masters, Karen L and Dawson, James M and Dickinson, Hugh and Fortson, Lucy and Garland, Izzy L and Mantha, Kameswara and O’Ryan, David and Popp, Jürgen and Simmons, Brooke and Baeten, Elisabeth M and Macmillan, Christine},
title = "{Galaxy Zoo DESI: Detailed morphology measurements for 8.7M galaxies in the DESI Legacy Imaging Surveys}",
journal = {Monthly Notices of the Royal Astronomical Society},
volume = {526},
number = {3},
pages = {4768-4786},
year = {2023},
month = {09},
issn = {0035-8711},
doi = {10.1093/mnras/stad2919}
}
### Galaxy Zoo UKIDSS
Not yet published.
### Galaxy Zoo Cosmic Dawn (a.k.a. H2O)
Not yet published. |