File size: 371,734 Bytes
58296a0 | 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 | lesion_id,label,image_type,isic_id,attribution,copyright_license,image_manipulation,age_approx,sex,skin_tone_class,site,MONET_ulceration_crust,MONET_hair,MONET_vasculature_vessels,MONET_erythema,MONET_pigmented,MONET_gel_water_drop_fluid_dermoscopy_liquid,MONET_skin_markings_pen_ink_purple_pen,image_type_norm,image_path
IL_0005081,SCCKA,dermoscopic,ISIC_5186409,MILK study team,CC-BY-NC,instrument only,45.0,male,3.0,head_neck_face,0.820477552331388,0.612078542590238,0.44425664418199,0.272835534968196,0.259830048827848,0.384243352707583,0.220156277660158,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0005081/ISIC_5186409.jpg
IL_0008969,BCC,dermoscopic,ISIC_9546309,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,upper_extremity,0.629026296661517,0.462949989674026,0.0903707347511154,0.639808998144977,0.176045896056428,0.282427973090746,0.0972817739104679,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0008969/ISIC_9546309.jpg
IL_0009339,BCC,dermoscopic,ISIC_8325963,MILK study team,CC-BY-NC,instrument only,70.0,male,2.0,trunk,0.639545084780923,0.514721834771577,0.796778077320888,0.368334960551468,0.12800812214569,0.610024124784122,0.217246227570082,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0009339/ISIC_8325963.jpg
IL_0012199,SCCKA,dermoscopic,ISIC_7213515,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,upper_extremity,0.34259809491551,0.2744238140414,0.105493809811594,0.203826773434481,0.334186596516214,0.422541888074718,0.100119185649359,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0012199/ISIC_7213515.jpg
IL_0017483,BKL,dermoscopic,ISIC_1225678,MILK study team,CC-BY-NC,instrument only,30.0,female,5.0,lower_extremity,0.0494857839526633,0.145094225867478,0.0248299161545722,0.0711676869078728,0.739813960937214,0.141297097815936,0.411756758887892,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0017483/ISIC_1225678.jpg
IL_0030541,BCC,dermoscopic,ISIC_1347581,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,trunk,0.455680528241984,0.251170256000462,0.0850118433278507,0.667438698427071,0.139843428827837,0.51744969240881,0.122650977809133,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0030541/ISIC_1347581.jpg
IL_0033882,BCC,dermoscopic,ISIC_3881896,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,trunk,0.890143323367886,0.144224607288149,0.0416157462553711,0.670019202529931,0.154666430851823,0.437414697100881,0.167479502229212,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0033882/ISIC_3881896.jpg
IL_0041758,MEL,dermoscopic,ISIC_3704603,MILK study team,CC-BY-NC,instrument only,40.0,female,3.0,trunk,0.226145171771358,0.35672155869737,0.0689939671109506,0.159130004269696,0.875961296658855,0.233190278652453,0.465198229199967,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0041758/ISIC_3704603.jpg
IL_0047878,NV,dermoscopic,ISIC_0433706,MILK study team,CC-BY-NC,instrument only,40.0,male,3.0,head_neck_face,0.567341858708183,0.747966226699988,0.47684243347973,0.147760575998489,0.293631209763959,0.362302825265944,0.440917565776068,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0047878/ISIC_0433706.jpg
IL_0069690,BCC,dermoscopic,ISIC_0323748,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,trunk,0.36099279279099,0.346727886741821,0.152584022758043,0.8205339116827,0.109418560162682,0.38804106523487,0.270357586087147,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0069690/ISIC_0323748.jpg
IL_0080050,BCC,dermoscopic,ISIC_0813000,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,head_neck_face,0.438862218369219,0.340555265291612,0.323187227362121,0.211776907505886,0.103432262391264,0.345916879718541,0.093721491723872,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0080050/ISIC_0813000.jpg
IL_0080398,MEL,dermoscopic,ISIC_9206660,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,lower_extremity,0.510191615162448,0.370823070227648,0.384108070637087,0.528947439330005,0.428408623845888,0.274260766845451,0.701024281305535,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0080398/ISIC_9206660.jpg
IL_0083505,NV,dermoscopic,ISIC_8736820,MILK study team,CC-BY-NC,instrument only,40.0,female,4.0,trunk,0.182755563078717,0.474117387994749,0.0876221934466594,0.0421917304128261,0.86224920072527,0.167190557822594,0.205537799760952,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0083505/ISIC_8736820.jpg
IL_0085362,AKIEC,dermoscopic,ISIC_9542991,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,head_neck_face,0.370832945999235,0.214457860900854,0.189162775519667,0.538153458097175,0.188785740965243,0.445584270111276,0.0816544473582833,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0085362/ISIC_9542991.jpg
IL_0092622,MEL,dermoscopic,ISIC_5144687,MILK study team,CC-BY-NC,instrument only,65.0,female,4.0,head_neck_face,0.305373637274812,0.235370753799844,0.011988471615089,0.118290144614466,0.587466788763755,0.21313218056971,0.405826258950877,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0092622/ISIC_5144687.jpg
IL_0106759,DF,dermoscopic,ISIC_6558326,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,upper_extremity,0.739942343525552,0.240778379423952,0.0432681098825957,0.365268114264313,0.703668004360485,0.388008435083188,0.234968910976786,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0106759/ISIC_6558326.jpg
IL_0107208,BCC,dermoscopic,ISIC_3818927,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,head_neck_face,0.345136335569252,0.776011937716281,0.109897511565257,0.595500126234064,0.154751490050286,0.27086696779566,0.251724377889902,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0107208/ISIC_3818927.jpg
IL_0136746,BCC,dermoscopic,ISIC_4749092,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,trunk,0.272818441292366,0.447410696424648,0.533454818273353,0.759654609356251,0.177406034547467,0.278932518948398,0.183401252585608,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0136746/ISIC_4749092.jpg
IL_0137493,BCC,dermoscopic,ISIC_4135497,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,head_neck_face,0.822534156473687,0.1896604634009,0.065603777916416,0.595737767520546,0.128199765781276,0.204331977229947,0.0869272339937596,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0137493/ISIC_4135497.jpg
IL_0143212,AKIEC,dermoscopic,ISIC_9704524,MILK study team,CC-BY-NC,instrument only,60.0,male,4.0,head_neck_face,0.293468762777905,0.315854906473535,0.316298761992097,0.122211233259799,0.0993386709799798,0.264064640128693,0.391230596939517,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0143212/ISIC_9704524.jpg
IL_0145900,BCC,dermoscopic,ISIC_0215803,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,trunk,0.160941942484344,0.203819469311293,0.0877062324856536,0.696087964709324,0.161717678900535,0.386207536868689,0.0931992720004559,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0145900/ISIC_0215803.jpg
IL_0149726,MEL,dermoscopic,ISIC_8667960,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.0748308147423019,0.511021584180954,0.0585956712726594,0.176466200408524,0.759553625603746,0.243369997150206,0.51049732141627,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0149726/ISIC_8667960.jpg
IL_0152415,BCC,dermoscopic,ISIC_5006235,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,lower_extremity,0.271938530015293,0.783585110153465,0.785046089658708,0.680971609674029,0.552302390404977,0.735554432161559,0.291428501410931,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0152415/ISIC_5006235.jpg
IL_0168605,SCCKA,dermoscopic,ISIC_4829038,MILK study team,CC-BY-NC,instrument only,80.0,female,3.0,head_neck_face,0.368330764192931,0.276582732410818,0.0746725609849097,0.0542238692138344,0.0489505909007124,0.189585397118266,0.035300256227367,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0168605/ISIC_4829038.jpg
IL_0177781,BCC,dermoscopic,ISIC_3408779,MILK study team,CC-BY-NC,instrument only,60.0,male,4.0,trunk,0.0451668878459536,0.244063293759296,0.0924116386947267,0.328556352631986,0.165400704527778,0.113065111301291,0.0265579298914583,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0177781/ISIC_3408779.jpg
IL_0181682,MEL,dermoscopic,ISIC_5436595,MILK study team,CC-BY-NC,instrument only,80.0,female,3.0,lower_extremity,0.125838952365082,0.237784468296572,0.0129428695433995,0.0166149662888244,0.834363510405977,0.145926725905163,0.32447045555554,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0181682/ISIC_5436595.jpg
IL_0183428,BCC,dermoscopic,ISIC_6121019,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,lower_extremity,0.215185332840938,0.192491140279326,0.135106611157258,0.741843634035269,0.105519939649886,0.345051044163919,0.0471265482770019,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0183428/ISIC_6121019.jpg
IL_0185151,BCC,dermoscopic,ISIC_2525369,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,lower_extremity,0.517855572262072,0.459936082273119,0.303302266599271,0.854506154188053,0.299327987319192,0.473189878833406,0.711418037050445,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0185151/ISIC_2525369.jpg
IL_0199225,BCC,dermoscopic,ISIC_1675235,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,trunk,0.466457550069487,0.37788143716021,0.173661845117821,0.177560288332542,0.358283641276596,0.133412155014901,0.0957344103546488,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0199225/ISIC_1675235.jpg
IL_0211480,BCC,dermoscopic,ISIC_1734487,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,trunk,0.331515322344047,0.627222384031124,0.179252076528382,0.312380289065978,0.9107309990368,0.304776777340327,0.430137041210234,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0211480/ISIC_1734487.jpg
IL_0226639,BCC,dermoscopic,ISIC_2755460,MILK study team,CC-BY-NC,instrument only,85.0,male,5.0,foot,0.671913743092614,0.204064303208185,0.014568604403642,0.0315577800462014,0.605890637437881,0.107823695959224,0.211558049853235,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0226639/ISIC_2755460.jpg
IL_0233778,BCC,dermoscopic,ISIC_1151008,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,trunk,0.429570398929388,0.204679760593939,0.0312048224893331,0.727217935304407,0.176765354717118,0.17467241053577,0.0570855990224711,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0233778/ISIC_1151008.jpg
IL_0256992,BCC,dermoscopic,ISIC_6458495,MILK study team,CC-BY-NC,instrument only,35.0,male,2.0,trunk,0.374162521135918,0.468618463372143,0.117964805264774,0.0936586795548775,0.138449030289997,0.225059518930346,0.37346751320581,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0256992/ISIC_6458495.jpg
IL_0266076,BCC,dermoscopic,ISIC_0181316,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,head_neck_face,0.193004972191741,0.243931682900891,0.0724510185437793,0.593800521291756,0.169183433934143,0.176761408533231,0.0625767194788941,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0266076/ISIC_0181316.jpg
IL_0286681,DF,dermoscopic,ISIC_0919412,MILK study team,CC-BY-NC,instrument only,45.0,female,2.0,lower_extremity,0.340973269486358,0.303578313756998,0.051616709128824,0.677412613556461,0.441948869541642,0.396018364435957,0.489515689472001,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0286681/ISIC_0919412.jpg
IL_0291723,BCC,dermoscopic,ISIC_1171368,MILK study team,CC-BY-NC,instrument only,65.0,male,4.0,upper_extremity,0.0944551710570713,0.497723324450419,0.128869058002569,0.216900247351706,0.310063302587373,0.27959858950434,0.18761742032858,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0291723/ISIC_1171368.jpg
IL_0306770,BCC,dermoscopic,ISIC_6704813,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,head_neck_face,0.657221397719698,0.436556943895932,0.477959688360637,0.394198574356921,0.268266414449311,0.348812814735846,0.278042154518862,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0306770/ISIC_6704813.jpg
IL_0311447,BCC,dermoscopic,ISIC_9916112,MILK study team,CC-BY-NC,instrument only,65.0,male,4.0,lower_extremity,0.273672675275568,0.197386525464781,0.212584677263154,0.29796334668952,0.112955532509165,0.151156807141777,0.105505413780335,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0311447/ISIC_9916112.jpg
IL_0321321,BCC,dermoscopic,ISIC_9490906,MILK study team,CC-BY-NC,instrument only,55.0,male,4.0,lower_extremity,0.224904290528042,0.64776920909896,0.130254629745657,0.539382596251775,0.487216774192227,0.373995717129238,0.458889875440861,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0321321/ISIC_9490906.jpg
IL_0322820,BCC,dermoscopic,ISIC_7828331,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.0435469950701404,0.496873105291829,0.893139495346347,0.372357811339092,0.179146800102134,0.606540421023121,0.287939417533634,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0322820/ISIC_7828331.jpg
IL_0327292,BCC,dermoscopic,ISIC_3259414,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.0428193063415422,0.402535317178362,0.133750374297219,0.140584657790693,0.387978486995665,0.150571548360433,0.155644860039751,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0327292/ISIC_3259414.jpg
IL_0328020,MEL,dermoscopic,ISIC_3636953,MILK study team,CC-BY-NC,instrument only,65.0,male,2.0,trunk,0.605239681235273,0.288382088457084,0.0309534077754401,0.268069853170534,0.719309724752328,0.162923339859543,0.194109454964826,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0328020/ISIC_3636953.jpg
IL_0335720,DF,dermoscopic,ISIC_4324758,MILK study team,CC-BY-NC,instrument only,65.0,male,2.0,lower_extremity,0.707496202710606,0.654193205161822,0.345330415625567,0.372091868075422,0.21458319497405,0.44374693848525,0.347866210170009,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0335720/ISIC_4324758.jpg
IL_0343240,NV,dermoscopic,ISIC_5728294,MILK study team,CC-BY-NC,instrument only,45.0,female,2.0,lower_extremity,0.389688171175636,0.26802635400717,0.0257970324753999,0.140000287187576,0.775363393142254,0.279056286409624,0.405723581669557,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0343240/ISIC_5728294.jpg
IL_0382638,MEL,dermoscopic,ISIC_3204703,MILK study team,CC-BY-NC,instrument only,45.0,female,4.0,trunk,0.18027020419658,0.356366793961674,0.0402760872107734,0.127987837407843,0.844816716680356,0.143240400072009,0.375744393639021,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0382638/ISIC_3204703.jpg
IL_0393808,BCC,dermoscopic,ISIC_9627594,MILK study team,CC-BY-NC,instrument only,55.0,female,3.0,lower_extremity,0.0494036271612014,0.493015790077968,0.141836224887683,0.18226452005401,0.363296296503344,0.18553878939507,0.379568402956477,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0393808/ISIC_9627594.jpg
IL_0401155,NV,dermoscopic,ISIC_7941055,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,lower_extremity,0.636191506849132,0.0984055179916633,0.0704065540299513,0.839327600958961,0.143904665406026,0.350128472119649,0.817533496252756,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0401155/ISIC_7941055.jpg
IL_0419934,BCC,dermoscopic,ISIC_1069165,MILK study team,CC-BY-NC,instrument only,55.0,female,5.0,foot,0.39214066979061,0.306987151548311,0.163400453156436,0.416627749873759,0.191188322875167,0.303126321820114,0.106540719636571,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0419934/ISIC_1069165.jpg
IL_0432633,BCC,dermoscopic,ISIC_3861977,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,upper_extremity,0.404857576200325,0.312654863413533,0.385494989014445,0.59890516971219,0.134725581786794,0.317406357060901,0.213892472317777,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0432633/ISIC_3861977.jpg
IL_0443396,BKL,dermoscopic,ISIC_1963610,MILK study team,CC-BY-NC,instrument only,55.0,female,3.0,trunk,0.419068820968336,0.16586295895621,0.228077352639304,0.405706843701469,0.256526745037449,0.239283813676996,0.0908355852734646,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0443396/ISIC_1963610.jpg
IL_0451875,BCC,dermoscopic,ISIC_3480499,MILK study team,CC-BY-NC,instrument only,55.0,female,4.0,trunk,0.34708935204295,0.347806449611235,0.123216112972393,0.217831270006142,0.425569778123046,0.164990117237774,0.57846806607051,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0451875/ISIC_3480499.jpg
IL_0466383,BCC,dermoscopic,ISIC_9410235,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,head_neck_face,0.226906291821905,0.439964228260906,0.813129206427914,0.436323119781986,0.177329927721482,0.40613375306446,0.0488340645729726,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0466383/ISIC_9410235.jpg
IL_0480697,BCC,dermoscopic,ISIC_6305309,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,head_neck_face,0.297418751375028,0.439932446338707,0.868154985102104,0.0647133153696776,0.122085406002461,0.407985635882433,0.579916044236334,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0480697/ISIC_6305309.jpg
IL_0484240,BCC,dermoscopic,ISIC_8609184,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,lower_extremity,0.270513854068659,0.29057986252635,0.23147642686705,0.71176142205831,0.100496472612727,0.268880106453655,0.267044862057408,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0484240/ISIC_8609184.jpg
IL_0513622,BCC,dermoscopic,ISIC_0979678,MILK study team,CC-BY-NC,instrument only,75.0,female,4.0,upper_extremity,0.0602704698001485,0.481914517870012,0.397948423592024,0.375766550148022,0.279180964560619,0.424592806706142,0.165795165069405,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0513622/ISIC_0979678.jpg
IL_0519375,NV,dermoscopic,ISIC_2577644,MILK study team,CC-BY-NC,instrument only,35.0,female,4.0,trunk,0.275108242364067,0.279947315113077,0.0479025646928311,0.145694815577236,0.833229656715661,0.257894264654874,0.33873253081666,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0519375/ISIC_2577644.jpg
IL_0521402,BCC,dermoscopic,ISIC_8979849,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,head_neck_face,0.27362695406169,0.586980392561905,0.0371875631691991,0.12123913751157,0.941614312470806,0.261813393848106,0.777105326096632,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0521402/ISIC_8979849.jpg
IL_0525024,NV,dermoscopic,ISIC_1591432,MILK study team,CC-BY-NC,instrument only,40.0,male,3.0,head_neck_face,0.0727119980089957,0.927440321990449,0.556643397241117,0.26909027045371,0.315533136473747,0.671007886572186,0.78887269907692,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0525024/ISIC_1591432.jpg
IL_0534902,BCC,dermoscopic,ISIC_6177577,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,trunk,0.0855239813773532,0.394579817136505,0.817973671874571,0.627671996343376,0.271170482885176,0.552891014317067,0.392286348973672,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0534902/ISIC_6177577.jpg
IL_0542551,BKL,dermoscopic,ISIC_5933489,MILK study team,CC-BY-NC,instrument only,70.0,male,2.0,head_neck_face,0.255592779575151,0.419394241050145,0.0477987189007705,0.0391400444090711,0.307435930069024,0.165294003011706,0.0632057908457944,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0542551/ISIC_5933489.jpg
IL_0550268,NV,dermoscopic,ISIC_8815245,MILK study team,CC-BY-NC,instrument only,70.0,female,2.0,trunk,0.106266542865624,0.595181672774073,0.196354810251319,0.214429456739753,0.912003856563255,0.287346555882585,0.689207051456004,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0550268/ISIC_8815245.jpg
IL_0576358,AKIEC,dermoscopic,ISIC_4842466,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,head_neck_face,0.256921993191897,0.647262165332718,0.4028270931403,0.297446935383477,0.202701136612103,0.695617343810292,0.364712617509136,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0576358/ISIC_4842466.jpg
IL_0588498,BKL,dermoscopic,ISIC_5766997,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,upper_extremity,0.159112574411127,0.438302605228025,0.183379913475339,0.198942135846314,0.126884068670977,0.284926400303123,0.241464199542341,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0588498/ISIC_5766997.jpg
IL_0592358,BCC,dermoscopic,ISIC_5352383,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,head_neck_face,0.22468554470662,0.274386766343186,0.45592798356956,0.442242033705502,0.163764290894012,0.251962554006372,0.0145098214692814,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0592358/ISIC_5352383.jpg
IL_0592984,BCC,dermoscopic,ISIC_5711226,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,lower_extremity,0.719579988973985,0.399131546082714,0.210543791714335,0.44398766433317,0.300587965970577,0.423914121046815,0.421815314261808,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0592984/ISIC_5711226.jpg
IL_0605964,NV,dermoscopic,ISIC_8294897,MILK study team,CC-BY-NC,instrument only,45.0,female,3.0,head_neck_face,0.057604032395943,0.482803714823215,0.136609340123982,0.543469241210409,0.327540527462463,0.390114411815357,0.0843201782601434,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0605964/ISIC_8294897.jpg
IL_0609142,BKL,dermoscopic,ISIC_9896977,MILK study team,CC-BY-NC,instrument only,55.0,female,3.0,upper_extremity,0.0200103865198024,0.671298224016822,0.449371822958729,0.502741483573656,0.295975872758159,0.28074327054122,0.340360696352746,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0609142/ISIC_9896977.jpg
IL_0618534,NV,dermoscopic,ISIC_5017355,MILK study team,CC-BY-NC,instrument only,35.0,female,3.0,trunk,0.0636646307207886,0.296833932839486,0.0093309247313685,0.0679270072959027,0.858359214142218,0.117451414638284,0.567291114139721,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0618534/ISIC_5017355.jpg
IL_0621333,NV,dermoscopic,ISIC_3558339,MILK study team,CC-BY-NC,instrument only,60.0,female,4.0,trunk,0.0388975239573654,0.63355156735371,0.326981108523901,0.262521883416719,0.69886685666559,0.415571666022395,0.691546267498842,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0621333/ISIC_3558339.jpg
IL_0636154,BKL,dermoscopic,ISIC_7910863,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,trunk,0.658577768931063,0.246419381587663,0.196512958755154,0.0618155226968083,0.201830017435466,0.150744868383338,0.148669488644226,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0636154/ISIC_7910863.jpg
IL_0663202,BCC,dermoscopic,ISIC_9521441,MILK study team,CC-BY-NC,instrument only,65.0,male,5.0,trunk,0.589459911026132,0.0677120875645165,0.104435031540094,0.182158247736441,0.173724054212807,0.197678353888084,0.129024186468424,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0663202/ISIC_9521441.jpg
IL_0681349,NV,dermoscopic,ISIC_7647712,MILK study team,CC-BY-NC,instrument only,15.0,female,4.0,lower_extremity,0.365922363066952,0.520632708155392,0.0223033785165069,0.0437131930397664,0.919661053893008,0.17091962785505,0.320623094842293,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0681349/ISIC_7647712.jpg
IL_0686767,AKIEC,dermoscopic,ISIC_6170751,MILK study team,CC-BY-NC,instrument only,70.0,female,4.0,foot,0.524852378620412,0.266868014184321,0.0621087756129152,0.120551424730331,0.442961252218382,0.275635014561085,0.139530287546109,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0686767/ISIC_6170751.jpg
IL_0697844,BCC,dermoscopic,ISIC_1804844,MILK study team,CC-BY-NC,instrument only,70.0,male,2.0,,0.869201955942761,0.340864613582493,0.0142645515144819,0.437879178358267,0.523127624973865,0.413902386466352,0.283738432625839,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0697844/ISIC_1804844.jpg
IL_0699958,NV,dermoscopic,ISIC_0815023,MILK study team,CC-BY-NC,instrument only,45.0,female,4.0,trunk,0.106114355802022,0.259675907735123,0.0213853518027643,0.101795090887982,0.745972346394591,0.267147596135685,0.35991712930379,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0699958/ISIC_0815023.jpg
IL_0700399,BKL,dermoscopic,ISIC_2531111,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,trunk,0.126593257290947,0.18910080805351,0.27180500566932,0.409728719914341,0.209421174729636,0.0989114212867711,0.0732448787833962,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0700399/ISIC_2531111.jpg
IL_0706157,BEN_OTH,dermoscopic,ISIC_6679588,MILK study team,CC-BY-NC,instrument only,,female,4.0,lower_extremity,0.31614903672337,0.564575361824499,0.364661663496899,0.869319301742537,0.262267252137754,0.894918696942208,0.756949086184064,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0706157/ISIC_6679588.jpg
IL_0712386,BCC,dermoscopic,ISIC_9390963,MILK study team,CC-BY-NC,instrument only,55.0,female,3.0,lower_extremity,0.865324637116711,0.14738527168891,0.0726647293413875,0.306986576080705,0.0829482873964873,0.202229088178573,0.142016851973621,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0712386/ISIC_9390963.jpg
IL_0718275,MEL,dermoscopic,ISIC_5892763,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,upper_extremity,0.205008516150827,0.467942409388463,0.0201592217339496,0.266506879457798,0.690896647903475,0.153752138237244,0.374585387273907,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0718275/ISIC_5892763.jpg
IL_0721541,BKL,dermoscopic,ISIC_2472012,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,upper_extremity,0.91961710822779,0.175239073846832,0.0922364602023743,0.691073145982058,0.0396675395474969,0.372611743721052,0.066277015886717,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0721541/ISIC_2472012.jpg
IL_0727699,AKIEC,dermoscopic,ISIC_6890536,MILK study team,CC-BY-NC,instrument only,65.0,female,4.0,head_neck_face,0.353212563261582,0.446447185565048,0.0225126155888147,0.213348215710079,0.668593031007687,0.52654275150497,0.19808308994292,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0727699/ISIC_6890536.jpg
IL_0753013,BCC,dermoscopic,ISIC_7563649,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,upper_extremity,0.674004844957248,0.343700542716785,0.331620882414275,0.18586623318905,0.278817731476769,0.308061771564344,0.318789295543422,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0753013/ISIC_7563649.jpg
IL_0758142,BCC,dermoscopic,ISIC_9896561,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,upper_extremity,0.320183872824847,0.550323407027961,0.254069986414359,0.766961970520843,0.24865644799744,0.28489663995333,0.48165302228296,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0758142/ISIC_9896561.jpg
IL_0773953,BCC,dermoscopic,ISIC_0811123,MILK study team,CC-BY-NC,instrument only,45.0,male,3.0,upper_extremity,0.266418187023132,0.639741358310451,0.360224816163004,0.40661468561471,0.242810971514658,0.554715272098741,0.848732651127945,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0773953/ISIC_0811123.jpg
IL_0784156,BCC,dermoscopic,ISIC_3457455,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,lower_extremity,0.259723805908663,0.211838365884634,0.391589456604815,0.34363063802194,0.0463697778359372,0.419115698209137,0.236226025349258,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0784156/ISIC_3457455.jpg
IL_0786469,NV,dermoscopic,ISIC_5052804,MILK study team,CC-BY-NC,instrument only,20.0,female,4.0,trunk,0.0994225472670919,0.199912327507177,0.0213892055794114,0.182972013180363,0.551897719204515,0.155592630765335,0.199951776532486,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0786469/ISIC_5052804.jpg
IL_0793440,NV,dermoscopic,ISIC_1815891,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,lower_extremity,0.0833058535480042,0.415425168740997,0.0201650330835639,0.0401696173712015,0.869841537393887,0.0877093021449742,0.3790624851667,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0793440/ISIC_1815891.jpg
IL_0809191,NV,dermoscopic,ISIC_8199024,MILK study team,CC-BY-NC,instrument only,,female,4.0,lower_extremity,0.126153883079492,0.360141030232395,0.0184475961048835,0.0536813208292863,0.711019246080216,0.172701652680961,0.731677430574696,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0809191/ISIC_8199024.jpg
IL_0810155,MEL,dermoscopic,ISIC_5230761,MILK study team,CC-BY-NC,instrument only,60.0,female,5.0,lower_extremity,0.391668063749695,0.536827627266312,0.0132483072184057,0.0835803926975606,0.526227584081335,0.16062011835041,0.176141791328779,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0810155/ISIC_5230761.jpg
IL_0823685,MEL,dermoscopic,ISIC_6562442,MILK study team,CC-BY-NC,instrument only,40.0,female,3.0,trunk,0.560336299188185,0.491944838039415,0.0348820778266714,0.0993111815260843,0.866610574067769,0.125462142349779,0.821097782651028,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0823685/ISIC_6562442.jpg
IL_0836583,BCC,dermoscopic,ISIC_2088803,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,lower_extremity,0.235777070787014,0.19536234218651,0.162350202939979,0.166198410380513,0.313592412537366,0.209865865324132,0.502020303304794,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0836583/ISIC_2088803.jpg
IL_0844801,NV,dermoscopic,ISIC_4112456,MILK study team,CC-BY-NC,instrument only,35.0,female,3.0,trunk,0.0995049027512853,0.446227144805775,0.0445808519332933,0.068166660662945,0.77646084832147,0.27641670160505,0.563327787592814,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0844801/ISIC_4112456.jpg
IL_0848948,NV,dermoscopic,ISIC_7876616,MILK study team,CC-BY-NC,instrument only,40.0,female,4.0,trunk,0.129906822797576,0.227417950333429,0.0647642049161231,0.119947120672726,0.535524655189774,0.130156716043048,0.504519611812956,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0848948/ISIC_7876616.jpg
IL_0855898,MEL,dermoscopic,ISIC_6596926,MILK study team,CC-BY-NC,instrument only,65.0,male,5.0,upper_extremity,0.481858988632518,0.27043870354367,0.203426587540345,0.891257252520814,0.273338645511157,0.580938386889878,0.279324786331512,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0855898/ISIC_6596926.jpg
IL_0861940,BCC,dermoscopic,ISIC_9336765,MILK study team,CC-BY-NC,instrument only,65.0,male,4.0,lower_extremity,0.742858981205393,0.624404234402912,0.53445483508688,0.644051033692859,0.22572080550253,0.608202926845951,0.685284925660613,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0861940/ISIC_9336765.jpg
IL_0867895,BCC,dermoscopic,ISIC_4176108,MILK study team,CC-BY-NC,instrument only,50.0,female,5.0,head_neck_face,0.310625257100561,0.685693921622053,0.140450863138125,0.677797134517713,0.257105337022523,0.348586168270669,0.340461372870793,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0867895/ISIC_4176108.jpg
IL_0882013,BCC,dermoscopic,ISIC_8843104,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,trunk,0.564454339875185,0.23082496904662,0.159924569534294,0.625076440913722,0.190736187880711,0.512178087923274,0.373589553845612,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0882013/ISIC_8843104.jpg
IL_0883387,NV,dermoscopic,ISIC_4246393,MILK study team,CC-BY-NC,instrument only,35.0,male,3.0,trunk,0.567441605622944,0.31198264112935,0.0415578511436403,0.131106519437743,0.220836419805331,0.209432900583364,0.193536557245981,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0883387/ISIC_4246393.jpg
IL_0901496,BCC,dermoscopic,ISIC_0805951,MILK study team,CC-BY-NC,instrument only,35.0,male,3.0,head_neck_face,0.246613497878032,0.441342892465612,0.201418660367881,0.204070120288698,0.3485950341437,0.321825161503989,0.261611155137082,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0901496/ISIC_0805951.jpg
IL_0919212,BCC,dermoscopic,ISIC_6417205,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.442993981129622,0.349353188315772,0.248601449744037,0.151499144534376,0.208677331160055,0.291843166699851,0.118089054284895,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0919212/ISIC_6417205.jpg
IL_0921105,BCC,dermoscopic,ISIC_8614302,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,head_neck_face,0.457267635479796,0.465907791709451,0.733450264149003,0.772930778174305,0.154278705612142,0.416728532936974,0.242812882417285,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0921105/ISIC_8614302.jpg
IL_0926236,NV,dermoscopic,ISIC_2745537,MILK study team,CC-BY-NC,instrument only,40.0,female,4.0,trunk,0.183842134984708,0.425099772391219,0.0375734010905638,0.300901106289698,0.569366938677012,0.301739141845068,0.70581446491529,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0926236/ISIC_2745537.jpg
IL_0927709,MEL,dermoscopic,ISIC_3535882,MILK study team,CC-BY-NC,instrument only,70.0,male,2.0,head_neck_face,0.653799025370671,0.347756925666919,0.0190080657969163,0.134364606313147,0.903286189833381,0.129336474343813,0.29492775740698,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0927709/ISIC_3535882.jpg
IL_0956761,BCC,dermoscopic,ISIC_3568310,MILK study team,CC-BY-NC,instrument only,65.0,male,4.0,hand,0.218947122983402,0.548550756271218,0.864507150730299,0.340123973483595,0.262595761190319,0.344092820362436,0.127987281276251,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0956761/ISIC_3568310.jpg
IL_0960760,NV,dermoscopic,ISIC_7452466,MILK study team,CC-BY-NC,instrument only,50.0,male,2.0,trunk,0.167378371769936,0.251036763523944,0.0449307765546097,0.108362276157707,0.601200630354508,0.198457938134125,0.327213152313876,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0960760/ISIC_7452466.jpg
IL_0960913,SCCKA,dermoscopic,ISIC_6725841,MILK study team,CC-BY-NC,instrument only,85.0,female,4.0,upper_extremity,0.631803474764936,0.391377578015271,0.0491513184967031,0.0759138314937977,0.15178371522834,0.311946726446163,0.102926845309545,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0960913/ISIC_6725841.jpg
IL_0966706,BCC,dermoscopic,ISIC_7727795,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,lower_extremity,0.138012632637145,0.347790414558005,0.119477570226251,0.424695967465979,0.210827714924968,0.360659085933824,0.194471247449506,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0966706/ISIC_7727795.jpg
IL_0978342,NV,dermoscopic,ISIC_0767613,MILK study team,CC-BY-NC,instrument only,30.0,female,3.0,trunk,0.0658195765173907,0.192879960397571,0.0333389894884818,0.191845807633453,0.662874869936561,0.149707051499705,0.21928101545048,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0978342/ISIC_0767613.jpg
IL_0980631,BCC,dermoscopic,ISIC_6124320,MILK study team,CC-BY-NC,instrument only,80.0,male,4.0,head_neck_face,0.384852801134341,0.238529763559156,0.106472662941456,0.195865981685884,0.114730067284024,0.280436756659695,0.0327185787054389,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0980631/ISIC_6124320.jpg
IL_0982091,BCC,dermoscopic,ISIC_2654339,MILK study team,CC-BY-NC,instrument only,45.0,male,3.0,head_neck_face,0.509020388714689,0.646455643047954,0.343701856174128,0.747959723487116,0.352964145649585,0.448303188541529,0.463274535121117,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0982091/ISIC_2654339.jpg
IL_1024813,SCCKA,dermoscopic,ISIC_6078508,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,upper_extremity,0.816369331279569,0.145697683118541,0.0334438082145255,0.0382347532643327,0.239053734068463,0.0738166500114566,0.0458720041341095,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1024813/ISIC_6078508.jpg
IL_1027638,MEL,dermoscopic,ISIC_5093839,MILK study team,CC-BY-NC,instrument only,55.0,female,3.0,trunk,0.569877012211177,0.402783645730072,0.0687373622185805,0.135347665448085,0.863037638133287,0.120412295407737,0.333237760612841,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1027638/ISIC_5093839.jpg
IL_1030535,BCC,dermoscopic,ISIC_1740962,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,upper_extremity,0.0573354063108528,0.386756956902637,0.311480174068469,0.262657698526516,0.317124238903016,0.183077054727394,0.201295785464594,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1030535/ISIC_1740962.jpg
IL_1038225,NV,dermoscopic,ISIC_7272469,MILK study team,CC-BY-NC,instrument only,55.0,female,3.0,trunk,0.0893787304029903,0.387620109757103,0.0195411143753639,0.0436844976865364,0.757968528066353,0.207951495947964,0.48273420267955,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1038225/ISIC_7272469.jpg
IL_1039753,MEL,dermoscopic,ISIC_9512371,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,lower_extremity,0.10413043225104,0.533809890664159,0.528077928908604,0.91901070100579,0.0955990009180759,0.613984837769776,0.611462369241497,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1039753/ISIC_9512371.jpg
IL_1058871,BCC,dermoscopic,ISIC_0777452,MILK study team,CC-BY-NC,instrument only,35.0,female,4.0,head_neck_face,0.223047002008265,0.464480753619437,0.479715676727609,0.116061386042473,0.243168991418803,0.472537468105313,0.30161393950975,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1058871/ISIC_0777452.jpg
IL_1059300,BKL,dermoscopic,ISIC_5854998,MILK study team,CC-BY-NC,instrument only,75.0,male,2.0,trunk,0.100401852046546,0.447054873622643,0.259530654513295,0.149822812357074,0.629402946278394,0.381179337713972,0.459823686217323,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1059300/ISIC_5854998.jpg
IL_1062117,MEL,dermoscopic,ISIC_7922830,MILK study team,CC-BY-NC,instrument only,80.0,male,2.0,trunk,0.789517723710569,0.157196904197186,0.161997006531128,0.139917284534223,0.521047158627183,0.257483240166103,0.22299805223551,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1062117/ISIC_7922830.jpg
IL_1066401,SCCKA,dermoscopic,ISIC_3040289,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,head_neck_face,0.532480615579789,0.303353642535015,0.29552727961312,0.179779658933082,0.5963720210315,0.378541602874987,0.559915238460835,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1066401/ISIC_3040289.jpg
IL_1066586,BCC,dermoscopic,ISIC_2945370,MILK study team,CC-BY-NC,instrument only,60.0,male,4.0,head_neck_face,0.513998476191053,0.321152896685378,0.414877658994283,0.501680532960108,0.102461072171048,0.368275218712466,0.035541305727672,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1066586/ISIC_2945370.jpg
IL_1081068,BCC,dermoscopic,ISIC_3983224,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,lower_extremity,0.634678540996073,0.325923307197588,0.114585086073162,0.281388845301859,0.130034017526405,0.318057909618932,0.0449657704579282,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1081068/ISIC_3983224.jpg
IL_1101904,BKL,dermoscopic,ISIC_0426131,MILK study team,CC-BY-NC,instrument only,85.0,female,3.0,upper_extremity,0.300444472011656,0.127329820957576,0.0514571341196177,0.514427115917664,0.114748237273857,0.17327896586781,0.0706738919193477,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1101904/ISIC_0426131.jpg
IL_1114001,AKIEC,dermoscopic,ISIC_0855384,MILK study team,CC-BY-NC,instrument only,80.0,male,2.0,head_neck_face,0.818872070605251,0.171651666052354,0.0082514353563105,0.481596060960612,0.28447345346223,0.333801315669403,0.256611624246059,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1114001/ISIC_0855384.jpg
IL_1118259,BCC,dermoscopic,ISIC_2671356,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,upper_extremity,0.423951430782412,0.655641978741266,0.307500762690976,0.780804893606433,0.182317095301456,0.453243580362846,0.263309917295318,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1118259/ISIC_2671356.jpg
IL_1129675,BCC,dermoscopic,ISIC_4955572,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,trunk,0.152633973194812,0.417214830741948,0.683647356494023,0.520151050381038,0.150720729850354,0.273592924014183,0.0513891744555506,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1129675/ISIC_4955572.jpg
IL_1140654,BCC,dermoscopic,ISIC_6638547,MILK study team,CC-BY-NC,instrument only,70.0,female,4.0,trunk,0.330761962722364,0.521724452330573,0.317474714679454,0.821042322212399,0.38210257291093,0.4876587734706,0.199311919809212,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1140654/ISIC_6638547.jpg
IL_1159424,MEL,dermoscopic,ISIC_4312494,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,trunk,0.100618001406248,0.326199995966193,0.0163196103216724,0.0364618564167696,0.89110983383016,0.0991131740353657,0.355475407120516,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1159424/ISIC_4312494.jpg
IL_1185786,BKL,dermoscopic,ISIC_9700218,MILK study team,CC-BY-NC,instrument only,85.0,female,4.0,trunk,0.213421326222861,0.351725661237134,0.0269288499286205,0.0804602319806033,0.926082307584808,0.163931641266239,0.363922561099095,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1185786/ISIC_9700218.jpg
IL_1188935,BKL,dermoscopic,ISIC_5836698,MILK study team,CC-BY-NC,instrument only,70.0,female,4.0,trunk,0.180085034549664,0.373440764320335,0.482859731911376,0.508177328407885,0.204335648428708,0.249902300987412,0.127053988582898,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1188935/ISIC_5836698.jpg
IL_1211911,SCCKA,dermoscopic,ISIC_9003113,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,upper_extremity,0.20002602878899,0.632951812084421,0.112336927233917,0.153095014455,0.179065372291985,0.443759071964269,0.0916922376289461,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1211911/ISIC_9003113.jpg
IL_1222046,BEN_OTH,dermoscopic,ISIC_4385584,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,head_neck_face,0.796741063114668,0.0512495229788844,0.105404874242055,0.654340151420333,0.026587961739496,0.838294010790475,0.170526845673807,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1222046/ISIC_4385584.jpg
IL_1238733,SCCKA,dermoscopic,ISIC_0780574,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,hand,0.671212924242587,0.372302824739793,0.0744556727058207,0.43074217534486,0.134105016716676,0.383761559766805,0.051209851318559,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1238733/ISIC_0780574.jpg
IL_1242369,MEL,dermoscopic,ISIC_2851725,MILK study team,CC-BY-NC,instrument only,80.0,male,2.0,trunk,0.248992638102205,0.371556474418646,0.0116761518495208,0.0588119799257813,0.899302213833178,0.123199118408599,0.354669711641689,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1242369/ISIC_2851725.jpg
IL_1251030,BCC,dermoscopic,ISIC_4381662,MILK study team,CC-BY-NC,instrument only,55.0,male,4.0,upper_extremity,0.242164520984131,0.528744840744769,0.41971013649111,0.293642068148427,0.143889294259941,0.376396557120348,0.190055578017202,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1251030/ISIC_4381662.jpg
IL_1252231,BCC,dermoscopic,ISIC_5373218,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,lower_extremity,0.700885213978739,0.165175577703898,0.19887125797488,0.680134345839419,0.422684285592442,0.560802021274573,0.14266140090478,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1252231/ISIC_5373218.jpg
IL_1313650,SCCKA,dermoscopic,ISIC_0958356,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,upper_extremity,0.915959031150728,0.235286992072321,0.0395977106437197,0.0660569223443012,0.0316895989152048,0.0882453002380629,0.0277824548655129,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1313650/ISIC_0958356.jpg
IL_1339596,BKL,dermoscopic,ISIC_1150454,MILK study team,CC-BY-NC,instrument only,85.0,female,3.0,lower_extremity,0.184706078193887,0.207829268372796,0.042422562308741,0.0364563027234603,0.532148751359925,0.250209175131363,0.285371219498231,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1339596/ISIC_1150454.jpg
IL_1353803,BKL,dermoscopic,ISIC_5995935,MILK study team,CC-BY-NC,instrument only,70.0,male,2.0,trunk,0.496364418961973,0.297345664665497,0.0095087178002929,0.0658106894301427,0.923936965087862,0.190471519789873,0.274358773756772,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1353803/ISIC_5995935.jpg
IL_1355090,NV,dermoscopic,ISIC_6023245,MILK study team,CC-BY-NC,instrument only,55.0,female,3.0,lower_extremity,0.0994417633013707,0.294955015747343,0.0359944523542902,0.0998273165362439,0.513877864088742,0.296541209517283,0.645558076104618,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1355090/ISIC_6023245.jpg
IL_1391471,BCC,dermoscopic,ISIC_4984469,MILK study team,CC-BY-NC,instrument only,75.0,female,4.0,head_neck_face,0.717171916235273,0.159367499909788,0.0154517371213826,0.0759377218316834,0.0999610412541913,0.20499590895468,0.0528777842711085,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1391471/ISIC_4984469.jpg
IL_1392309,BCC,dermoscopic,ISIC_4204828,MILK study team,CC-BY-NC,instrument only,60.0,male,4.0,trunk,0.181644978392134,0.624091099457379,0.197988709397859,0.443006286012266,0.404505977463756,0.399269941939072,0.0718637524948874,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1392309/ISIC_4204828.jpg
IL_1416084,BCC,dermoscopic,ISIC_2440983,MILK study team,CC-BY-NC,instrument only,45.0,female,3.0,head_neck_face,0.0448202618200215,0.440773206474448,0.524037223434487,0.207564673516965,0.390508208885341,0.398062371720012,0.345854045803006,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1416084/ISIC_2440983.jpg
IL_1418667,AKIEC,dermoscopic,ISIC_2987179,MILK study team,CC-BY-NC,instrument only,65.0,male,1.0,head_neck_face,0.463208513264351,0.299982982135092,0.0048813895826454,0.0334270193510491,0.618331958007636,0.116930505153313,0.0931653081583034,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1418667/ISIC_2987179.jpg
IL_1445099,MEL,dermoscopic,ISIC_5509679,MILK study team,CC-BY-NC,instrument only,70.0,male,4.0,trunk,0.266674926601925,0.397825481150946,0.0949498332836126,0.244400360275345,0.622224290197285,0.307506572754968,0.680157409639548,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1445099/ISIC_5509679.jpg
IL_1448486,BCC,dermoscopic,ISIC_7297776,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,head_neck_face,0.1035112573291,0.468698391779201,0.82721083710892,0.55090223480109,0.142014303436421,0.305640140274599,0.0936913560120846,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1448486/ISIC_7297776.jpg
IL_1452313,BCC,dermoscopic,ISIC_6783253,MILK study team,CC-BY-NC,instrument only,50.0,female,5.0,trunk,0.552404516475954,0.417547005195779,0.589589919988498,0.815105510668766,0.108750701291159,0.803791954421671,0.0419249521059813,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1452313/ISIC_6783253.jpg
IL_1469055,BCC,dermoscopic,ISIC_5968779,MILK study team,CC-BY-NC,instrument only,80.0,male,5.0,trunk,0.544453827708158,0.18481655070619,0.144395127532822,0.801298348738773,0.182278818076328,0.345731219304752,0.284769897857243,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1469055/ISIC_5968779.jpg
IL_1477835,DF,dermoscopic,ISIC_7077229,MILK study team,CC-BY-NC,instrument only,35.0,male,3.0,trunk,0.375940888610132,0.314225590524277,0.622954571581589,0.64974572037416,0.156874034030358,0.255785749669392,0.0356652474990236,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1477835/ISIC_7077229.jpg
IL_1485026,BCC,dermoscopic,ISIC_0745953,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,head_neck_face,0.108089424616933,0.148666072251414,0.13615687790587,0.399050638319094,0.183161800262091,0.0786653305198706,0.0300376598947507,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1485026/ISIC_0745953.jpg
IL_1500549,NV,dermoscopic,ISIC_9706117,MILK study team,CC-BY-NC,instrument only,30.0,female,4.0,trunk,0.0203882156791093,0.279709897951211,0.0230331091622806,0.11988005701731,0.592133286764768,0.0828497929789586,0.257425497248825,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1500549/ISIC_9706117.jpg
IL_1509760,BCC,dermoscopic,ISIC_5901436,MILK study team,CC-BY-NC,instrument only,85.0,female,2.0,head_neck_face,0.537643991245975,0.333908403158865,0.0538726323314841,0.12794644744598,0.75933292289943,0.175837997164303,0.228795644186268,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1509760/ISIC_5901436.jpg
IL_1511744,BCC,dermoscopic,ISIC_4306480,MILK study team,CC-BY-NC,instrument only,80.0,male,4.0,trunk,0.0484931931677237,0.417136078772739,0.183408668362504,0.127163330276288,0.302313578710418,0.271906567153894,0.560819077862665,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1511744/ISIC_4306480.jpg
IL_1512724,NV,dermoscopic,ISIC_7335595,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,upper_extremity,0.163278038559764,0.370986352862829,0.229899327357113,0.249231110922095,0.155550704815578,0.465164731113948,0.517269355782868,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1512724/ISIC_7335595.jpg
IL_1524130,SCCKA,dermoscopic,ISIC_8723221,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,lower_extremity,0.728014964480351,0.631845081263984,0.292627694297862,0.690633708175544,0.202638274919111,0.742082649268608,0.272802598042108,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1524130/ISIC_8723221.jpg
IL_1528983,BCC,dermoscopic,ISIC_7061593,MILK study team,CC-BY-NC,instrument only,85.0,male,4.0,trunk,0.35387840416739,0.525799193041336,0.29218004924766,0.604945095272058,0.465563948961646,0.390488579885638,0.52389863502011,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1528983/ISIC_7061593.jpg
IL_1530235,BKL,dermoscopic,ISIC_2355114,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,trunk,0.236487238206764,0.492642475002789,0.311103003236134,0.6574529661546,0.243919604248691,0.251741031216882,0.0950346523884836,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1530235/ISIC_2355114.jpg
IL_1558479,BKL,dermoscopic,ISIC_2214376,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,trunk,0.445218510935299,0.468348307547994,0.135981377440798,0.401613207291666,0.776457990392081,0.343965666341287,0.514599722412676,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1558479/ISIC_2214376.jpg
IL_1567374,BCC,dermoscopic,ISIC_5124607,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,trunk,0.11318811195992,0.459912212557078,0.606142682422687,0.309553221603168,0.279833150183018,0.388878258306088,0.273813711928918,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1567374/ISIC_5124607.jpg
IL_1567666,NV,dermoscopic,ISIC_8313343,MILK study team,CC-BY-NC,instrument only,65.0,male,2.0,trunk,0.0387772572206485,0.47244846578793,0.0244916026968197,0.0675147245139911,0.755029597332257,0.237752145250925,0.536468151789387,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1567666/ISIC_8313343.jpg
IL_1572038,AKIEC,dermoscopic,ISIC_0497851,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,lower_extremity,0.52672693899442,0.461256291662891,0.0733394650932025,0.423779049258763,0.134908309475427,0.465891157537776,0.0805993695257574,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1572038/ISIC_0497851.jpg
IL_1575881,NV,dermoscopic,ISIC_7805699,MILK study team,CC-BY-NC,instrument only,70.0,male,4.0,trunk,0.152538215619061,0.600330429544914,0.18476704446588,0.313481679951158,0.552041300095059,0.464835657991989,0.906540682393807,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1575881/ISIC_7805699.jpg
IL_1577299,AKIEC,dermoscopic,ISIC_9254710,MILK study team,CC-BY-NC,instrument only,80.0,female,4.0,head_neck_face,0.459061315576974,0.296598279210809,0.173370514466897,0.85395362206426,0.137378428623286,0.639111854177932,0.282059355873342,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1577299/ISIC_9254710.jpg
IL_1587748,BCC,dermoscopic,ISIC_2868713,MILK study team,CC-BY-NC,instrument only,70.0,male,2.0,head_neck_face,0.240306775943139,0.521785222165285,0.0677517709293541,0.196550424390244,0.898253433967784,0.176399475373527,0.535464956967004,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1587748/ISIC_2868713.jpg
IL_1601873,BCC,dermoscopic,ISIC_8921695,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,lower_extremity,0.746180400493436,0.571553023676208,0.0405488449376351,0.219864203198432,0.27300432766488,0.355679830841697,0.359393821081704,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1601873/ISIC_8921695.jpg
IL_1608004,AKIEC,dermoscopic,ISIC_8254063,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,hand,0.9047667913618,0.41994181652379,0.616574442533982,0.625134405005335,0.0795536408202064,0.721093004235032,0.107318340587734,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1608004/ISIC_8254063.jpg
IL_1621058,MEL,dermoscopic,ISIC_9658944,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,trunk,0.314890856993728,0.245310568523431,0.0111655123947547,0.09161010081812,0.915680905486541,0.202002246312205,0.347191559807882,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1621058/ISIC_9658944.jpg
IL_1623260,BCC,dermoscopic,ISIC_7903287,MILK study team,CC-BY-NC,instrument only,55.0,male,4.0,trunk,0.188764041997437,0.353611840460311,0.362116409841478,0.0796094853056041,0.223734370697719,0.304166309091396,0.868057070318632,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1623260/ISIC_7903287.jpg
IL_1623659,BCC,dermoscopic,ISIC_1966383,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,trunk,0.0440453859854264,0.586348049113378,0.765092477585783,0.758412400463547,0.114206965706118,0.419302372565014,0.364606781621764,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1623659/ISIC_1966383.jpg
IL_1627026,MEL,dermoscopic,ISIC_9807754,MILK study team,CC-BY-NC,instrument only,65.0,male,4.0,lower_extremity,0.375931052636959,0.236175167849146,0.0209639933516053,0.237040431483794,0.54755783794611,0.221565055878715,0.138372804967357,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1627026/ISIC_9807754.jpg
IL_1633502,BCC,dermoscopic,ISIC_0727761,MILK study team,CC-BY-NC,instrument only,65.0,female,5.0,lower_extremity,0.198639574955733,0.323639452570832,0.235387791335672,0.244042096094346,0.287490712462706,0.151571644444095,0.0611465344346317,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1633502/ISIC_0727761.jpg
IL_1653926,BCC,dermoscopic,ISIC_3034439,MILK study team,CC-BY-NC,instrument only,70.0,male,4.0,trunk,0.205379682223088,0.181886668015466,0.0722624684723574,0.294912466427151,0.277728259373209,0.148976491795455,0.0375905550384918,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1653926/ISIC_3034439.jpg
IL_1657109,NV,dermoscopic,ISIC_4196278,MILK study team,CC-BY-NC,instrument only,35.0,male,4.0,trunk,0.069163347782216,0.229513263665443,0.0330611506354163,0.0403907736271434,0.68839236848071,0.103459414741695,0.452170400682185,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1657109/ISIC_4196278.jpg
IL_1659172,BKL,dermoscopic,ISIC_9791119,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.517049895186661,0.25047562575213,0.785776704618722,0.191255382179485,0.0950627372037936,0.706265785852315,0.112529614365406,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1659172/ISIC_9791119.jpg
IL_1659933,AKIEC,dermoscopic,ISIC_2259826,MILK study team,CC-BY-NC,instrument only,75.0,female,4.0,head_neck_face,0.414409266806693,0.376108349194241,0.317614498948269,0.432803016353728,0.17599633787666,0.687599980593384,0.0752721614513186,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1659933/ISIC_2259826.jpg
IL_1662116,NV,dermoscopic,ISIC_7308563,MILK study team,CC-BY-NC,instrument only,85.0,female,3.0,trunk,0.0796955802166363,0.290519521064911,0.0483503132413986,0.0649339373537929,0.126560735374875,0.245577589540374,0.0774160169919396,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1662116/ISIC_7308563.jpg
IL_1669635,NV,dermoscopic,ISIC_9280729,MILK study team,CC-BY-NC,instrument only,40.0,female,2.0,trunk,0.0511460067637222,0.413937498641153,0.0266050498961153,0.16473410921085,0.744782366000448,0.230285945672479,0.431999293137276,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1669635/ISIC_9280729.jpg
IL_1671392,NV,dermoscopic,ISIC_0768895,MILK study team,CC-BY-NC,instrument only,40.0,male,1.0,trunk,0.165816884878263,0.358011494297812,0.0346728083902788,0.15506991792171,0.796295597828205,0.203648951263624,0.630058741468349,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1671392/ISIC_0768895.jpg
IL_1682958,BCC,dermoscopic,ISIC_6221556,MILK study team,CC-BY-NC,instrument only,60.0,male,1.0,head_neck_face,0.477502596132131,0.21039497258526,0.0107037619713646,0.0586738898476409,0.85536749122303,0.122177612283315,0.124217930869152,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1682958/ISIC_6221556.jpg
IL_1693296,VASC,dermoscopic,ISIC_4517185,MILK study team,CC-BY-NC,instrument only,40.0,female,4.0,lower_extremity,0.401101860894397,0.269337638398678,0.0078388254087168,0.0591202672648636,0.72081257470273,0.16796228779723,0.123750403597427,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1693296/ISIC_4517185.jpg
IL_1713775,BCC,dermoscopic,ISIC_1557986,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.239961873272128,0.739554772952741,0.289224532891279,0.800029095122949,0.284294759812752,0.503516804373541,0.394040755321064,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1713775/ISIC_1557986.jpg
IL_1717004,BKL,dermoscopic,ISIC_1222720,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,upper_extremity,0.363226682876488,0.450168107311725,0.261586314252353,0.307730375283874,0.434174883051815,0.588084659445651,0.136826576044722,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1717004/ISIC_1222720.jpg
IL_1720611,AKIEC,dermoscopic,ISIC_8145823,MILK study team,CC-BY-NC,instrument only,45.0,male,3.0,head_neck_face,0.198963999083479,0.385697078944637,0.959441664591062,0.485447462758348,0.171908685581738,0.488778020941072,0.25184117811194,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1720611/ISIC_8145823.jpg
IL_1733952,SCCKA,dermoscopic,ISIC_8762355,MILK study team,CC-BY-NC,instrument only,85.0,male,2.0,head_neck_face,0.659785521243445,0.238244295859546,0.004806528391857,0.143716386784696,0.302662321837898,0.155879081716849,0.119408197684481,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1733952/ISIC_8762355.jpg
IL_1744023,AKIEC,dermoscopic,ISIC_0129379,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,head_neck_face,0.220426329609506,0.59030016736954,0.399675575541234,0.361179177992722,0.347741270510634,0.301915262729319,0.24613078702815,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1744023/ISIC_0129379.jpg
IL_1763474,BCC,dermoscopic,ISIC_4971008,MILK study team,CC-BY-NC,instrument only,75.0,male,5.0,trunk,0.201131162427827,0.493048837067131,0.861094928486926,0.224638650993879,0.179905853358042,0.464123011594092,0.175179681524949,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1763474/ISIC_4971008.jpg
IL_1779696,BKL,dermoscopic,ISIC_8830839,MILK study team,CC-BY-NC,instrument only,50.0,female,2.0,lower_extremity,0.769115765071766,0.207104783211974,0.106537003925063,0.0453137143389365,0.386025763337844,0.0949190765550374,0.043905576538548,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1779696/ISIC_8830839.jpg
IL_1782345,MEL,dermoscopic,ISIC_4740515,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,head_neck_face,0.499972182295665,0.451125812408071,0.25166875606645,0.203411805394369,0.66289636111633,0.315000541588481,0.936300525870743,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1782345/ISIC_4740515.jpg
IL_1794572,BCC,dermoscopic,ISIC_4346905,MILK study team,CC-BY-NC,instrument only,40.0,male,3.0,head_neck_face,0.166390905441471,0.583185304457403,0.290514300992523,0.27063779154404,0.102863362150009,0.311331686157085,0.272699788904438,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1794572/ISIC_4346905.jpg
IL_1799297,MEL,dermoscopic,ISIC_2879057,MILK study team,CC-BY-NC,instrument only,70.0,male,4.0,trunk,0.516303327311605,0.231709858150349,0.0544995585781725,0.313440150668774,0.498649672565811,0.177671547048656,0.523100229810681,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1799297/ISIC_2879057.jpg
IL_1831903,BCC,dermoscopic,ISIC_9099090,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,trunk,0.08228759286149,0.404530775811009,0.664203906713612,0.739160647295911,0.120615632151583,0.416074843597294,0.0513661045131523,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1831903/ISIC_9099090.jpg
IL_1840884,BCC,dermoscopic,ISIC_7216810,MILK study team,CC-BY-NC,instrument only,50.0,female,4.0,trunk,0.18557490443113,0.285952321128189,0.182064015776873,0.646539000392268,0.206320643308543,0.282799453756767,0.467340224418019,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1840884/ISIC_7216810.jpg
IL_1844435,MEL,dermoscopic,ISIC_3627672,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,upper_extremity,0.40465777445713,0.235734811647236,0.0073154785211519,0.0436792853022666,0.915720109647103,0.147652212022173,0.200236063772783,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1844435/ISIC_3627672.jpg
IL_1845648,NV,dermoscopic,ISIC_3482891,MILK study team,CC-BY-NC,instrument only,15.0,male,2.0,trunk,0.475350253080305,0.59943822797163,0.303331530511901,0.283600552886446,0.896851610123346,0.160488016675387,0.533429883780842,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1845648/ISIC_3482891.jpg
IL_1846294,BCC,dermoscopic,ISIC_0283929,MILK study team,CC-BY-NC,instrument only,85.0,female,3.0,trunk,0.562304869180466,0.369157968160222,0.024566876173069,0.30736147688199,0.426547236999499,0.208992874718239,0.251476986855295,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1846294/ISIC_0283929.jpg
IL_1848853,MEL,dermoscopic,ISIC_0529633,MILK study team,CC-BY-NC,instrument only,40.0,female,1.0,head_neck_face,0.067850897770128,0.258517901348367,0.0123738242871286,0.0287086657847429,0.860311045078666,0.147680356709743,0.185690055339515,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1848853/ISIC_0529633.jpg
IL_1860378,BCC,dermoscopic,ISIC_1018753,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,head_neck_face,0.705733192821307,0.440701878487719,0.350455746894852,0.751045506363137,0.215738067631965,0.458595919469451,0.257254610998878,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1860378/ISIC_1018753.jpg
IL_1874719,BKL,dermoscopic,ISIC_4445549,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,head_neck_face,0.699051433512225,0.687684588466229,0.472067191036201,0.213116850848326,0.38472534243232,0.438415406187987,0.967081400623133,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1874719/ISIC_4445549.jpg
IL_1879101,AKIEC,dermoscopic,ISIC_1887239,MILK study team,CC-BY-NC,instrument only,80.0,female,3.0,head_neck_face,0.467334771342624,0.1624775260392,0.223236540927048,0.0499799317953663,0.462517192441098,0.170121285312853,0.317069872257057,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1879101/ISIC_1887239.jpg
IL_1904975,NV,dermoscopic,ISIC_0983974,MILK study team,CC-BY-NC,instrument only,60.0,male,2.0,trunk,0.156737819416011,0.331695287040107,0.142370954454006,0.317000276618618,0.845361843546421,0.298681553939548,0.337169678519128,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1904975/ISIC_0983974.jpg
IL_1921779,BCC,dermoscopic,ISIC_5191763,MILK study team,CC-BY-NC,instrument only,40.0,male,3.0,trunk,0.470772687188968,0.280729418226152,0.711911058420615,0.760059421250426,0.32938864430478,0.443493297588747,0.133176236371193,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1921779/ISIC_5191763.jpg
IL_1930653,BCC,dermoscopic,ISIC_0772947,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,upper_extremity,0.246017344035312,0.554337826303725,0.326478813916847,0.202784164918489,0.314859891873402,0.194252525654021,0.276198837302672,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1930653/ISIC_0772947.jpg
IL_1936294,BCC,dermoscopic,ISIC_5044856,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,lower_extremity,0.294441879323791,0.556376831879909,0.173935402927553,0.576699495671789,0.115496732104402,0.468501852071393,0.647441390328161,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1936294/ISIC_5044856.jpg
IL_1967474,VASC,dermoscopic,ISIC_5099169,MILK study team,CC-BY-NC,instrument only,15.0,male,4.0,trunk,0.346110541470102,0.202545506184726,0.279588339021643,0.245171000175807,0.363586564370879,0.210872886014113,0.34841404445625,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1967474/ISIC_5099169.jpg
IL_1981700,BCC,dermoscopic,ISIC_2601487,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,trunk,0.467501306991113,0.338369645863341,0.309344849932738,0.334853500469489,0.150157614788028,0.187124991468096,0.0549708740431319,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1981700/ISIC_2601487.jpg
IL_1993303,BCC,dermoscopic,ISIC_1341677,MILK study team,CC-BY-NC,instrument only,65.0,female,5.0,lower_extremity,0.258121131015929,0.347376741525124,0.157604698223998,0.274063544435341,0.289038662673544,0.343210546483823,0.0702213126913272,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1993303/ISIC_1341677.jpg
IL_2012452,NV,dermoscopic,ISIC_1741107,MILK study team,CC-BY-NC,instrument only,15.0,female,3.0,upper_extremity,0.134578237494911,0.537627687057833,0.0254638677846872,0.0493677781816387,0.877731946511422,0.2551110346276,0.364405876036033,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2012452/ISIC_1741107.jpg
IL_2015219,BKL,dermoscopic,ISIC_2554103,MILK study team,CC-BY-NC,instrument only,75.0,female,4.0,head_neck_face,0.0829686231272343,0.324041815883012,0.12036260277139,0.489323757891777,0.529913054301481,0.144589129606191,0.235236350646168,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2015219/ISIC_2554103.jpg
IL_2033265,BKL,dermoscopic,ISIC_4056904,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,upper_extremity,0.110290554895977,0.202665919673674,0.190514358617755,0.876843992542904,0.0784594007319106,0.159800793963785,0.107431214537644,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2033265/ISIC_4056904.jpg
IL_2040993,BCC,dermoscopic,ISIC_6261700,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,trunk,0.0712301480833419,0.425285575967063,0.223448684623431,0.341921500224334,0.573572282191588,0.209156652211015,0.199582306934522,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2040993/ISIC_6261700.jpg
IL_2048772,BCC,dermoscopic,ISIC_1424974,MILK study team,CC-BY-NC,instrument only,60.0,female,4.0,head_neck_face,0.104441661695139,0.600556082601154,0.667488763598139,0.428852970462294,0.158146138400277,0.386137147127494,0.0304849863729557,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2048772/ISIC_1424974.jpg
IL_2053741,SCCKA,dermoscopic,ISIC_1295245,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,head_neck_face,0.382573315659773,0.36537201878256,0.379695848772315,0.232398464984179,0.106021606634791,0.352604326277772,0.14306301197766,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2053741/ISIC_1295245.jpg
IL_2080493,BCC,dermoscopic,ISIC_0289289,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,upper_extremity,0.926413933666912,0.129092037472077,0.154752678875177,0.583617889359045,0.0948498770587786,0.332243961178989,0.0932832521877327,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2080493/ISIC_0289289.jpg
IL_2088373,NV,dermoscopic,ISIC_9313746,MILK study team,CC-BY-NC,instrument only,,female,3.0,lower_extremity,0.363558034782383,0.369227239373569,0.0194012488932688,0.0580891370465144,0.737705256443928,0.126382481850251,0.506636833067835,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2088373/ISIC_9313746.jpg
IL_2090783,BKL,dermoscopic,ISIC_6196546,MILK study team,CC-BY-NC,instrument only,55.0,female,3.0,head_neck_face,0.163177119066278,0.428583328137861,0.0564928604556587,0.43792862144753,0.640521197735434,0.266245809464982,0.235326043230236,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2090783/ISIC_6196546.jpg
IL_2096474,SCCKA,dermoscopic,ISIC_2872052,MILK study team,CC-BY-NC,instrument only,50.0,male,4.0,head_neck_face,0.236779969496397,0.276694404211265,0.169811047800794,0.110165277524605,0.272879053488107,0.30016517594557,0.181115299962744,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2096474/ISIC_2872052.jpg
IL_2101385,NV,dermoscopic,ISIC_5643547,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,head_neck_face,0.0743583159573057,0.352456982920908,0.640900433996699,0.153272168515291,0.112055510794772,0.217831329802379,0.32192029220795,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2101385/ISIC_5643547.jpg
IL_2103836,DF,dermoscopic,ISIC_1972798,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,lower_extremity,0.345877624376813,0.599872675726471,0.116882426529153,0.429874155437265,0.291624411438127,0.455641703395805,0.315513886765538,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2103836/ISIC_1972798.jpg
IL_2104146,BCC,dermoscopic,ISIC_0533507,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,lower_extremity,0.399917296191802,0.433636207281065,0.335924520216095,0.574730003674635,0.282828647666879,0.259787617146069,0.181798394775885,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2104146/ISIC_0533507.jpg
IL_2111173,BCC,dermoscopic,ISIC_8995161,MILK study team,CC-BY-NC,instrument only,55.0,female,3.0,head_neck_face,0.15268757203346,0.390732602080896,0.459279762259981,0.187638297301438,0.187490392936571,0.312668249358675,0.353663766647006,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2111173/ISIC_8995161.jpg
IL_2139485,BCC,dermoscopic,ISIC_4360620,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,trunk,0.447715994607579,0.202324146077342,0.152745822163288,0.243378775805315,0.062767635779493,0.210436533734196,0.23254734174904,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2139485/ISIC_4360620.jpg
IL_2152679,BCC,dermoscopic,ISIC_5090480,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,trunk,0.0437431264676365,0.578486258380721,0.592519548052667,0.35240011238531,0.308825562475406,0.380779800951861,0.590535991250691,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2152679/ISIC_5090480.jpg
IL_2156585,SCCKA,dermoscopic,ISIC_3722054,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,head_neck_face,0.368832230909434,0.401788170643422,0.284614935472904,0.291761253065509,0.140193939109058,0.458674936383411,0.0380740335640376,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2156585/ISIC_3722054.jpg
IL_2190354,BCC,dermoscopic,ISIC_6162714,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,foot,0.400207298149259,0.382913856126709,0.568691481090813,0.552612308624656,0.0883329380492983,0.625552701817653,0.44202114663096,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2190354/ISIC_6162714.jpg
IL_2194640,BCC,dermoscopic,ISIC_4964428,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,head_neck_face,0.623842011148955,0.467966524027984,0.44046804562662,0.557539672127293,0.181933377346535,0.703789633110931,0.182304353160089,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2194640/ISIC_4964428.jpg
IL_2197335,SCCKA,dermoscopic,ISIC_9005347,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,head_neck_face,0.749287255894198,0.269618618229353,0.0961473628527518,0.164851531269159,0.164061997564618,0.5310002555608,0.130670835150983,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2197335/ISIC_9005347.jpg
IL_2201077,NV,dermoscopic,ISIC_1280046,MILK study team,CC-BY-NC,instrument only,30.0,female,3.0,lower_extremity,0.453374321781989,0.331293929291574,0.0345374980910066,0.112477304065898,0.711607276246391,0.292722350724296,0.29372808967453,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2201077/ISIC_1280046.jpg
IL_2208727,BCC,dermoscopic,ISIC_5548095,MILK study team,CC-BY-NC,instrument only,60.0,male,5.0,head_neck_face,0.685864886369082,0.215692496189414,0.446021258952762,0.846193331188347,0.26923879331756,0.854162021362312,0.386877609669013,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2208727/ISIC_5548095.jpg
IL_2227380,NV,dermoscopic,ISIC_0497921,MILK study team,CC-BY-NC,instrument only,60.0,female,4.0,trunk,0.224585772098029,0.244555118561373,0.0790348394449875,0.0344960669996011,0.103294721472455,0.195503441469479,0.126953226718729,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2227380/ISIC_0497921.jpg
IL_2229268,MEL,dermoscopic,ISIC_7784876,MILK study team,CC-BY-NC,instrument only,60.0,male,4.0,lower_extremity,0.1543522011264,0.290589132401314,0.0329988854951033,0.0389356977650341,0.846084010823548,0.220112908022814,0.355064944519853,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2229268/ISIC_7784876.jpg
IL_2233251,VASC,dermoscopic,ISIC_2100961,MILK study team,CC-BY-NC,instrument only,70.0,male,2.0,trunk,0.28349663229199,0.318379955061184,0.476196509242878,0.761295537484353,0.173823833242273,0.473799262760541,0.867452646865851,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2233251/ISIC_2100961.jpg
IL_2234007,BCC,dermoscopic,ISIC_0799155,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,trunk,0.202514070791359,0.174718737468789,0.0619038014413376,0.487701494303305,0.0903160328483446,0.11030428256087,0.0336247627168368,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2234007/ISIC_0799155.jpg
IL_2239570,BCC,dermoscopic,ISIC_4796147,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,upper_extremity,0.0759125284952477,0.363140947634924,0.466210442870475,0.282121638385491,0.137455202298154,0.135075527326395,0.0335779962012288,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2239570/ISIC_4796147.jpg
IL_2241538,MEL,dermoscopic,ISIC_3665449,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,,0.225090074808587,0.263375901147303,0.0370716632303212,0.282100048839868,0.676898004692179,0.262688591841702,0.289245913163449,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2241538/ISIC_3665449.jpg
IL_2248965,BCC,dermoscopic,ISIC_0361189,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,trunk,0.639675285284243,0.436703582242574,0.108708331133485,0.278755965914685,0.593616173255626,0.473888546436877,0.425176250644408,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2248965/ISIC_0361189.jpg
IL_2255727,BKL,dermoscopic,ISIC_8403829,MILK study team,CC-BY-NC,instrument only,70.0,male,1.0,head_neck_face,0.42351262069433,0.570806535048926,0.0196843988247047,0.060305528841389,0.866309538316588,0.344604321060719,0.186209013474138,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2255727/ISIC_8403829.jpg
IL_2263451,BCC,dermoscopic,ISIC_4822631,MILK study team,CC-BY-NC,instrument only,60.0,male,4.0,trunk,0.148827481022369,0.258781886190594,0.196031279501516,0.0815735403476103,0.214561268580451,0.12298465631296,0.126891967812949,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2263451/ISIC_4822631.jpg
IL_2273559,BCC,dermoscopic,ISIC_5120362,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,head_neck_face,0.409671570011082,0.461223274124774,0.492855058397973,0.208399257488753,0.281689589578092,0.396574332001168,0.1487041948081,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2273559/ISIC_5120362.jpg
IL_2276592,BCC,dermoscopic,ISIC_7278817,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,head_neck_face,0.864541930613491,0.282168098469703,0.290254373391193,0.471697253922272,0.161054517608913,0.649581674956199,0.643491085834486,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2276592/ISIC_7278817.jpg
IL_2283112,BCC,dermoscopic,ISIC_7813760,MILK study team,CC-BY-NC,instrument only,35.0,male,3.0,head_neck_face,0.234142036714302,0.428577378943025,0.832286137851045,0.656773190713645,0.102783206007468,0.334389777407862,0.0408797275485595,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2283112/ISIC_7813760.jpg
IL_2292995,BCC,dermoscopic,ISIC_2215653,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,trunk,0.246203834149201,0.568323616989154,0.558788265263664,0.122661468900225,0.296860353248912,0.230922327748494,0.213841893830623,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2292995/ISIC_2215653.jpg
IL_2309123,NV,dermoscopic,ISIC_2464882,MILK study team,CC-BY-NC,instrument only,40.0,female,2.0,upper_extremity,0.446207558876609,0.188450194855913,0.0351222553423488,0.155538037054066,0.616244500510229,0.350600154610836,0.424824347151149,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2309123/ISIC_2464882.jpg
IL_2320070,SCCKA,dermoscopic,ISIC_4469657,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,upper_extremity,0.313645965337661,0.539969489617639,0.212091255659513,0.0968726217766639,0.284387394174256,0.207362433866099,0.150269594508658,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2320070/ISIC_4469657.jpg
IL_2326241,BCC,dermoscopic,ISIC_4561114,MILK study team,CC-BY-NC,instrument only,65.0,female,5.0,trunk,0.188669111654784,0.358704930776218,0.318691275384792,0.162927915514039,0.239517592589027,0.325213889086374,0.482525135179432,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2326241/ISIC_4561114.jpg
IL_2351136,BCC,dermoscopic,ISIC_5165824,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,upper_extremity,0.189536660760256,0.75036509436123,0.122174376823089,0.308865862479728,0.454527678837197,0.529199852733151,0.405115423576415,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2351136/ISIC_5165824.jpg
IL_2352772,NV,dermoscopic,ISIC_0119243,MILK study team,CC-BY-NC,instrument only,45.0,female,2.0,trunk,0.18353787526285,0.461243387973549,0.0799445317102822,0.154708618765296,0.650188895886336,0.400023889364014,0.189830726898211,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2352772/ISIC_0119243.jpg
IL_2371687,NV,dermoscopic,ISIC_9353865,MILK study team,CC-BY-NC,instrument only,35.0,male,4.0,trunk,0.114116255588484,0.35505559628479,0.0356567996310273,0.0527933193955143,0.748148046734711,0.182221457432424,0.741288548175146,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2371687/ISIC_9353865.jpg
IL_2373762,BKL,dermoscopic,ISIC_9995425,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,upper_extremity,0.186550355116428,0.426966625892648,0.564152249097661,0.683558243642295,0.177441380468756,0.286479050589336,0.300350012376402,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2373762/ISIC_9995425.jpg
IL_2383953,BCC,dermoscopic,ISIC_8118009,MILK study team,CC-BY-NC,instrument only,80.0,female,3.0,head_neck_face,0.13690807774337,0.343681706372071,0.42662041814964,0.222660838731192,0.296366361587202,0.354408272116791,0.0726941152157763,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2383953/ISIC_8118009.jpg
IL_2401021,SCCKA,dermoscopic,ISIC_9708493,MILK study team,CC-BY-NC,instrument only,80.0,female,3.0,head_neck_face,0.90273770630044,0.19888895110058,0.135716148398429,0.333085127636906,0.132489115568653,0.379147477847908,0.123087402582889,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2401021/ISIC_9708493.jpg
IL_2401585,BKL,dermoscopic,ISIC_2581720,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,trunk,0.306510103043336,0.295195729320987,0.0912446929498372,0.163964909448047,0.194734685120739,0.146150087904993,0.0438477421050404,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2401585/ISIC_2581720.jpg
IL_2401627,BCC,dermoscopic,ISIC_5442946,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,trunk,0.710392156721081,0.274278979451097,0.242935094415531,0.338813965410286,0.164828729326838,0.20561489262996,0.164829124363587,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2401627/ISIC_5442946.jpg
IL_2404701,NV,dermoscopic,ISIC_8019366,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,trunk,0.291166078873688,0.166187842667826,0.0818129846889268,0.223091483761746,0.311442609466787,0.162550154176135,0.0657703207495985,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2404701/ISIC_8019366.jpg
IL_2409650,BCC,dermoscopic,ISIC_4573444,MILK study team,CC-BY-NC,instrument only,75.0,male,5.0,lower_extremity,0.673787580678291,0.291044630608237,0.120090756225295,0.131383903381591,0.205221805795926,0.268573638172752,0.147828165691897,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2409650/ISIC_4573444.jpg
IL_2442202,SCCKA,dermoscopic,ISIC_8020571,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,head_neck_face,0.241695332662878,0.416316429858492,0.656626677094497,0.298294517360241,0.240807349264985,0.345404205025094,0.411793702809273,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2442202/ISIC_8020571.jpg
IL_2450142,MEL,dermoscopic,ISIC_5629312,MILK study team,CC-BY-NC,instrument only,65.0,male,2.0,trunk,0.406173188738553,0.307701393911777,0.281080123310521,0.414837864473274,0.816849880679309,0.262732867979009,0.674480138442337,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2450142/ISIC_5629312.jpg
IL_2450651,BKL,dermoscopic,ISIC_3431903,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,head_neck_face,0.561886884977043,0.351949237475475,0.143656634641317,0.0843892607347168,0.0791703095246268,0.310529354499359,0.200182406492584,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2450651/ISIC_3431903.jpg
IL_2454267,SCCKA,dermoscopic,ISIC_8882696,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,upper_extremity,0.561461069118382,0.314655307680477,0.0695763686567067,0.257952028159344,0.0729128075519428,0.278869196396353,0.116167061289759,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2454267/ISIC_8882696.jpg
IL_2478742,BCC,dermoscopic,ISIC_0880053,MILK study team,CC-BY-NC,instrument only,45.0,male,3.0,trunk,0.128084012315154,0.365067832138365,0.737496467296858,0.429234436146209,0.160528185405882,0.211633899462627,0.0962752476882334,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2478742/ISIC_0880053.jpg
IL_2484689,BKL,dermoscopic,ISIC_2094944,MILK study team,CC-BY-NC,instrument only,65.0,male,4.0,upper_extremity,0.382058765342744,0.487235341738727,0.0984080905713828,0.314248764270625,0.327269260942553,0.0784925864446224,0.150168724292267,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2484689/ISIC_2094944.jpg
IL_2493463,INF,dermoscopic,ISIC_9547255,MILK study team,CC-BY-NC,instrument only,40.0,male,0.0,head_neck_face,0.932889126731966,0.434705123686746,0.0083890717004196,0.400028822480766,0.216151746843284,0.21261000091958,0.51468161161737,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2493463/ISIC_9547255.jpg
IL_2497453,SCCKA,dermoscopic,ISIC_4272600,MILK study team,CC-BY-NC,instrument only,80.0,female,4.0,lower_extremity,0.793823922784909,0.071977069243963,0.01420445133365,0.078531935349527,0.100919340202406,0.119106352055906,0.0525140255978584,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2497453/ISIC_4272600.jpg
IL_2503315,MEL,dermoscopic,ISIC_2222084,MILK study team,CC-BY-NC,instrument only,60.0,male,1.0,head_neck_face,0.405816444176969,0.502252196133892,0.0509090770203183,0.182914612812989,0.905033618361181,0.330125042513898,0.401094293096799,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2503315/ISIC_2222084.jpg
IL_2513710,BCC,dermoscopic,ISIC_1166088,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,trunk,0.241217290470889,0.122399304066039,0.0508414724053721,0.341318953982104,0.206979700321806,0.208619170851174,0.0820209877597293,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2513710/ISIC_1166088.jpg
IL_2521173,NV,dermoscopic,ISIC_2170617,MILK study team,CC-BY-NC,instrument only,60.0,male,4.0,trunk,0.472568934899078,0.426840698006829,0.17283292099455,0.275126623350386,0.178681339333506,0.696340797056833,0.142407922144198,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2521173/ISIC_2170617.jpg
IL_2526379,NV,dermoscopic,ISIC_5175946,MILK study team,CC-BY-NC,instrument only,30.0,female,3.0,lower_extremity,0.112155083447753,0.535191421283821,0.136230430125713,0.0861629977856472,0.77915428184432,0.309763450315641,0.504856367902701,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2526379/ISIC_5175946.jpg
IL_2527689,BCC,dermoscopic,ISIC_1685767,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,lower_extremity,0.225795604142864,0.464565609867271,0.262096849727314,0.333646073115951,0.2466957462128,0.216985261716913,0.26317589306989,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2527689/ISIC_1685767.jpg
IL_2531194,NV,dermoscopic,ISIC_8544988,MILK study team,CC-BY-NC,instrument only,45.0,male,2.0,trunk,0.441871949497078,0.381914620658364,0.0038731283028642,0.092681719354237,0.852089916032952,0.202651528519212,0.720519181482814,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2531194/ISIC_8544988.jpg
IL_2538278,BKL,dermoscopic,ISIC_2552716,MILK study team,CC-BY-NC,instrument only,75.0,female,2.0,head_neck_face,0.284244025189528,0.254291391345512,0.0726826668357146,0.185516520229477,0.583428581401253,0.264498779451772,0.335708182355328,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2538278/ISIC_2552716.jpg
IL_2557121,BCC,dermoscopic,ISIC_6710161,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,head_neck_face,0.568617626408001,0.632203194421535,0.701454462234217,0.756280102564858,0.178701727270877,0.517852975570093,0.357542472680936,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2557121/ISIC_6710161.jpg
IL_2574343,SCCKA,dermoscopic,ISIC_5744822,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,lower_extremity,0.536648442363,0.279949328958065,0.128633854795071,0.343668688534724,0.138371032046995,0.327919257773034,0.11401380620951,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2574343/ISIC_5744822.jpg
IL_2582722,BCC,dermoscopic,ISIC_0485396,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,trunk,0.28268166489866,0.374964388203407,0.413350845474528,0.184442024515365,0.341001476199984,0.416504071216948,0.373650708867487,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2582722/ISIC_0485396.jpg
IL_2585626,AKIEC,dermoscopic,ISIC_5870525,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.214742129081731,0.247276405590336,0.486637778063109,0.429324227296785,0.241696267196423,0.327279715945596,0.0742495157084095,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2585626/ISIC_5870525.jpg
IL_2587560,BCC,dermoscopic,ISIC_5298476,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,lower_extremity,0.737767979502387,0.606384122021578,0.103469741781537,0.622486364383406,0.260451863749388,0.495534521612923,0.242261160590793,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2587560/ISIC_5298476.jpg
IL_2587941,BKL,dermoscopic,ISIC_3658597,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,head_neck_face,0.653541915370915,0.161829809065051,0.214741611005514,0.52444277275158,0.0529358867766912,0.373496880316575,0.0486653535715866,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2587941/ISIC_3658597.jpg
IL_2588652,BCC,dermoscopic,ISIC_7352384,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,trunk,0.789158602267154,0.512615575027507,0.256613973484042,0.648391449280228,0.238492897947839,0.452808999743313,0.26922601672214,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2588652/ISIC_7352384.jpg
IL_2590916,BCC,dermoscopic,ISIC_2013192,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,trunk,0.175076662752317,0.504809651435087,0.517356059653657,0.620110922564414,0.416984265909783,0.615835714002144,0.332634781248693,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2590916/ISIC_2013192.jpg
IL_2632652,NV,dermoscopic,ISIC_8678969,MILK study team,CC-BY-NC,instrument only,70.0,female,5.0,trunk,0.509252953819057,0.242282726442783,0.065741443422111,0.716336387422596,0.173382711244552,0.558279542309553,0.612365188037969,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2632652/ISIC_8678969.jpg
IL_2634520,BCC,dermoscopic,ISIC_3251714,MILK study team,CC-BY-NC,instrument only,65.0,female,5.0,upper_extremity,0.145855261572814,0.201594240177769,0.265108474609864,0.256333191249298,0.162313359109512,0.254336268679254,0.640407171386073,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2634520/ISIC_3251714.jpg
IL_2634842,BCC,dermoscopic,ISIC_4082454,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,lower_extremity,0.424415404294293,0.181033214373147,0.271392183569213,0.388853271353385,0.111395315052889,0.344895216987357,0.0751990645736476,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2634842/ISIC_4082454.jpg
IL_2653791,BCC,dermoscopic,ISIC_8675305,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,trunk,0.149880022129115,0.275103537562315,0.331653323173681,0.307230332218322,0.216654873869601,0.240726758564584,0.130439140583193,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2653791/ISIC_8675305.jpg
IL_2664685,NV,dermoscopic,ISIC_4753918,MILK study team,CC-BY-NC,instrument only,25.0,male,3.0,upper_extremity,0.349564352612168,0.391754180789675,0.0405303766743191,0.111466807388107,0.537413908603578,0.45593656326718,0.596461185478048,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2664685/ISIC_4753918.jpg
IL_2687877,BCC,dermoscopic,ISIC_2171027,MILK study team,CC-BY-NC,instrument only,85.0,female,3.0,head_neck_face,0.379259760443182,0.512384983645545,0.48037800651387,0.152031705714455,0.340826291159596,0.490928666792227,0.653399440733514,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2687877/ISIC_2171027.jpg
IL_2704222,BCC,dermoscopic,ISIC_3235332,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,trunk,0.0702112855714136,0.514642989313136,0.206471182666122,0.123544040482584,0.276244908461488,0.2626709816313,0.255148436804131,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2704222/ISIC_3235332.jpg
IL_2711226,SCCKA,dermoscopic,ISIC_4653572,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,trunk,0.420026872437925,0.0989348948985232,0.005826545167355,0.0763950538291933,0.0708123349306544,0.119664967379993,0.0169964200053197,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2711226/ISIC_4653572.jpg
IL_2714840,BCC,dermoscopic,ISIC_2907780,MILK study team,CC-BY-NC,instrument only,70.0,female,5.0,lower_extremity,0.115787439652221,0.577819766068306,0.360290122706845,0.391573175362857,0.163583052261672,0.442404088356976,0.201969767412613,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2714840/ISIC_2907780.jpg
IL_2715544,BKL,dermoscopic,ISIC_8880430,MILK study team,CC-BY-NC,instrument only,55.0,male,2.0,trunk,0.127664305468815,0.230436769731481,0.164211406631059,0.217918377613515,0.182714221156613,0.164307325194325,0.180702097158774,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2715544/ISIC_8880430.jpg
IL_2719812,BCC,dermoscopic,ISIC_6213875,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,trunk,0.211060356819293,0.308543612204832,0.0613441473464196,0.245545232756882,0.175911819715187,0.228403843655175,0.110230867642729,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2719812/ISIC_6213875.jpg
IL_2729138,BCC,dermoscopic,ISIC_1261731,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,upper_extremity,0.409568914321932,0.452910704428222,0.1119512308401,0.391639213605948,0.249363799120807,0.128068381309228,0.352275085495166,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2729138/ISIC_1261731.jpg
IL_2730356,BCC,dermoscopic,ISIC_7989453,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,trunk,0.182677398528286,0.322657800702564,0.338561342960807,0.199236643081656,0.523222442147498,0.16677728923865,0.168158858457029,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2730356/ISIC_7989453.jpg
IL_2740956,BCC,dermoscopic,ISIC_4671582,MILK study team,CC-BY-NC,instrument only,65.0,female,2.0,lower_extremity,0.252309915861324,0.320273653705815,0.0608539465786267,0.787158748511748,0.165093042910692,0.372304110356737,0.222476275902,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2740956/ISIC_4671582.jpg
IL_2748244,BCC,dermoscopic,ISIC_1014403,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,upper_extremity,0.483177647313833,0.385813665903897,0.53856877887906,0.125567478502173,0.421703146199305,0.301640225329001,0.327701624514101,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2748244/ISIC_1014403.jpg
IL_2751671,BCC,dermoscopic,ISIC_5501232,MILK study team,CC-BY-NC,instrument only,40.0,female,4.0,trunk,0.522855363824506,0.315614005171107,0.137704952337099,0.556259215943441,0.209968383778823,0.474606239472351,0.373339626195263,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2751671/ISIC_5501232.jpg
IL_2759260,BKL,dermoscopic,ISIC_1169219,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,hand,0.829226551885335,0.24609599765862,0.0254972085864324,0.244086069130961,0.0691438674429528,0.324933287249265,0.127731665042381,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2759260/ISIC_1169219.jpg
IL_2770986,MEL,dermoscopic,ISIC_8616033,MILK study team,CC-BY-NC,instrument only,45.0,male,2.0,trunk,0.13270273040384,0.472013765446189,0.909440916216989,0.876716617889714,0.10113499814777,0.721208980706887,0.55143229298349,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2770986/ISIC_8616033.jpg
IL_2775597,BCC,dermoscopic,ISIC_8505283,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,trunk,0.597826158554022,0.153708864598881,0.0791010395960022,0.608313859685481,0.218426386383037,0.264109086494853,0.399800037340956,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2775597/ISIC_8505283.jpg
IL_2779245,BCC,dermoscopic,ISIC_9766600,MILK study team,CC-BY-NC,instrument only,55.0,male,4.0,trunk,0.0661546214367674,0.574387045384664,0.261845386656313,0.111483914335445,0.241445706270962,0.194648217971224,0.170896613093604,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2779245/ISIC_9766600.jpg
IL_2794961,BCC,dermoscopic,ISIC_5963071,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,lower_extremity,0.786668890449213,0.467769856834893,0.418765240168563,0.708043791742008,0.14164615445332,0.573199730378933,0.269721309922027,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2794961/ISIC_5963071.jpg
IL_2811473,MEL,dermoscopic,ISIC_4243006,MILK study team,CC-BY-NC,instrument only,25.0,female,2.0,lower_extremity,0.65655607430386,0.350859318025068,0.0871756868283285,0.104233266135785,0.517947690605384,0.104834902120224,0.204079664402707,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2811473/ISIC_4243006.jpg
IL_2849550,BCC,dermoscopic,ISIC_3152857,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,trunk,0.236631504333104,0.38954695096887,0.0659605084385843,0.124727761976328,0.684489006985686,0.271879989068714,0.332554625131732,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2849550/ISIC_3152857.jpg
IL_2852064,BCC,dermoscopic,ISIC_9351886,MILK study team,CC-BY-NC,instrument only,70.0,female,4.0,head_neck_face,0.0796229415307939,0.649887614585275,0.649955827508796,0.727223303541952,0.0639478235838533,0.610045708348948,0.032433720518075,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2852064/ISIC_9351886.jpg
IL_2875964,BCC,dermoscopic,ISIC_1948728,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,head_neck_face,0.136000227545711,0.324766398746371,0.327395081970728,0.0386273329030634,0.166382323657422,0.113527730485645,0.226141515346523,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2875964/ISIC_1948728.jpg
IL_2895594,VASC,dermoscopic,ISIC_4642906,MILK study team,CC-BY-NC,instrument only,30.0,female,4.0,upper_extremity,0.602815189671489,0.367109644574779,0.671398253118887,0.43756376991096,0.13986649567294,0.504188473921652,0.201238158935474,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2895594/ISIC_4642906.jpg
IL_2899704,BCC,dermoscopic,ISIC_4887943,MILK study team,CC-BY-NC,instrument only,80.0,male,4.0,head_neck_face,0.209687977843602,0.235985569438631,0.40035904916589,0.144107892896809,0.181707381580828,0.313677703892797,0.524486417099835,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2899704/ISIC_4887943.jpg
IL_2908166,BKL,dermoscopic,ISIC_4630771,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,trunk,0.682940088522474,0.214996886423407,0.0540014073180661,0.26267654929669,0.0780476747699432,0.311603923106442,0.0774087077565062,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2908166/ISIC_4630771.jpg
IL_2922462,BCC,dermoscopic,ISIC_4542004,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,trunk,0.51636782491054,0.665080459590293,0.598505193046199,0.714813311211419,0.674326230070436,0.51461552475869,0.256544482224045,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2922462/ISIC_4542004.jpg
IL_2925087,AKIEC,dermoscopic,ISIC_3789914,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,trunk,0.157833558738661,0.409696659184498,0.476269229518567,0.814356321232688,0.209206250586846,0.367049746257836,0.143307506388768,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2925087/ISIC_3789914.jpg
IL_2955250,BCC,dermoscopic,ISIC_3540431,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.853558871741435,0.139937523667976,0.0490298768787497,0.485915112084508,0.0433716145221317,0.184942123714141,0.0720759663050478,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2955250/ISIC_3540431.jpg
IL_2958247,BCC,dermoscopic,ISIC_3275271,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,lower_extremity,0.626331916874702,0.355977322448392,0.502205650352353,0.483311570267639,0.240914339950824,0.15907589707063,0.185966654080214,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2958247/ISIC_3275271.jpg
IL_2986546,BCC,dermoscopic,ISIC_0197274,MILK study team,CC-BY-NC,instrument only,85.0,male,4.0,trunk,0.515279393783143,0.490706985470548,0.19413769654679,0.45725417172321,0.425812959921165,0.50218284875368,0.73736734596953,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2986546/ISIC_0197274.jpg
IL_2988717,BKL,dermoscopic,ISIC_3155654,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,upper_extremity,0.247539501989164,0.367640710885346,0.323856880124005,0.217149913269427,0.138914434592117,0.444074978666805,0.43552702971881,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2988717/ISIC_3155654.jpg
IL_2991025,BCC,dermoscopic,ISIC_9304429,MILK study team,CC-BY-NC,instrument only,65.0,male,5.0,trunk,0.191634515074845,0.37078169821838,0.278706756914123,0.49627382794749,0.351593025435334,0.275834545023446,0.321386629895841,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2991025/ISIC_9304429.jpg
IL_3007295,BCC,dermoscopic,ISIC_2593023,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,trunk,0.332468281679841,0.461216351106546,0.119540503244489,0.809447427900366,0.128796082086583,0.283981209430466,0.132491438841933,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3007295/ISIC_2593023.jpg
IL_3038127,BCC,dermoscopic,ISIC_3447417,MILK study team,CC-BY-NC,instrument only,60.0,female,4.0,trunk,0.132442541383424,0.396461429282523,0.35671918774409,0.0848453625486387,0.157942069421088,0.198211880467027,0.183375044447267,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3038127/ISIC_3447417.jpg
IL_3039363,BCC,dermoscopic,ISIC_7774908,MILK study team,CC-BY-NC,instrument only,45.0,female,5.0,trunk,0.178453563885716,0.416896577004219,0.585034040189118,0.258978432696204,0.195700949491188,0.195821761066094,0.061697121368868,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3039363/ISIC_7774908.jpg
IL_3067885,VASC,dermoscopic,ISIC_1996485,MILK study team,CC-BY-NC,instrument only,60.0,male,2.0,trunk,0.580836699597793,0.318067695853659,0.480972989059115,0.546058022478462,0.513364756433835,0.263635403572651,0.403606807748466,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3067885/ISIC_1996485.jpg
IL_3069330,BCC,dermoscopic,ISIC_9163561,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,trunk,0.268963315120929,0.453335841811917,0.439204479711803,0.687696074020816,0.214318150269192,0.345561930195276,0.662639174232329,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3069330/ISIC_9163561.jpg
IL_3070749,BCC,dermoscopic,ISIC_3881677,MILK study team,CC-BY-NC,instrument only,55.0,female,3.0,trunk,0.774047604024238,0.103655620094881,0.105708824991879,0.528367833794796,0.0900827141716244,0.211523754650672,0.0458619372410203,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3070749/ISIC_3881677.jpg
IL_3085250,NV,dermoscopic,ISIC_1479765,MILK study team,CC-BY-NC,instrument only,55.0,female,4.0,head_neck_face,0.186341682904429,0.437651471582717,0.0204887692875036,0.0643699241278559,0.33225591799179,0.209240634095572,0.52147405219561,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3085250/ISIC_1479765.jpg
IL_3088374,MEL,dermoscopic,ISIC_6635963,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,trunk,0.203094493092649,0.546299775736406,0.0511380719027928,0.0641700244594732,0.704565554622825,0.317376200154846,0.770562309805908,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3088374/ISIC_6635963.jpg
IL_3090203,BEN_OTH,dermoscopic,ISIC_3085694,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,head_neck_face,0.563464277896143,0.576459355305486,0.550050450342824,0.567357035294876,0.284235541201296,0.70405524543796,0.337549258352031,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3090203/ISIC_3085694.jpg
IL_3099616,BCC,dermoscopic,ISIC_1171731,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,head_neck_face,0.272623326756729,0.344619345123067,0.555315742804006,0.14598414750684,0.194432877315091,0.282964495629268,0.425628018150315,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3099616/ISIC_1171731.jpg
IL_3102698,SCCKA,dermoscopic,ISIC_0084581,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,hand,0.262649345575181,0.512447656934178,0.186947464148113,0.326689298794855,0.224493953797973,0.515115707345235,0.0932755020205704,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3102698/ISIC_0084581.jpg
IL_3104013,BCC,dermoscopic,ISIC_5174728,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,trunk,0.546678448504922,0.125513305377846,0.179305116509764,0.587856109767182,0.0795918318268664,0.270083434207136,0.162966110773911,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3104013/ISIC_5174728.jpg
IL_3122481,BCC,dermoscopic,ISIC_0427331,MILK study team,CC-BY-NC,instrument only,60.0,male,4.0,trunk,0.450490374731358,0.451030738876643,0.346411900242341,0.796115306845072,0.184990283219742,0.489166802554049,0.399416503096211,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3122481/ISIC_0427331.jpg
IL_3134757,BCC,dermoscopic,ISIC_4425251,MILK study team,CC-BY-NC,instrument only,65.0,male,4.0,trunk,0.213072272840989,0.177549457470525,0.224113365200596,0.888503700972365,0.0959803761077171,0.610146773804039,0.553865424372389,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3134757/ISIC_4425251.jpg
IL_3138805,SCCKA,dermoscopic,ISIC_2993083,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,upper_extremity,0.843928632296549,0.432427575697931,0.0522202904899,0.631162646407682,0.0782316569438627,0.316402722487708,0.128532859334861,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3138805/ISIC_2993083.jpg
IL_3151519,MEL,dermoscopic,ISIC_7615926,MILK study team,CC-BY-NC,instrument only,55.0,male,2.0,trunk,0.41945368150287,0.336355761889413,0.0129308010402038,0.0496329726982766,0.920236779272795,0.0863756662851378,0.66840613014181,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3151519/ISIC_7615926.jpg
IL_3154330,SCCKA,dermoscopic,ISIC_6623298,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,trunk,0.332238833358345,0.181080924474019,0.10184568580011,0.423323222067442,0.258031240272179,0.181843316239207,0.0334597724087245,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3154330/ISIC_6623298.jpg
IL_3154586,BCC,dermoscopic,ISIC_9850235,MILK study team,CC-BY-NC,instrument only,60.0,male,5.0,lower_extremity,0.625376886169442,0.315565407543181,0.12301499345297,0.2244056320767,0.113605253895718,0.279567044229943,0.767823400031788,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3154586/ISIC_9850235.jpg
IL_3160431,NV,dermoscopic,ISIC_3673916,MILK study team,CC-BY-NC,instrument only,25.0,female,3.0,head_neck_face,0.170244295872156,0.721173868186123,0.164564381298022,0.334916043250696,0.444991590352258,0.480587934610368,0.331215075153329,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3160431/ISIC_3673916.jpg
IL_3161525,BCC,dermoscopic,ISIC_5841767,MILK study team,CC-BY-NC,instrument only,80.0,female,4.0,lower_extremity,0.574188011717782,0.398169022363094,0.219661773272691,0.170344496269976,0.267989965529711,0.249867423257337,0.245155473333914,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3161525/ISIC_5841767.jpg
IL_3176703,BCC,dermoscopic,ISIC_0601743,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,lower_extremity,0.180105824743309,0.369247756230249,0.278867002901628,0.261733464546035,0.331399671611203,0.258758896600741,0.499948183499755,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3176703/ISIC_0601743.jpg
IL_3205474,MEL,dermoscopic,ISIC_9680458,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,lower_extremity,0.350286937982416,0.308765601425011,0.117024696567507,0.0712965553682152,0.845505943613804,0.153808982750699,0.26874750059771,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3205474/ISIC_9680458.jpg
IL_3224912,BCC,dermoscopic,ISIC_8715446,MILK study team,CC-BY-NC,instrument only,75.0,female,5.0,trunk,0.215616617901256,0.278085510721868,0.241982450991485,0.304690599999024,0.282200422222917,0.255603351200939,0.0956481085369485,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3224912/ISIC_8715446.jpg
IL_3237613,INF,dermoscopic,ISIC_2088540,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,head_neck_face,0.189257419413756,0.650496060480639,0.188760983711877,0.649319990416865,0.414772067083203,0.472093035128287,0.810464859636412,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3237613/ISIC_2088540.jpg
IL_3245331,AKIEC,dermoscopic,ISIC_6886883,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,head_neck_face,0.58741463080311,0.610002802263033,0.553072196317418,0.670698893714721,0.587520647163583,0.506369015133179,0.481571729803618,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3245331/ISIC_6886883.jpg
IL_3252153,VASC,dermoscopic,ISIC_8190843,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,upper_extremity,0.370344890827302,0.542770849859475,0.337874322332974,0.159899638974945,0.221415430787233,0.539523556421167,0.856187020509353,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3252153/ISIC_8190843.jpg
IL_3256866,SCCKA,dermoscopic,ISIC_7804815,MILK study team,CC-BY-NC,instrument only,85.0,male,5.0,head_neck_face,0.460289077222341,0.202103934885009,0.566126307705607,0.0757232652550324,0.058841566698105,0.508950186420316,0.141382674182321,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3256866/ISIC_7804815.jpg
IL_3259984,BCC,dermoscopic,ISIC_5925439,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,head_neck_face,0.206199094367905,0.712156518055472,0.922869877545647,0.735121570263138,0.211008560749579,0.487537553611678,0.114089854858594,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3259984/ISIC_5925439.jpg
IL_3260331,AKIEC,dermoscopic,ISIC_7118545,MILK study team,CC-BY-NC,instrument only,70.0,male,1.0,head_neck_face,0.10627287441123,0.64812150835966,0.0324080040922833,0.231469550610875,0.494176162581763,0.285291258177041,0.182499606975579,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3260331/ISIC_7118545.jpg
IL_3262094,BKL,dermoscopic,ISIC_7379628,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,lower_extremity,0.406306705670904,0.436307200665528,0.0196956277644337,0.260106678832152,0.86354412042716,0.251950266403927,0.31678449684751,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3262094/ISIC_7379628.jpg
IL_3263811,BCC,dermoscopic,ISIC_5447057,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,upper_extremity,0.195027160692643,0.529321579839266,0.540347677024187,0.959650271628649,0.059125122190496,0.582969593204428,0.329320107407111,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3263811/ISIC_5447057.jpg
IL_3288757,NV,dermoscopic,ISIC_5055083,MILK study team,CC-BY-NC,instrument only,70.0,male,2.0,trunk,0.351471438099281,0.338806085145172,0.0155465058117669,0.106167753840644,0.659109864524391,0.184326714100723,0.321369834160587,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3288757/ISIC_5055083.jpg
IL_3292594,BKL,dermoscopic,ISIC_1545290,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,head_neck_face,0.408189885424259,0.346892426025308,0.0184806955948031,0.162290632504401,0.624408042980514,0.263488462221592,0.0664836762063563,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3292594/ISIC_1545290.jpg
IL_3306844,BCC,dermoscopic,ISIC_5133092,MILK study team,CC-BY-NC,instrument only,65.0,male,2.0,head_neck_face,0.797209789933709,0.337024413086404,0.0926887080720896,0.122685982637081,0.467705011922681,0.212362875751244,0.258469338642713,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3306844/ISIC_5133092.jpg
IL_3307865,BCC,dermoscopic,ISIC_9592132,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.197971499705651,0.291852363730022,0.0973076693603329,0.709702100316643,0.15593638910451,0.503081756861356,0.421463193192669,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3307865/ISIC_9592132.jpg
IL_3311502,INF,dermoscopic,ISIC_9101809,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,trunk,0.667418805724073,0.621041691585401,0.205745049795072,0.608848392623729,0.23729861894235,0.653785469933362,0.37734567594347,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3311502/ISIC_9101809.jpg
IL_3319164,AKIEC,dermoscopic,ISIC_3204093,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,upper_extremity,0.253967821434791,0.645670887199466,0.348172493519996,0.239748718064106,0.346144744630185,0.501996923712638,0.376558689526276,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3319164/ISIC_3204093.jpg
IL_3323231,MEL,dermoscopic,ISIC_1916169,MILK study team,CC-BY-NC,instrument only,55.0,male,4.0,trunk,0.162218544601191,0.288628049912753,0.0194663718721908,0.0856204719632302,0.797461069583644,0.196396187323387,0.156939329877098,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3323231/ISIC_1916169.jpg
IL_3339470,BCC,dermoscopic,ISIC_9170556,MILK study team,CC-BY-NC,instrument only,60.0,male,4.0,trunk,0.257191875435161,0.389618384898828,0.212420668930026,0.654465253286548,0.146149549104433,0.205749573530726,0.437682150058766,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3339470/ISIC_9170556.jpg
IL_3339713,NV,dermoscopic,ISIC_4278930,MILK study team,CC-BY-NC,instrument only,60.0,male,4.0,trunk,0.223647095040095,0.248213203723146,0.0245038618835191,0.159311131181515,0.619609486543174,0.377180499107932,0.403152353967141,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3339713/ISIC_4278930.jpg
IL_3340189,BCC,dermoscopic,ISIC_3967417,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,upper_extremity,0.298407274770409,0.571750305006396,0.946550541084895,0.416209813730511,0.131367250886994,0.540753492053727,0.305524361277236,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3340189/ISIC_3967417.jpg
IL_3347593,BCC,dermoscopic,ISIC_3658823,MILK study team,CC-BY-NC,instrument only,65.0,female,5.0,trunk,0.106546693103355,0.55276190248616,0.700971775298303,0.233174471313439,0.231138490920773,0.422689497236198,0.203945308594786,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3347593/ISIC_3658823.jpg
IL_3351126,AKIEC,dermoscopic,ISIC_5991571,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,head_neck_face,0.276491390890091,0.166605936625845,0.06670482293777,0.266995923047577,0.068051894463331,0.416898341382766,0.0255671404067827,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3351126/ISIC_5991571.jpg
IL_3357031,BCC,dermoscopic,ISIC_0929356,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,trunk,0.521274350455093,0.345818208546586,0.0573702653895361,0.586145821355807,0.128232848602955,0.252699822052843,0.0763059947130311,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3357031/ISIC_0929356.jpg
IL_3361305,SCCKA,dermoscopic,ISIC_3982759,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,trunk,0.752330210315007,0.170832578235065,0.517878688878648,0.244481867866002,0.0381763693662502,0.449980706820101,0.107387926828595,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3361305/ISIC_3982759.jpg
IL_3363042,BCC,dermoscopic,ISIC_6297552,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,upper_extremity,0.244552291017922,0.74792744145298,0.646072401956758,0.634662408540941,0.542564246424767,0.351867778254045,0.295128227278004,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3363042/ISIC_6297552.jpg
IL_3383125,BCC,dermoscopic,ISIC_1657319,MILK study team,CC-BY-NC,instrument only,55.0,female,3.0,upper_extremity,0.227182140320803,0.181592983354457,0.132608004854476,0.128519674172038,0.250284486481134,0.158920102399196,0.0677523459756724,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3383125/ISIC_1657319.jpg
IL_3385490,MEL,dermoscopic,ISIC_1009291,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,head_neck_face,0.213219409034297,0.32354663085589,0.10463824653637,0.0616288075014962,0.878126755500528,0.0702897096083874,0.209265195117635,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3385490/ISIC_1009291.jpg
IL_3405101,BCC,dermoscopic,ISIC_9986730,MILK study team,CC-BY-NC,instrument only,65.0,male,4.0,upper_extremity,0.33060457318167,0.753461998301555,0.323367573535231,0.423922383867258,0.323538287681307,0.507833157947603,0.489899611661814,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3405101/ISIC_9986730.jpg
IL_3423821,NV,dermoscopic,ISIC_7201198,MILK study team,CC-BY-NC,instrument only,45.0,female,4.0,trunk,0.0758168540424699,0.446644987472181,0.0729203578672577,0.21889463093039,0.755927906122709,0.222130497181091,0.568395371791647,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3423821/ISIC_7201198.jpg
IL_3423886,BCC,dermoscopic,ISIC_8945348,MILK study team,CC-BY-NC,instrument only,65.0,male,5.0,head_neck_face,0.309193712970654,0.318096409939297,0.31675521077919,0.696634710233539,0.087998994724351,0.192452148204747,0.120436493485714,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3423886/ISIC_8945348.jpg
IL_3424617,NV,dermoscopic,ISIC_3191687,MILK study team,CC-BY-NC,instrument only,70.0,male,2.0,upper_extremity,0.70871642353395,0.396120398930011,0.0441455214601438,0.362913838384936,0.580857365758324,0.357829703386075,0.384399914117841,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3424617/ISIC_3191687.jpg
IL_3447838,BKL,dermoscopic,ISIC_7372500,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,trunk,0.330615571518033,0.406260023703986,0.305449026731705,0.0825972702541299,0.307379512660656,0.143869512300463,0.120934050529599,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3447838/ISIC_7372500.jpg
IL_3461218,BCC,dermoscopic,ISIC_2883712,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,lower_extremity,0.304559711451044,0.345020998422459,0.122285169885336,0.590439007827794,0.12729618853759,0.310731620063278,0.144096993126151,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3461218/ISIC_2883712.jpg
IL_3462420,BCC,dermoscopic,ISIC_3733902,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,head_neck_face,0.855923766028144,0.158043871967757,0.0774541728045706,0.317671478576034,0.209208501312229,0.211337768233919,0.0372998312342639,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3462420/ISIC_3733902.jpg
IL_3464725,BCC,dermoscopic,ISIC_8114137,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,trunk,0.332335596748403,0.284828289273112,0.113115513754543,0.383887727776108,0.164838005789609,0.183115703079973,0.297470476123481,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3464725/ISIC_8114137.jpg
IL_3467743,BCC,dermoscopic,ISIC_9002119,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,trunk,0.642943298667918,0.29642222937306,0.424637004082199,0.754933932529532,0.17494521892523,0.585252171703599,0.166359693790481,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3467743/ISIC_9002119.jpg
IL_3487572,SCCKA,dermoscopic,ISIC_2698174,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,head_neck_face,0.438237595841914,0.226475580504352,0.238848845092574,0.795021359851615,0.0781601521150264,0.47768154883029,0.139212898465972,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3487572/ISIC_2698174.jpg
IL_3496860,NV,dermoscopic,ISIC_0106322,MILK study team,CC-BY-NC,altered,50.0,female,4.0,lower_extremity,0.327843160591408,0.121357260617212,0.0049445229146145,0.0313858021969426,0.7695070195158,0.0977915274316186,0.253097904494714,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3496860/ISIC_0106322.jpg
IL_3498244,SCCKA,dermoscopic,ISIC_5728005,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,trunk,0.644033406435269,0.446212699735045,0.237026211149471,0.283405932526154,0.0828259857839904,0.257875433808568,0.0752088603014192,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3498244/ISIC_5728005.jpg
IL_3507872,BKL,dermoscopic,ISIC_5967889,MILK study team,CC-BY-NC,instrument only,65.0,male,4.0,trunk,0.543066192681715,0.205004700980897,0.268930236240972,0.363472445529816,0.0727566384397466,0.525147403322497,0.0589887120191138,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3507872/ISIC_5967889.jpg
IL_3511667,BKL,dermoscopic,ISIC_4329526,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,trunk,0.558214074404345,0.298109516733719,0.0811363618237731,0.0862366345144191,0.248724014498696,0.260283860222892,0.0249131740596426,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3511667/ISIC_4329526.jpg
IL_3518780,BCC,dermoscopic,ISIC_3313166,MILK study team,CC-BY-NC,instrument only,85.0,female,3.0,head_neck_face,0.465940067224716,0.229275441797324,0.171485455050645,0.41800152255378,0.251830985520414,0.300769679242832,0.178494029536379,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3518780/ISIC_3313166.jpg
IL_3529988,BCC,dermoscopic,ISIC_9399207,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,head_neck_face,0.154711503125968,0.279975704941514,0.247818120218922,0.167404822489128,0.373570659410227,0.364567588433633,0.293049459712677,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3529988/ISIC_9399207.jpg
IL_3532115,BKL,dermoscopic,ISIC_3425683,MILK study team,CC-BY-NC,instrument only,55.0,female,3.0,trunk,0.406728443163082,0.278747556086951,0.264269788368096,0.350466228816398,0.403339362185855,0.43707483189528,0.429043381158919,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3532115/ISIC_3425683.jpg
IL_3545610,AKIEC,dermoscopic,ISIC_1163119,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,head_neck_face,0.713217437273569,0.563512891498304,0.144129350956705,0.6055395357173,0.303718153045626,0.547308988940816,0.155923441512028,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3545610/ISIC_1163119.jpg
IL_3558954,BCC,dermoscopic,ISIC_8251827,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,lower_extremity,0.0894256218531524,0.376971321995895,0.15554124165664,0.226982581606973,0.196419498237694,0.365989718335067,0.377399281650685,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3558954/ISIC_8251827.jpg
IL_3559217,NV,dermoscopic,ISIC_7544069,MILK study team,CC-BY-NC,instrument only,60.0,male,4.0,trunk,0.0444000635542558,0.654552354397956,0.255756325161562,0.148761101794987,0.711333906848741,0.636566995494011,0.552741713381673,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3559217/ISIC_7544069.jpg
IL_3566495,BCC,dermoscopic,ISIC_5517500,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,trunk,0.326799138489363,0.439598005389936,0.37536780258211,0.237825610824873,0.319115911906977,0.522374298165384,0.268537635822331,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3566495/ISIC_5517500.jpg
IL_3569570,BCC,dermoscopic,ISIC_5246161,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,trunk,0.257292141509688,0.603239536873317,0.549154676033031,0.360157880623419,0.199450255552668,0.457618662512966,0.430968926298775,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3569570/ISIC_5246161.jpg
IL_3576775,BCC,dermoscopic,ISIC_3456998,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,head_neck_face,0.774345190962738,0.194314489203852,0.286839083715387,0.430169158379443,0.135353366598695,0.324752009820162,0.020737570630841,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3576775/ISIC_3456998.jpg
IL_3603601,AKIEC,dermoscopic,ISIC_5745120,MILK study team,CC-BY-NC,instrument only,80.0,female,4.0,head_neck_face,0.384240419246965,0.318383010364372,0.108149568300035,0.505040242065865,0.168658703511283,0.13928736515161,0.156398204246836,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3603601/ISIC_5745120.jpg
IL_3615210,BCC,dermoscopic,ISIC_8904388,MILK study team,CC-BY-NC,instrument only,55.0,male,5.0,trunk,0.806681118707601,0.155720323212658,0.118694608632203,0.177042762837528,0.0633830282289602,0.124214930529751,0.14842536767438,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3615210/ISIC_8904388.jpg
IL_3615329,BCC,dermoscopic,ISIC_6952812,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,trunk,0.619562680251986,0.719560297883754,0.335426875124247,0.707280811835582,0.296127878716847,0.568940942496111,0.233821323900686,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3615329/ISIC_6952812.jpg
IL_3619521,BCC,dermoscopic,ISIC_0163776,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,trunk,0.29178772183084,0.314978381611539,0.643116179972906,0.686828452059368,0.212590058184956,0.254170972068327,0.134568380498055,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3619521/ISIC_0163776.jpg
IL_3627285,NV,dermoscopic,ISIC_2832798,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.0609996399449801,0.538723437961827,0.0411526970637752,0.115087710888794,0.83791903210582,0.300258281098487,0.764869654011402,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3627285/ISIC_2832798.jpg
IL_3635889,BCC,dermoscopic,ISIC_8614640,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,upper_extremity,0.0699406754796883,0.697837960997461,0.530434541990266,0.331032746011738,0.390435251675481,0.40497127771118,0.3945019338984,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3635889/ISIC_8614640.jpg
IL_3638399,BKL,dermoscopic,ISIC_3822722,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,trunk,0.118409781297399,0.428492926379747,0.453517032950069,0.326702416314259,0.155852490105757,0.503452608567184,0.186205409365829,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3638399/ISIC_3822722.jpg
IL_3640524,NV,dermoscopic,ISIC_9297268,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,head_neck_face,0.198382005196117,0.197538681034292,0.219377497802864,0.463527881254405,0.285768247489326,0.281059018648878,0.203876913035476,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3640524/ISIC_9297268.jpg
IL_3647714,NV,dermoscopic,ISIC_9875968,MILK study team,CC-BY-NC,instrument only,25.0,female,1.0,trunk,0.123688631427928,0.274847163754113,0.0180497873993486,0.0630490857894079,0.673451248426455,0.136986560666426,0.41678433213734,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3647714/ISIC_9875968.jpg
IL_3650991,BCC,dermoscopic,ISIC_6457249,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,trunk,0.0556241438615877,0.404456994243147,0.30739543612407,0.441901367867978,0.213919369245517,0.355054313032164,0.354933569169267,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3650991/ISIC_6457249.jpg
IL_3686069,NV,dermoscopic,ISIC_2061756,MILK study team,CC-BY-NC,instrument only,60.0,female,4.0,lower_extremity,0.38403913231892,0.43405289024594,0.250666683605915,0.549005051141257,0.629026969558895,0.504150429633496,0.566081950941111,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3686069/ISIC_2061756.jpg
IL_3703578,AKIEC,dermoscopic,ISIC_3633147,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,upper_extremity,0.39199300830047,0.255561545878913,0.0658069188247517,0.0694550688608943,0.234287979454367,0.236502052351077,0.0465556518746544,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3703578/ISIC_3633147.jpg
IL_3703850,NV,dermoscopic,ISIC_7974235,MILK study team,CC-BY-NC,instrument only,10.0,female,3.0,lower_extremity,0.0140431966004282,0.245075006782997,0.0611106910810459,0.0592726847230786,0.709955637396973,0.183614559956167,0.230445926244467,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3703850/ISIC_7974235.jpg
IL_3709940,MEL,dermoscopic,ISIC_1151059,MILK study team,CC-BY-NC,instrument only,55.0,male,2.0,trunk,0.544943336188614,0.305504723625185,0.0368007639428417,0.257047593327543,0.493513827382205,0.414750996469059,0.054264016249746,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3709940/ISIC_1151059.jpg
IL_3724893,BCC,dermoscopic,ISIC_0561102,MILK study team,CC-BY-NC,instrument only,65.0,male,4.0,lower_extremity,0.260421966801771,0.329166201954926,0.412917641859341,0.468571340819191,0.315719272469565,0.47942804696501,0.454318361376678,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3724893/ISIC_0561102.jpg
IL_3727802,BCC,dermoscopic,ISIC_9319124,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,head_neck_face,0.0763929056446355,0.567598479189139,0.829444960947047,0.382238967398571,0.262997758869474,0.533393166331568,0.208031915746627,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3727802/ISIC_9319124.jpg
IL_3730515,BCC,dermoscopic,ISIC_1386430,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,head_neck_face,0.192204602001221,0.255220056991808,0.188623474075354,0.417311594801364,0.140492819509049,0.156189228916583,0.0358457506185657,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3730515/ISIC_1386430.jpg
IL_3739398,BCC,dermoscopic,ISIC_8501407,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,head_neck_face,0.528872955373361,0.175610676868533,0.232568902004874,0.362406435169111,0.146680912773814,0.258793422313768,0.0507225078028743,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3739398/ISIC_8501407.jpg
IL_3752602,BCC,dermoscopic,ISIC_9316861,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,head_neck_face,0.182120665957824,0.418639146855094,0.861365714068882,0.345523846751609,0.360815833740725,0.344367895410074,0.209847865900923,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3752602/ISIC_9316861.jpg
IL_3758712,BKL,dermoscopic,ISIC_2441019,MILK study team,CC-BY-NC,instrument only,60.0,male,5.0,trunk,0.0504718573919407,0.543567356242691,0.794219505843904,0.208735373676967,0.229422359355308,0.340502015628834,0.152177415539226,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3758712/ISIC_2441019.jpg
IL_3770255,MEL,dermoscopic,ISIC_1538553,MILK study team,CC-BY-NC,instrument only,80.0,male,2.0,head_neck_face,0.797187259206091,0.168950047615008,0.0146554632102729,0.209398313966458,0.670083356286095,0.12456017153373,0.102100357263493,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3770255/ISIC_1538553.jpg
IL_3772010,MAL_OTH,dermoscopic,ISIC_7194453,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,trunk,0.386546434232858,0.295491221119612,0.0490259082634796,0.187260336203165,0.469226495698406,0.302863859424392,0.448987378764579,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3772010/ISIC_7194453.jpg
IL_3783944,AKIEC,dermoscopic,ISIC_3678654,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,lower_extremity,0.151309220449616,0.224351960218248,0.278229580449023,0.683716639012395,0.100910357791111,0.207900055388367,0.138902461166255,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3783944/ISIC_3678654.jpg
IL_3787537,BCC,dermoscopic,ISIC_9987696,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,trunk,0.221188161229183,0.361361973652166,0.378098105534578,0.421602569296078,0.165906015634847,0.669363883369558,0.287452861244945,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3787537/ISIC_9987696.jpg
IL_3827955,BKL,dermoscopic,ISIC_6590453,MILK study team,CC-BY-NC,instrument only,80.0,male,2.0,head_neck_face,0.436685969378187,0.343711277272652,0.053460218279948,0.270276266586781,0.889516293091489,0.14907120667537,0.533556313270073,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3827955/ISIC_6590453.jpg
IL_3844100,SCCKA,dermoscopic,ISIC_7994643,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,lower_extremity,0.414528048732859,0.272683808382045,0.0433257940455143,0.152380872146703,0.0875801155854244,0.481091528091159,0.0614166369492695,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3844100/ISIC_7994643.jpg
IL_3852871,NV,dermoscopic,ISIC_3861361,MILK study team,CC-BY-NC,instrument only,35.0,female,3.0,trunk,0.0804998158965334,0.457341313175386,0.0731677153366027,0.0843216468903524,0.909855100293157,0.354261828534821,0.730491938229201,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3852871/ISIC_3861361.jpg
IL_3853188,DF,dermoscopic,ISIC_1962329,MILK study team,CC-BY-NC,instrument only,60.0,male,4.0,upper_extremity,0.852232707304874,0.535993623506693,0.27509639082413,0.464103880563324,0.0788637039732447,0.755639271000126,0.478924097206017,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3853188/ISIC_1962329.jpg
IL_3857855,NV,dermoscopic,ISIC_7174859,MILK study team,CC-BY-NC,instrument only,5.0,female,4.0,upper_extremity,0.0951852108800643,0.432853015346373,0.0713904885393342,0.201936847342157,0.857786119387334,0.292485051099371,0.94839315975002,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3857855/ISIC_7174859.jpg
IL_3859587,BCC,dermoscopic,ISIC_1070485,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,head_neck_face,0.310245783778428,0.292222665053217,0.177623963705822,0.650402141394444,0.239829099303501,0.149069202939119,0.0515674054605763,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3859587/ISIC_1070485.jpg
IL_3884267,NV,dermoscopic,ISIC_5993743,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,lower_extremity,0.560956454984603,0.309772509476303,0.0186749847285871,0.0575906603368802,0.787160186004462,0.128221722342993,0.119962030903816,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3884267/ISIC_5993743.jpg
IL_3884933,BCC,dermoscopic,ISIC_2914456,MILK study team,CC-BY-NC,instrument only,45.0,male,3.0,head_neck_face,0.22731988590538,0.427615212692579,0.371483830758237,0.473657456595703,0.546127645929365,0.258146540944146,0.4418929622066,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3884933/ISIC_2914456.jpg
IL_3887392,BCC,dermoscopic,ISIC_7169372,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,head_neck_face,0.782414746568561,0.0816406915618725,0.0736956092284421,0.165690589675779,0.138809106772529,0.134752848696853,0.0286640970390844,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3887392/ISIC_7169372.jpg
IL_3892342,BCC,dermoscopic,ISIC_3420179,MILK study team,CC-BY-NC,instrument only,75.0,female,4.0,head_neck_face,0.304765744814129,0.238546700670521,0.417274226859678,0.772395877274661,0.0692603977589586,0.437568177000275,0.120645983534931,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3892342/ISIC_3420179.jpg
IL_3895392,SCCKA,dermoscopic,ISIC_6467881,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,lower_extremity,0.809037337041905,0.323048507660816,0.11316497699675,0.0643428354265566,0.128105493744944,0.196458475728567,0.0643575471887197,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3895392/ISIC_6467881.jpg
IL_3916438,NV,dermoscopic,ISIC_8723719,MILK study team,CC-BY-NC,instrument only,40.0,female,4.0,head_neck_face,0.5287423821824,0.481967729306481,0.0444193983551222,0.242159856723734,0.841625746665862,0.311565144452254,0.401768834152914,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3916438/ISIC_8723719.jpg
IL_3931647,BKL,dermoscopic,ISIC_2022315,MILK study team,CC-BY-NC,instrument only,35.0,female,2.0,lower_extremity,0.634924811898803,0.342598041889331,0.0462231070266092,0.203799985690227,0.128566101471387,0.343727354339804,0.171027171389833,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3931647/ISIC_2022315.jpg
IL_3935951,NV,dermoscopic,ISIC_1544622,MILK study team,CC-BY-NC,instrument only,20.0,male,3.0,lower_extremity,0.175625190292318,0.32369329067118,0.109087642828792,0.152840290664229,0.828431828618655,0.179568543089101,0.68943204467726,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3935951/ISIC_1544622.jpg
IL_3938261,BCC,dermoscopic,ISIC_4157522,MILK study team,CC-BY-NC,instrument only,40.0,male,5.0,trunk,0.850933440352556,0.444093800461866,0.0518148138182235,0.453620535944862,0.11486323920003,0.392581501660737,0.480171420051322,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3938261/ISIC_4157522.jpg
IL_3948113,NV,dermoscopic,ISIC_1909868,MILK study team,CC-BY-NC,instrument only,55.0,female,1.0,lower_extremity,0.708631261642305,0.460865743701658,0.0191307511559133,0.258355734976446,0.696320971873286,0.344883767825794,0.53810228260198,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3948113/ISIC_1909868.jpg
IL_3952993,BCC,dermoscopic,ISIC_1335894,MILK study team,CC-BY-NC,instrument only,85.0,female,2.0,head_neck_face,0.647238997948928,0.460669102191972,0.0394194237668254,0.536402731097761,0.178496486291375,0.352996135154379,0.279754435036554,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3952993/ISIC_1335894.jpg
IL_3954142,INF,dermoscopic,ISIC_7436139,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,trunk,0.144288625774361,0.191400012790835,0.27723566700091,0.862556827741915,0.235545237369482,0.452637388563131,0.596262957793335,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3954142/ISIC_7436139.jpg
IL_3955700,BKL,dermoscopic,ISIC_5460617,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,trunk,0.429939448025053,0.301987441403666,0.0170897219857964,0.0949874729836352,0.719166802588673,0.289585779727785,0.101172054236297,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3955700/ISIC_5460617.jpg
IL_3980813,BCC,dermoscopic,ISIC_2521142,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,trunk,0.555946262118159,0.215896742301708,0.246989742830076,0.852603290799919,0.0406354741050639,0.48162432494443,0.163854840331369,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3980813/ISIC_2521142.jpg
IL_3985289,BCC,dermoscopic,ISIC_0495769,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,lower_extremity,0.145719610739535,0.304691739997835,0.182734449682056,0.639460275128036,0.148075714769598,0.285568841415457,0.11681123837859,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3985289/ISIC_0495769.jpg
IL_4022270,BCC,dermoscopic,ISIC_5627117,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,upper_extremity,0.133239580444342,0.441863906105262,0.0396656619839683,0.034546744726365,0.379104613303549,0.153702957290854,0.30263125066886,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4022270/ISIC_5627117.jpg
IL_4032285,BCC,dermoscopic,ISIC_3202131,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,trunk,0.266091064364189,0.314919686455188,0.603026986893074,0.922363569015294,0.124286870270816,0.601850110409992,0.184647536672468,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4032285/ISIC_3202131.jpg
IL_4049256,BCC,dermoscopic,ISIC_2470660,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,upper_extremity,0.354764633119044,0.365667387380852,0.166942171263936,0.150429212591908,0.246585096229019,0.357195585578859,0.086365517557125,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4049256/ISIC_2470660.jpg
IL_4061949,NV,dermoscopic,ISIC_6887594,MILK study team,CC-BY-NC,instrument only,5.0,male,3.0,trunk,0.183796440588112,0.304040689101066,0.0555464525135262,0.0444318474812902,0.666630962759851,0.246868270413342,0.455713839145309,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4061949/ISIC_6887594.jpg
IL_4072310,NV,dermoscopic,ISIC_2804242,MILK study team,CC-BY-NC,instrument only,45.0,male,4.0,trunk,0.100579175901422,0.378252549283836,0.0234559498322903,0.10160149476879,0.596871251749974,0.124603887018599,0.334730549443271,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4072310/ISIC_2804242.jpg
IL_4095279,BCC,dermoscopic,ISIC_7527742,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,trunk,0.145117673046223,0.206164063074454,0.342867316119169,0.875499961029184,0.118971552047842,0.348533051288569,0.208823695561304,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4095279/ISIC_7527742.jpg
IL_4100089,NV,dermoscopic,ISIC_2621421,MILK study team,CC-BY-NC,instrument only,40.0,male,4.0,trunk,0.103790645219237,0.237962445942176,0.0172079609606117,0.113799605255078,0.842908950019485,0.0726160126991457,0.456789093336151,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4100089/ISIC_2621421.jpg
IL_4109255,SCCKA,dermoscopic,ISIC_5209351,MILK study team,CC-BY-NC,instrument only,70.0,male,4.0,head_neck_face,0.35971456100253,0.198208014333578,0.260195736370391,0.445732659524797,0.303394262816866,0.332213731604676,0.145634594301212,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4109255/ISIC_5209351.jpg
IL_4122724,BCC,dermoscopic,ISIC_7541402,MILK study team,CC-BY-NC,instrument only,55.0,female,3.0,lower_extremity,0.77346906901457,0.289421902528381,0.495518531794338,0.493090237203276,0.128067628727974,0.140747134797744,0.0606845350684885,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4122724/ISIC_7541402.jpg
IL_4124169,NV,dermoscopic,ISIC_9900723,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,trunk,0.553682083081052,0.40238027730611,0.284164077391207,0.287326090105475,0.318335023638881,0.402332179484792,0.432336488555947,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4124169/ISIC_9900723.jpg
IL_4125951,BCC,dermoscopic,ISIC_7414517,MILK study team,CC-BY-NC,instrument only,35.0,male,3.0,trunk,0.628799474152306,0.375154238391102,0.116916427870358,0.631542893573213,0.0318729419148021,0.377276899673889,0.157445331990946,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4125951/ISIC_7414517.jpg
IL_4130866,BCC,dermoscopic,ISIC_9247586,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,head_neck_face,0.440037567667136,0.397268599731573,0.518911468227861,0.333674288164135,0.195939830296961,0.32935146307725,0.190128922252502,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4130866/ISIC_9247586.jpg
IL_4137661,SCCKA,dermoscopic,ISIC_3760355,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,upper_extremity,0.237900195634896,0.32412378166064,0.0162131366785573,0.197100898819025,0.0534883707827383,0.621376707081157,0.03372133199118,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4137661/ISIC_3760355.jpg
IL_4153539,BCC,dermoscopic,ISIC_8846554,MILK study team,CC-BY-NC,instrument only,55.0,female,3.0,trunk,0.0660318505643798,0.545193817362348,0.819953260977808,0.280934649441446,0.282434488152691,0.428518288313239,0.167242243199321,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4153539/ISIC_8846554.jpg
IL_4156451,BCC,dermoscopic,ISIC_9227362,MILK study team,CC-BY-NC,instrument only,45.0,male,3.0,trunk,0.80272600804296,0.735282345853042,0.571176029670468,0.829200078254419,0.291032840580537,0.542662539780646,0.419605489745757,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4156451/ISIC_9227362.jpg
IL_4163888,BCC,dermoscopic,ISIC_5049585,MILK study team,CC-BY-NC,instrument only,50.0,female,5.0,head_neck_face,0.20119143808055,0.330984442795747,0.84083202664989,0.607276409918854,0.118614749140865,0.303941464731053,0.0949399105448671,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4163888/ISIC_5049585.jpg
IL_4164624,BCC,dermoscopic,ISIC_1156729,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,lower_extremity,0.274827801826367,0.305231578301564,0.15780077138349,0.175844720418857,0.263800286419418,0.360782907348241,0.439721733005598,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4164624/ISIC_1156729.jpg
IL_4182529,BCC,dermoscopic,ISIC_1350578,MILK study team,CC-BY-NC,instrument only,80.0,male,4.0,head_neck_face,0.452475831027168,0.329179061638747,0.637698427908345,0.256639967461756,0.243924422975043,0.305134453326133,0.30547842467802,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4182529/ISIC_1350578.jpg
IL_4209948,SCCKA,dermoscopic,ISIC_4738070,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,trunk,0.622921116833675,0.147231155389773,0.151998299570468,0.0629506983766233,0.244696950977707,0.278403707729031,0.0923098032806697,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4209948/ISIC_4738070.jpg
IL_4260249,BCC,dermoscopic,ISIC_5243282,MILK study team,CC-BY-NC,instrument only,65.0,female,4.0,head_neck_face,0.895842191228552,0.244659835870745,0.0395658391821956,0.151186765026369,0.108744221431101,0.165056873126976,0.326001600453932,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4260249/ISIC_5243282.jpg
IL_4269684,SCCKA,dermoscopic,ISIC_1408694,MILK study team,CC-BY-NC,instrument only,60.0,male,4.0,head_neck_face,0.616975541698817,0.484291329887187,0.251648085755786,0.297955259142365,0.446444483369415,0.480518890527974,0.536030260801694,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4269684/ISIC_1408694.jpg
IL_4282772,MEL,dermoscopic,ISIC_9227283,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,head_neck_face,0.156976779645961,0.4535649583792,0.287903404899609,0.668500026378253,0.239729357690458,0.278329419244888,0.618783900180672,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4282772/ISIC_9227283.jpg
IL_4290586,AKIEC,dermoscopic,ISIC_1266614,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,upper_extremity,0.222888196544449,0.861905610447368,0.463620646626752,0.703849098386825,0.45421280150568,0.495013489529952,0.562917143453752,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4290586/ISIC_1266614.jpg
IL_4310742,SCCKA,dermoscopic,ISIC_0821297,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,head_neck_face,0.760871684641926,0.225869990219875,0.0839330417747371,0.219751028489154,0.494266033036673,0.314758818393116,0.485746782271213,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4310742/ISIC_0821297.jpg
IL_4316147,BCC,dermoscopic,ISIC_2308599,MILK study team,CC-BY-NC,instrument only,80.0,male,4.0,head_neck_face,0.186011223221953,0.3956386421432,0.583843408081651,0.259567349624839,0.129809253925336,0.398236324300215,0.0506917164727189,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4316147/ISIC_2308599.jpg
IL_4316871,BCC,dermoscopic,ISIC_2465599,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,upper_extremity,0.295437954557088,0.16525221169191,0.112912920409719,0.266309401065937,0.254167612281073,0.167309601643656,0.0646250652561723,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4316871/ISIC_2465599.jpg
IL_4318983,BCC,dermoscopic,ISIC_6176939,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,trunk,0.248066871261607,0.302441601864738,0.623084952075467,0.701395698888059,0.149604181828729,0.383113333124885,0.097926369298894,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4318983/ISIC_6176939.jpg
IL_4320336,NV,dermoscopic,ISIC_0512725,MILK study team,CC-BY-NC,instrument only,50.0,male,2.0,trunk,0.130356715886601,0.347981649378752,0.0785271587463068,0.331568218737396,0.73988632074418,0.0838815728144725,0.470961539495549,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4320336/ISIC_0512725.jpg
IL_4323470,BCC,dermoscopic,ISIC_4060384,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,trunk,0.570344216571072,0.489555857128083,0.628678116675931,0.694310536091341,0.638378449582481,0.416056216850715,0.227601960223644,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4323470/ISIC_4060384.jpg
IL_4323973,BCC,dermoscopic,ISIC_5743197,MILK study team,CC-BY-NC,instrument only,85.0,female,4.0,head_neck_face,0.379309674273315,0.416549187942176,0.238859776636941,0.154121178756896,0.852672377657406,0.129085880094783,0.439299511189558,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4323973/ISIC_5743197.jpg
IL_4332595,BCC,dermoscopic,ISIC_4252694,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,head_neck_face,0.675533462229478,0.18731364651187,0.143408045459868,0.285167256122907,0.11856516464228,0.248998613585714,0.0208984417217046,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4332595/ISIC_4252694.jpg
IL_4337427,BKL,dermoscopic,ISIC_1195811,MILK study team,CC-BY-NC,instrument only,60.0,female,5.0,trunk,0.324600403676736,0.372002852369198,0.256348267056245,0.365621503698151,0.328693032390102,0.440884647336836,0.358831239772859,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4337427/ISIC_1195811.jpg
IL_4355222,BCC,dermoscopic,ISIC_0844469,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,lower_extremity,0.237122126557607,0.573396397980621,0.243896020607575,0.82161979895471,0.167315516770656,0.347937615882313,0.567545697653178,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4355222/ISIC_0844469.jpg
IL_4358287,BCC,dermoscopic,ISIC_1318325,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,trunk,0.164355364381241,0.704201713215671,0.106572999171691,0.688792475631912,0.224691558736293,0.189267615704888,0.119010389663404,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4358287/ISIC_1318325.jpg
IL_4365113,BCC,dermoscopic,ISIC_0620394,MILK study team,CC-BY-NC,instrument only,85.0,female,3.0,upper_extremity,0.846170053682472,0.174982992877151,0.0590759482991924,0.247308821427616,0.0851850112106078,0.225269567460204,0.0136398041082966,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4365113/ISIC_0620394.jpg
IL_4376173,NV,dermoscopic,ISIC_9543805,MILK study team,CC-BY-NC,instrument only,20.0,female,2.0,lower_extremity,0.253967551304437,0.493408865513211,0.0303060783920831,0.202753765277578,0.575308649323944,0.452143247956331,0.382321726956015,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4376173/ISIC_9543805.jpg
IL_4392896,BKL,dermoscopic,ISIC_1806435,MILK study team,CC-BY-NC,instrument only,75.0,male,2.0,trunk,0.250800386507607,0.315172795033373,0.0291719093497379,0.0351438172505053,0.784811085724084,0.199079030191751,0.296574621356193,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4392896/ISIC_1806435.jpg
IL_4405494,NV,dermoscopic,ISIC_9267796,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,lower_extremity,0.743375526387747,0.510752820834106,0.0197795815765141,0.117812147849579,0.767319849700237,0.116218224448023,0.145728317987386,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4405494/ISIC_9267796.jpg
IL_4406206,BCC,dermoscopic,ISIC_5405039,MILK study team,CC-BY-NC,instrument only,45.0,female,5.0,lower_extremity,0.331752861754483,0.605233668478737,0.66095462316094,0.604530796182606,0.149778671609577,0.325266795078223,0.169570803523411,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4406206/ISIC_5405039.jpg
IL_4430072,BKL,dermoscopic,ISIC_4896910,MILK study team,CC-BY-NC,instrument only,70.0,male,1.0,head_neck_face,0.310057426565001,0.363611658385746,0.013406660479817,0.212558618366914,0.762353694408572,0.0860721678197452,0.172306134117042,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4430072/ISIC_4896910.jpg
IL_4432216,MEL,dermoscopic,ISIC_6910330,MILK study team,CC-BY-NC,instrument only,60.0,female,5.0,head_neck_face,0.397197053339656,0.30822559814133,0.0147156770978578,0.214805043494784,0.427396056561448,0.143189756242882,0.259341783721628,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4432216/ISIC_6910330.jpg
IL_4438547,NV,dermoscopic,ISIC_0282454,MILK study team,CC-BY-NC,instrument only,45.0,male,3.0,trunk,0.0675485729551442,0.449660122563183,0.186837175846127,0.138993608698903,0.56424497686548,0.354626345940836,0.454267792665005,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4438547/ISIC_0282454.jpg
IL_4441358,BCC,dermoscopic,ISIC_5026774,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,trunk,0.155446531282583,0.158069414818857,0.0398926592834858,0.441485835154254,0.323939653737461,0.0943649187110522,0.0909821916830231,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4441358/ISIC_5026774.jpg
IL_4444660,MEL,dermoscopic,ISIC_3578286,MILK study team,CC-BY-NC,instrument only,70.0,male,2.0,trunk,0.530561309487708,0.308622943313564,0.0206469614070746,0.451353412159679,0.668570595097696,0.239955800241617,0.178634458552984,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4444660/ISIC_3578286.jpg
IL_4459235,AKIEC,dermoscopic,ISIC_4943472,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,lower_extremity,0.391805395423168,0.204203858059927,0.0937302956198561,0.412952120033568,0.285013441587951,0.183380201287943,0.212527416896036,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4459235/ISIC_4943472.jpg
IL_4494242,SCCKA,dermoscopic,ISIC_9400150,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,lower_extremity,0.705606094862078,0.183100565275845,0.0263175453743227,0.278534251430522,0.285851831508412,0.323494584478211,0.0830908762788279,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4494242/ISIC_9400150.jpg
IL_4504352,BCC,dermoscopic,ISIC_2020975,MILK study team,CC-BY-NC,instrument only,75.0,female,4.0,trunk,0.2413439693089,0.378123150203355,0.236260678962277,0.59911491996448,0.128858079938439,0.285896814581149,0.13921065420209,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4504352/ISIC_2020975.jpg
IL_4505417,SCCKA,dermoscopic,ISIC_3751292,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,head_neck_face,0.642895752999361,0.508847931102135,0.401368119604379,0.781772678540074,0.191262338697913,0.822455876490033,0.515821922088135,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4505417/ISIC_3751292.jpg
IL_4524955,BCC,dermoscopic,ISIC_4598786,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,lower_extremity,0.571891894420955,0.528085768683947,0.277723162901007,0.75889442143438,0.238598395702273,0.602771279533655,0.661450142751637,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4524955/ISIC_4598786.jpg
IL_4557946,BCC,dermoscopic,ISIC_6719081,MILK study team,CC-BY-NC,instrument only,60.0,male,5.0,trunk,0.224536189278894,0.384619929428859,0.451592445956934,0.284965820546499,0.186125825313352,0.377321611362631,0.38435545882804,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4557946/ISIC_6719081.jpg
IL_4580726,BCC,dermoscopic,ISIC_1947192,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.247043144480785,0.263981884603387,0.212472932623903,0.633311525569114,0.150232635893046,0.222588589347841,0.0440880558252957,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4580726/ISIC_1947192.jpg
IL_4591781,BCC,dermoscopic,ISIC_6042297,MILK study team,CC-BY-NC,instrument only,40.0,male,3.0,head_neck_face,0.105755650317376,0.740650246735327,0.41759498565409,0.50344350865048,0.248267578812467,0.440287030709535,0.224689212344247,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4591781/ISIC_6042297.jpg
IL_4601924,SCCKA,dermoscopic,ISIC_3631653,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,hand,0.451859190800051,0.781578952116847,0.34839877572383,0.231135621442259,0.284240170677133,0.554091006434463,0.158052930288416,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4601924/ISIC_3631653.jpg
IL_4615374,SCCKA,dermoscopic,ISIC_8746170,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,lower_extremity,0.812655647709672,0.109005638467975,0.0133282235871357,0.130814058199099,0.0548483492107897,0.146023340343003,0.0366858689940519,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4615374/ISIC_8746170.jpg
IL_4624720,AKIEC,dermoscopic,ISIC_3354653,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,head_neck_face,0.272612109610923,0.499674810285767,0.0921727414742925,0.123976551423087,0.729139689693659,0.212781137348067,0.530576127382505,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4624720/ISIC_3354653.jpg
IL_4638658,BCC,dermoscopic,ISIC_1029279,MILK study team,CC-BY-NC,instrument only,65.0,female,4.0,head_neck_face,0.305482183448175,0.543026717595853,0.55387946906153,0.0870298513346266,0.15839807987903,0.53380409881799,0.355402726557162,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4638658/ISIC_1029279.jpg
IL_4639919,SCCKA,dermoscopic,ISIC_8021491,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,hand,0.643976612290517,0.479019073057263,0.126988470469132,0.298904105616355,0.657869314295554,0.541893501036602,0.683194662540549,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4639919/ISIC_8021491.jpg
IL_4641417,BCC,dermoscopic,ISIC_2897284,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,head_neck_face,0.764082320611058,0.337684489041324,0.0244906733463176,0.426017133828876,0.127577892150176,0.191656919974832,0.120535140987511,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4641417/ISIC_2897284.jpg
IL_4641431,BCC,dermoscopic,ISIC_4794413,MILK study team,CC-BY-NC,instrument only,85.0,female,5.0,head_neck_face,0.277722922439328,0.371882881514984,0.511642982859944,0.331538454387241,0.323802852617597,0.626477525233287,0.184392789834988,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4641431/ISIC_4794413.jpg
IL_4644252,NV,dermoscopic,ISIC_3033732,MILK study team,CC-BY-NC,instrument only,40.0,female,4.0,lower_extremity,0.166979652093263,0.337354313269948,0.0854611832536885,0.334601302824303,0.470173838446255,0.296353699453736,0.259591665332502,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4644252/ISIC_3033732.jpg
IL_4647255,BCC,dermoscopic,ISIC_4984773,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,head_neck_face,0.163944787831967,0.604804932833535,0.623458815033553,0.252492860528795,0.289120828817694,0.306472027556871,0.257102442184887,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4647255/ISIC_4984773.jpg
IL_4652077,BCC,dermoscopic,ISIC_0103392,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,upper_extremity,0.353736910928641,0.670397873833283,0.259179695636852,0.404748907985847,0.395905840766273,0.340263069070025,0.473699397185928,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4652077/ISIC_0103392.jpg
IL_4674217,BCC,dermoscopic,ISIC_2973033,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,head_neck_face,0.162843632164286,0.335461646009804,0.0366304989044913,0.112062241661896,0.629740050079896,0.301691540640619,0.565295185762537,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4674217/ISIC_2973033.jpg
IL_4682243,BCC,dermoscopic,ISIC_6418734,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,trunk,0.144889738234881,0.449754168835113,0.543450630496865,0.354706736497438,0.215379751678273,0.392784330621336,0.154677746916029,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4682243/ISIC_6418734.jpg
IL_4686156,VASC,dermoscopic,ISIC_3014842,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,lower_extremity,0.824904463825638,0.11486548966622,0.341118035477673,0.157528489796611,0.376317294575999,0.244102149832208,0.0859479788655306,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4686156/ISIC_3014842.jpg
IL_4689658,BKL,dermoscopic,ISIC_1070964,MILK study team,CC-BY-NC,instrument only,75.0,male,1.0,head_neck_face,0.234452727326769,0.431318621645043,0.010818442657478,0.0394897671845206,0.600305728573859,0.147781802274145,0.0881885742150757,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4689658/ISIC_1070964.jpg
IL_4692190,BCC,dermoscopic,ISIC_0796805,MILK study team,CC-BY-NC,instrument only,80.0,male,4.0,lower_extremity,0.523260211191558,0.18711082992723,0.0310881749940663,0.157100044337846,0.376397621562133,0.182813456792038,0.0954637668940237,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4692190/ISIC_0796805.jpg
IL_4692859,BCC,dermoscopic,ISIC_3722799,MILK study team,CC-BY-NC,instrument only,50.0,female,4.0,lower_extremity,0.287569600708347,0.626641963236967,0.217619207211805,0.426234241605811,0.651231240015176,0.423958749868504,0.208421721686106,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4692859/ISIC_3722799.jpg
IL_4693876,NV,dermoscopic,ISIC_9392626,MILK study team,CC-BY-NC,instrument only,45.0,female,4.0,lower_extremity,0.107666109742842,0.301220479656944,0.033993138695475,0.0213174799864495,0.827095493599484,0.165670467550838,0.321062240585469,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4693876/ISIC_9392626.jpg
IL_4696609,NV,dermoscopic,ISIC_7146069,MILK study team,CC-BY-NC,instrument only,80.0,female,5.0,trunk,0.235089432294106,0.452994327125861,0.0688206762774491,0.207359925682657,0.597070005462711,0.110610110235434,0.305280949558735,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4696609/ISIC_7146069.jpg
IL_4702219,MEL,dermoscopic,ISIC_9820266,MILK study team,CC-BY-NC,instrument only,65.0,male,4.0,trunk,0.399848568752641,0.390294644964103,0.039938253321327,0.0525588620252639,0.784025432530075,0.102312325890052,0.444948660904714,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4702219/ISIC_9820266.jpg
IL_4708649,BCC,dermoscopic,ISIC_2337700,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,trunk,0.0748588785987654,0.404654919327813,0.350638658517785,0.16104837370583,0.189224280144844,0.267648894492657,0.583465445710133,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4708649/ISIC_2337700.jpg
IL_4720043,MEL,dermoscopic,ISIC_4552372,MILK study team,CC-BY-NC,instrument only,45.0,male,3.0,head_neck_face,0.50522676593645,0.196175113892897,0.0105458977094409,0.102790609700264,0.778048585527275,0.107634011448543,0.683968849372095,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4720043/ISIC_4552372.jpg
IL_4726113,BCC,dermoscopic,ISIC_0865713,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,upper_extremity,0.214847436715855,0.386683111321344,0.485235909341317,0.245749420625304,0.0957902461920358,0.435542132247991,0.342153779167005,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4726113/ISIC_0865713.jpg
IL_4729044,BCC,dermoscopic,ISIC_7541188,MILK study team,CC-BY-NC,instrument only,55.0,male,4.0,head_neck_face,0.581057768877019,0.272758478138669,0.186341836933065,0.809097827174134,0.0712566204291449,0.502097009745682,0.05570592213374,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4729044/ISIC_7541188.jpg
IL_4732001,BCC,dermoscopic,ISIC_0838227,MILK study team,CC-BY-NC,instrument only,70.0,male,5.0,trunk,0.291972646417049,0.321010597032092,0.180783730079424,0.774444391793969,0.164914086174426,0.572709781486028,0.356063647491787,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4732001/ISIC_0838227.jpg
IL_4732392,NV,dermoscopic,ISIC_6788333,MILK study team,CC-BY-NC,instrument only,65.0,male,2.0,trunk,0.222969918213927,0.40442582741943,0.073193521610472,0.213419070589172,0.403090845311309,0.29200352996592,0.439053485658467,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4732392/ISIC_6788333.jpg
IL_4734157,NV,dermoscopic,ISIC_8405809,MILK study team,CC-BY-NC,instrument only,40.0,female,4.0,trunk,0.0654578497624992,0.42078741032546,0.0336320117885235,0.0600265832592787,0.831866466092627,0.22947964596618,0.754286218002118,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4734157/ISIC_8405809.jpg
IL_4740973,BCC,dermoscopic,ISIC_4329801,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,head_neck_face,0.389937991194253,0.271093171800106,0.0314310112536259,0.0510704896631744,0.928086431181034,0.119195585133095,0.44174090489709,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4740973/ISIC_4329801.jpg
IL_4749815,BCC,dermoscopic,ISIC_2484661,MILK study team,CC-BY-NC,instrument only,55.0,female,3.0,head_neck_face,0.106393512445015,0.223372205801011,0.117059115888237,0.814385646499388,0.125636698974585,0.344878705897331,0.0560171815216731,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4749815/ISIC_2484661.jpg
IL_4756008,NV,dermoscopic,ISIC_2686432,MILK study team,CC-BY-NC,instrument only,50.0,female,5.0,trunk,0.0318510346927415,0.396474182388945,0.0376329103605575,0.0565592878089759,0.62126661321681,0.191489346067727,0.558173654149069,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4756008/ISIC_2686432.jpg
IL_4768101,MEL,dermoscopic,ISIC_6164551,MILK study team,CC-BY-NC,instrument only,25.0,female,3.0,lower_extremity,0.0884087928693554,0.425299870658738,0.0131336325835829,0.048074514205511,0.885399347943515,0.114744852779701,0.573285667763401,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4768101/ISIC_6164551.jpg
IL_4791300,MEL,dermoscopic,ISIC_5763228,MILK study team,CC-BY-NC,instrument only,75.0,female,2.0,head_neck_face,0.237840390893389,0.295295057762637,0.0079766459718495,0.0434440201889568,0.725988156452644,0.183680801610505,0.614786549051063,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4791300/ISIC_5763228.jpg
IL_4796364,NV,dermoscopic,ISIC_0310855,MILK study team,CC-BY-NC,instrument only,45.0,female,3.0,trunk,0.0845504802080242,0.349788699699912,0.0666690286937009,0.212355948806601,0.753942308662941,0.260271300475672,0.382981202219114,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4796364/ISIC_0310855.jpg
IL_4799699,BCC,dermoscopic,ISIC_7283528,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,upper_extremity,0.731981371294082,0.222927273441579,0.0021048394962789,0.115681717861257,0.190257398977228,0.0374764218979493,0.075533669993404,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4799699/ISIC_7283528.jpg
IL_4850244,BKL,dermoscopic,ISIC_7454308,MILK study team,CC-BY-NC,instrument only,55.0,female,3.0,lower_extremity,0.330606730220376,0.174770356040655,0.0113840170478649,0.383838770496664,0.566535375017257,0.0898669356424562,0.171917657122203,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4850244/ISIC_7454308.jpg
IL_4851899,BCC,dermoscopic,ISIC_2029702,MILK study team,CC-BY-NC,instrument only,75.0,male,5.0,head_neck_face,0.100474983361259,0.466275367553325,0.90894779989123,0.745736193364504,0.106117953557102,0.345086918383887,0.0952467135490747,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4851899/ISIC_2029702.jpg
IL_4865476,BCC,dermoscopic,ISIC_3063587,MILK study team,CC-BY-NC,instrument only,50.0,male,4.0,trunk,0.279434788433459,0.373148649861563,0.13475173232235,0.754209902664585,0.189811656307681,0.430739088166503,0.245751103580638,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4865476/ISIC_3063587.jpg
IL_4876348,SCCKA,dermoscopic,ISIC_9452345,MILK study team,CC-BY-NC,instrument only,55.0,female,3.0,upper_extremity,0.356017903866636,0.387455819498224,0.195381632317841,0.399978816233836,0.0693893023535123,0.685818623364694,0.0785238396131373,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4876348/ISIC_9452345.jpg
IL_4885447,SCCKA,dermoscopic,ISIC_3689711,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,upper_extremity,0.298547916003695,0.693412283041973,0.251906073732734,0.642234628226676,0.270015635723371,0.479107898359564,0.364476313377869,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4885447/ISIC_3689711.jpg
IL_4885468,BKL,dermoscopic,ISIC_2284196,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,upper_extremity,0.310179170838692,0.678911224795175,0.230484210944298,0.288216086043992,0.430191187659687,0.51883019879037,0.453277447053189,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4885468/ISIC_2284196.jpg
IL_4896653,BKL,dermoscopic,ISIC_8402813,MILK study team,CC-BY-NC,instrument only,55.0,male,4.0,trunk,0.854248535163634,0.219374907892914,0.120081312932939,0.254739255553249,0.0624595395199621,0.263989438118244,0.15638323252146,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4896653/ISIC_8402813.jpg
IL_4900947,NV,dermoscopic,ISIC_9961570,MILK study team,CC-BY-NC,instrument only,30.0,male,3.0,lower_extremity,0.197123613535893,0.632122908311227,0.0130616182581078,0.0737643973153607,0.573765616402341,0.19521819943519,0.763905753766883,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4900947/ISIC_9961570.jpg
IL_4906380,NV,dermoscopic,ISIC_0772345,MILK study team,CC-BY-NC,instrument only,35.0,male,4.0,head_neck_face,0.589977161217523,0.812650307098308,0.0260940578640156,0.158267358460919,0.286117093222732,0.386507214091938,0.100859445562104,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4906380/ISIC_0772345.jpg
IL_4910941,BCC,dermoscopic,ISIC_3995849,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,trunk,0.767956172559389,0.121908126628735,0.0510746041380284,0.407768552832642,0.102227916097117,0.159241165695038,0.172336616796855,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4910941/ISIC_3995849.jpg
IL_4913494,BKL,dermoscopic,ISIC_5543919,MILK study team,CC-BY-NC,instrument only,85.0,female,3.0,upper_extremity,0.228869677350369,0.509793498701851,0.560675058828401,0.386372188996141,0.40906442084951,0.247305800491001,0.4041803741366,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4913494/ISIC_5543919.jpg
IL_4918167,INF,dermoscopic,ISIC_9630006,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,head_neck_face,0.754086340439327,0.168140123716008,0.0835522847740755,0.688968801929519,0.0487496224609326,0.558595289889407,0.140742301645281,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4918167/ISIC_9630006.jpg
IL_4918224,BKL,dermoscopic,ISIC_9503013,MILK study team,CC-BY-NC,instrument only,45.0,male,3.0,upper_extremity,0.355957849604477,0.378737292320346,0.187895727562999,0.341858520975396,0.252587775443518,0.16067713597711,0.0641224322793815,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4918224/ISIC_9503013.jpg
IL_4924328,BCC,dermoscopic,ISIC_8353499,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,upper_extremity,0.542894839338255,0.3642277189672,0.0547622235375126,0.603512109703662,0.111775888509349,0.372347685774238,0.0578555805141405,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4924328/ISIC_8353499.jpg
IL_4932041,BKL,dermoscopic,ISIC_3015606,MILK study team,CC-BY-NC,instrument only,85.0,female,3.0,head_neck_face,0.537780340921785,0.109689493079464,0.122036121661753,0.58601658810401,0.0788848057606688,0.180267995371544,0.0495111503319911,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4932041/ISIC_3015606.jpg
IL_4935391,BCC,dermoscopic,ISIC_0786326,MILK study team,CC-BY-NC,instrument only,60.0,male,2.0,head_neck_face,0.618233761513044,0.349687932848714,0.376440549278639,0.642370461566474,0.176036105363589,0.503047958975211,0.452149354419707,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4935391/ISIC_0786326.jpg
IL_4935595,NV,dermoscopic,ISIC_4171839,MILK study team,CC-BY-NC,instrument only,50.0,female,2.0,head_neck_face,0.534123016238623,0.45337547912625,0.0376317975648761,0.427537428768309,0.805173931662476,0.465040810661095,0.685343002222545,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4935595/ISIC_4171839.jpg
IL_4939300,MAL_OTH,dermoscopic,ISIC_5833579,MILK study team,CC-BY-NC,instrument only,75.0,male,1.0,lower_extremity,0.926090923006284,0.234272508444974,0.0503354179814914,0.318204589133047,0.539367447161664,0.322706407735974,0.213438554850381,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4939300/ISIC_5833579.jpg
IL_4966726,BCC,dermoscopic,ISIC_9728749,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,upper_extremity,0.531933622834965,0.265170762415748,0.175838744717101,0.254682413828574,0.122950462948971,0.213223599611129,0.136398449229052,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4966726/ISIC_9728749.jpg
IL_4968096,BCC,dermoscopic,ISIC_3159699,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,head_neck_face,0.371748000164303,0.295852684810703,0.508910226790808,0.19781832747829,0.238702176921498,0.362719503967845,0.108181288183949,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4968096/ISIC_3159699.jpg
IL_4970888,BCC,dermoscopic,ISIC_7979271,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,upper_extremity,0.523797079730832,0.451329177402755,0.101311638386559,0.738175455887249,0.232928050890618,0.487725261444656,0.182616394528031,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4970888/ISIC_7979271.jpg
IL_4975498,BKL,dermoscopic,ISIC_1365576,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.611565590022036,0.372004384588408,0.0697617740523735,0.253915708766656,0.312505508646982,0.254455818293808,0.162703602611904,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4975498/ISIC_1365576.jpg
IL_4980743,BCC,dermoscopic,ISIC_7395485,MILK study team,CC-BY-NC,instrument only,75.0,female,4.0,trunk,0.713264086165133,0.0995085153536687,0.316268794436075,0.663583528615849,0.0745591038643358,0.387232902326543,0.0760756516981991,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4980743/ISIC_7395485.jpg
IL_4987655,MEL,dermoscopic,ISIC_3431348,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,head_neck_face,0.222363004767524,0.670589419898544,0.0247757503976583,0.090339929455987,0.897395544707417,0.129161521692786,0.843812806912789,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4987655/ISIC_3431348.jpg
IL_4992123,BCC,dermoscopic,ISIC_6074237,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,trunk,0.310830780876818,0.409960655007945,0.489734860466228,0.672525838554401,0.365427781317098,0.50861896704008,0.481910057692083,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4992123/ISIC_6074237.jpg
IL_5010789,AKIEC,dermoscopic,ISIC_0496864,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,lower_extremity,0.496924393108485,0.196865526330875,0.128395158189701,0.222166238263216,0.0736228476240887,0.366546138670217,0.0690475627324781,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5010789/ISIC_0496864.jpg
IL_5011583,BCC,dermoscopic,ISIC_9354948,MILK study team,CC-BY-NC,instrument only,55.0,female,4.0,trunk,0.180363931479731,0.18596670483585,0.0936357282565053,0.0602273118921833,0.237456010530032,0.169810334974824,0.307456625382326,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5011583/ISIC_9354948.jpg
IL_5026579,SCCKA,dermoscopic,ISIC_1556154,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,lower_extremity,0.70546513228918,0.212746259695389,0.164406744672741,0.130862208903181,0.148747932096062,0.258338637104189,0.024997308307843,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5026579/ISIC_1556154.jpg
IL_5044233,VASC,dermoscopic,ISIC_7602538,MILK study team,CC-BY-NC,instrument only,20.0,male,2.0,trunk,0.250751272416777,0.449688317653385,0.18373306499632,0.169332356137743,0.687422772306397,0.41156326537237,0.966478580883591,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5044233/ISIC_7602538.jpg
IL_5045775,VASC,dermoscopic,ISIC_3356573,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,lower_extremity,0.156340338330926,0.419882557270572,0.889278659467203,0.349687677554099,0.469162816129468,0.502940953255715,0.212356459820917,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5045775/ISIC_3356573.jpg
IL_5055807,BCC,dermoscopic,ISIC_7067948,MILK study team,CC-BY-NC,instrument only,70.0,male,4.0,head_neck_face,0.40729821564305,0.701253931880951,0.481258754722559,0.402281929905331,0.228709885289925,0.63409780732618,0.348403349152961,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5055807/ISIC_7067948.jpg
IL_5064276,MEL,dermoscopic,ISIC_9895318,MILK study team,CC-BY-NC,instrument only,85.0,male,4.0,head_neck_face,0.763144777514597,0.286979216715372,0.0574606804076829,0.437311010322861,0.279248655534075,0.422608059731201,0.062935301914327,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5064276/ISIC_9895318.jpg
IL_5066436,BKL,dermoscopic,ISIC_5602626,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,head_neck_face,0.10480216562282,0.496440399615375,0.23370876165125,0.304768408466602,0.375869064504195,0.259780914271516,0.243820397430832,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5066436/ISIC_5602626.jpg
IL_5069726,BCC,dermoscopic,ISIC_8759215,MILK study team,CC-BY-NC,instrument only,45.0,male,3.0,trunk,0.212927251437707,0.158953698505085,0.142876537305104,0.694402403571079,0.179504484611869,0.147825573634796,0.0832398957723351,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5069726/ISIC_8759215.jpg
IL_5074054,BKL,dermoscopic,ISIC_4722294,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,trunk,0.772852486932416,0.10189366829621,0.0394476319532506,0.134192935400341,0.0445925424511268,0.113779713033493,0.0295206831945766,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5074054/ISIC_4722294.jpg
IL_5076804,BCC,dermoscopic,ISIC_0317094,MILK study team,CC-BY-NC,instrument only,85.0,male,4.0,upper_extremity,0.244411986101237,0.359394099749936,0.306853462005553,0.646894726540225,0.123037777496976,0.422290786733809,0.13792745920167,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5076804/ISIC_0317094.jpg
IL_5078646,SCCKA,dermoscopic,ISIC_8231437,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,lower_extremity,0.635371466249023,0.274668138474334,0.408791132575243,0.213063751486438,0.0893815976316171,0.626463993337549,0.0704381194979151,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5078646/ISIC_8231437.jpg
IL_5078787,BCC,dermoscopic,ISIC_3766990,MILK study team,CC-BY-NC,instrument only,65.0,female,4.0,head_neck_face,0.393897626746903,0.677248866491083,0.168699454470585,0.8019832260627,0.2542518605966,0.583902393195812,0.436896863737367,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5078787/ISIC_3766990.jpg
IL_5100758,MEL,dermoscopic,ISIC_7501779,MILK study team,CC-BY-NC,instrument only,80.0,male,2.0,trunk,0.57454543289824,0.291583397647362,0.0977656331666065,0.495952706624026,0.501601832891013,0.22224675332829,0.209340413396846,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5100758/ISIC_7501779.jpg
IL_5101024,MEL,dermoscopic,ISIC_6877985,MILK study team,CC-BY-NC,instrument only,70.0,female,2.0,head_neck_face,0.268801514983417,0.413076108561846,0.0291762583217299,0.115101128614865,0.515521884761183,0.109293613928444,0.282532135187533,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5101024/ISIC_6877985.jpg
IL_5104216,INF,dermoscopic,ISIC_2675122,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,head_neck_face,0.5600693985517,0.592214891749681,0.750979142609988,0.797302141357962,0.416174750115609,0.588079768729521,0.365970431996294,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5104216/ISIC_2675122.jpg
IL_5108772,AKIEC,dermoscopic,ISIC_9422230,MILK study team,CC-BY-NC,instrument only,45.0,female,3.0,upper_extremity,0.0358720558994148,0.341368473986412,0.379954439584247,0.286541310808085,0.436525060563997,0.203528691751518,0.0467130511355312,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5108772/ISIC_9422230.jpg
IL_5111144,BCC,dermoscopic,ISIC_9909273,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,head_neck_face,0.848381935326093,0.152700451316451,0.219093789171437,0.293054058637195,0.130860916802882,0.477085153223684,0.318917525706168,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5111144/ISIC_9909273.jpg
IL_5112545,BCC,dermoscopic,ISIC_5837451,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,lower_extremity,0.297767541540806,0.454921040359654,0.0948259964269201,0.681787534800719,0.297379537832416,0.323268228449141,0.212120476843223,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5112545/ISIC_5837451.jpg
IL_5114359,SCCKA,dermoscopic,ISIC_2097701,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,lower_extremity,0.569589970098061,0.294228748603892,0.0514651450475185,0.427393037446367,0.0970516042054661,0.207602942750017,0.0556644053164028,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5114359/ISIC_2097701.jpg
IL_5118297,BCC,dermoscopic,ISIC_1325383,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,lower_extremity,0.0429223681804306,0.522353350251753,0.439790233126026,0.228911077585857,0.270061852816002,0.211770568213423,0.379594831516594,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5118297/ISIC_1325383.jpg
IL_5120662,BCC,dermoscopic,ISIC_2068038,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,upper_extremity,0.0536859136840566,0.249208159631793,0.41018608158579,0.483692871685935,0.1217189057556,0.402079382412666,0.420980674122457,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5120662/ISIC_2068038.jpg
IL_5136335,INF,dermoscopic,ISIC_6137075,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,head_neck_face,0.386408673803118,0.448810280758793,0.804883919872429,0.767553200753782,0.240754436592386,0.436923600519365,0.453494097117709,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5136335/ISIC_6137075.jpg
IL_5140022,BCC,dermoscopic,ISIC_0823112,MILK study team,CC-BY-NC,instrument only,65.0,male,4.0,trunk,0.355546110621833,0.484308049974694,0.577869108494834,0.584490621083771,0.157188313839512,0.510561725129189,0.441411335118031,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5140022/ISIC_0823112.jpg
IL_5157227,MEL,dermoscopic,ISIC_9792283,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,trunk,0.241130875495263,0.333522780471231,0.0126847008728669,0.0315223254865112,0.929108869769939,0.189224567464377,0.254812941908588,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5157227/ISIC_9792283.jpg
IL_5163044,AKIEC,dermoscopic,ISIC_4585749,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,upper_extremity,0.14407261472016,0.152878967285336,0.185070271479497,0.753634079892647,0.214655075740507,0.275713667349142,0.117974065450128,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5163044/ISIC_4585749.jpg
IL_5173461,BCC,dermoscopic,ISIC_3494719,MILK study team,CC-BY-NC,instrument only,65.0,female,2.0,head_neck_face,0.507878786051891,0.365216830836062,0.0403832800376826,0.371663120826775,0.61071053335518,0.358828980454011,0.483783518655849,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5173461/ISIC_3494719.jpg
IL_5187817,BCC,dermoscopic,ISIC_3792868,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.308714530789926,0.474678113779251,0.29235624843923,0.459731654663096,0.34751006456738,0.221097562594063,0.226511497340281,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5187817/ISIC_3792868.jpg
IL_5189473,BKL,dermoscopic,ISIC_9625758,MILK study team,CC-BY-NC,instrument only,85.0,male,4.0,trunk,0.0682751654668946,0.205562222926842,0.0200874962568067,0.0330752307224781,0.739466108367015,0.139723589178276,0.228171455458219,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5189473/ISIC_9625758.jpg
IL_5200526,SCCKA,dermoscopic,ISIC_9814738,MILK study team,CC-BY-NC,instrument only,80.0,male,4.0,lower_extremity,0.495774583534647,0.394864209931461,0.624201285548469,0.659472725104473,0.0817987218339547,0.706399600634916,0.340198402406951,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5200526/ISIC_9814738.jpg
IL_5206123,SCCKA,dermoscopic,ISIC_2132766,MILK study team,CC-BY-NC,instrument only,70.0,female,4.0,lower_extremity,0.958155788189969,0.118337053719238,0.135470346413225,0.124971322074196,0.0584357965918532,0.157573911198699,0.0307103581044045,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5206123/ISIC_2132766.jpg
IL_5245045,BCC,dermoscopic,ISIC_2501467,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,lower_extremity,0.399872220744451,0.355431489534329,0.336873704183566,0.690188162416726,0.0581177869771109,0.383678360564798,0.636274110142352,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5245045/ISIC_2501467.jpg
IL_5251059,MEL,dermoscopic,ISIC_5807024,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,lower_extremity,0.106469749832336,0.70591061855003,0.0554812043421332,0.0628270795735037,0.824454500963688,0.104354166252079,0.269134685621118,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5251059/ISIC_5807024.jpg
IL_5259261,BCC,dermoscopic,ISIC_3362890,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,trunk,0.1945377486036,0.465086656919728,0.653260878569415,0.1988078976014,0.243374368355759,0.327157123010124,0.310292115892503,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5259261/ISIC_3362890.jpg
IL_5263017,NV,dermoscopic,ISIC_3730239,MILK study team,CC-BY-NC,instrument only,45.0,male,4.0,trunk,0.434166908392437,0.264659729590419,0.110001574934783,0.414754218142696,0.526117467947197,0.21659585534472,0.380227424216497,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5263017/ISIC_3730239.jpg
IL_5267029,MEL,dermoscopic,ISIC_8898820,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.562927614128033,0.302796346988039,0.0398626314244492,0.166000579160999,0.859030709733888,0.191324498070166,0.192013394891012,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5267029/ISIC_8898820.jpg
IL_5283684,BCC,dermoscopic,ISIC_8052859,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,upper_extremity,0.166704936826582,0.1492866586218,0.191907356537078,0.741827624112635,0.112008105034822,0.210145641812488,0.0981477314112602,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5283684/ISIC_8052859.jpg
IL_5285603,VASC,dermoscopic,ISIC_8791057,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,trunk,0.148368537079158,0.223001656764588,0.48319235105989,0.496111789912991,0.16645660534033,0.498746926452203,0.918107081523695,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5285603/ISIC_8791057.jpg
IL_5304581,NV,dermoscopic,ISIC_7285901,MILK study team,CC-BY-NC,instrument only,50.0,male,2.0,trunk,0.0218096126767157,0.50009813189301,0.0783890143574506,0.0384467386677255,0.582189783721051,0.253555940268957,0.114264778410464,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5304581/ISIC_7285901.jpg
IL_5310300,NV,dermoscopic,ISIC_0080219,MILK study team,CC-BY-NC,instrument only,45.0,male,4.0,trunk,0.0629500558807684,0.245169759269201,0.007815726494001,0.0468510680715522,0.787365936647395,0.182272248329107,0.722332947288129,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5310300/ISIC_0080219.jpg
IL_5324666,BCC,dermoscopic,ISIC_4910424,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,trunk,0.510824002357081,0.269373562876098,0.167358973141485,0.573399565559471,0.227277007275674,0.161531672562734,0.142775687285465,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5324666/ISIC_4910424.jpg
IL_5333822,MEL,dermoscopic,ISIC_4793606,MILK study team,CC-BY-NC,instrument only,50.0,male,5.0,head_neck_face,0.679726080777378,0.202265150946779,0.0300711908519794,0.344515814124401,0.249445983775055,0.160352499900986,0.0851753621553327,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5333822/ISIC_4793606.jpg
IL_5356677,SCCKA,dermoscopic,ISIC_3986103,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,head_neck_face,0.664306042718289,0.087291661648374,0.0762129310925715,0.195831018920702,0.248127124770925,0.270333592913041,0.122784202496915,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5356677/ISIC_3986103.jpg
IL_5358178,BKL,dermoscopic,ISIC_8381176,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,head_neck_face,0.0807340833214376,0.473253212712553,0.0974592076090886,0.135089624125676,0.0273432320893646,0.826403866275752,0.124096146386568,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5358178/ISIC_8381176.jpg
IL_5359653,BCC,dermoscopic,ISIC_5439956,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,upper_extremity,0.080543471810676,0.456497869464589,0.275545436328218,0.143438642634875,0.352895724660379,0.189998588928369,0.185926337534151,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5359653/ISIC_5439956.jpg
IL_5361790,NV,dermoscopic,ISIC_7917913,MILK study team,CC-BY-NC,instrument only,25.0,male,3.0,upper_extremity,0.239374659984609,0.581486356413638,0.0982999106876728,0.157414563668968,0.818070032760339,0.336853663594049,0.692781463985371,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5361790/ISIC_7917913.jpg
IL_5363058,NV,dermoscopic,ISIC_0502738,MILK study team,CC-BY-NC,instrument only,30.0,male,2.0,lower_extremity,0.311143125530018,0.534092161510648,0.839205133593747,0.386926457446233,0.157028058162231,0.481623084840287,0.189767397099505,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5363058/ISIC_0502738.jpg
IL_5375420,INF,dermoscopic,ISIC_0777268,MILK study team,CC-BY-NC,instrument only,80.0,female,2.0,head_neck_face,0.161768403025178,0.42372460759378,0.478692502753274,0.940901769798542,0.280225354568421,0.623038156448806,0.158419945442546,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5375420/ISIC_0777268.jpg
IL_5379548,BCC,dermoscopic,ISIC_7916653,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,trunk,0.343001729500022,0.376354128894354,0.749511870934275,0.532669651677096,0.171975584570431,0.269957773409204,0.10522067858938,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5379548/ISIC_7916653.jpg
IL_5384456,BCC,dermoscopic,ISIC_1668550,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,upper_extremity,0.376304343221446,0.532440679631328,0.157098887452982,0.630724449117457,0.260134663892713,0.377878152487359,0.145548660099408,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5384456/ISIC_1668550.jpg
IL_5394368,BCC,dermoscopic,ISIC_0924335,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,upper_extremity,0.716943370772724,0.425384644026778,0.232498526647468,0.735938653314249,0.290739242339824,0.493723503640206,0.183366212478376,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5394368/ISIC_0924335.jpg
IL_5399357,BKL,dermoscopic,ISIC_1344833,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,lower_extremity,0.234283623225804,0.212196483533794,0.116027759569084,0.854139175854568,0.183440309231242,0.359236029306416,0.317717552465444,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5399357/ISIC_1344833.jpg
IL_5423351,BKL,dermoscopic,ISIC_7009394,MILK study team,CC-BY-NC,instrument only,55.0,male,2.0,head_neck_face,0.380421965711495,0.188138433369605,0.0623705385230545,0.110885968209082,0.474689510620795,0.168886719550264,0.821408851728155,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5423351/ISIC_7009394.jpg
IL_5425299,BCC,dermoscopic,ISIC_3974488,MILK study team,CC-BY-NC,instrument only,80.0,male,4.0,lower_extremity,0.495300516931789,0.426242901631715,0.0828799818164149,0.607449553231097,0.250881447671676,0.446561883822808,0.247113341541769,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5425299/ISIC_3974488.jpg
IL_5434909,BCC,dermoscopic,ISIC_1833069,MILK study team,CC-BY-NC,instrument only,85.0,female,4.0,head_neck_face,0.359851829634433,0.258084173690459,0.0871006394077058,0.418547258794826,0.158411387679192,0.465640336707821,0.0379420762953995,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5434909/ISIC_1833069.jpg
IL_5444067,SCCKA,dermoscopic,ISIC_3192193,MILK study team,CC-BY-NC,instrument only,85.0,male,5.0,upper_extremity,0.724460435644668,0.272832737657253,0.0095364525265792,0.0951492037936915,0.153599455736322,0.246533275400171,0.366425293651532,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5444067/ISIC_3192193.jpg
IL_5466304,BCC,dermoscopic,ISIC_2181594,MILK study team,CC-BY-NC,instrument only,75.0,male,5.0,lower_extremity,0.755355077456196,0.279138800883345,0.0366651480912692,0.508787505028189,0.268491147481207,0.244707069587051,0.311016012286467,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5466304/ISIC_2181594.jpg
IL_5492781,BCC,dermoscopic,ISIC_5938890,MILK study team,CC-BY-NC,instrument only,60.0,male,5.0,head_neck_face,0.111572350445492,0.327861892875804,0.185953747659276,0.183338477276421,0.111814899733487,0.326694423157422,0.0631469369019983,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5492781/ISIC_5938890.jpg
IL_5518573,BKL,dermoscopic,ISIC_0273939,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,upper_extremity,0.0406938425594424,0.554179927625472,0.581956313926773,0.623555938786115,0.301140281471691,0.470797104736231,0.409345757563605,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5518573/ISIC_0273939.jpg
IL_5519397,BCC,dermoscopic,ISIC_8746740,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,upper_extremity,0.48967600394641,0.588621671632562,0.218857635966389,0.277407079352741,0.580750815917401,0.371494532112615,0.314931780570765,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5519397/ISIC_8746740.jpg
IL_5534472,BCC,dermoscopic,ISIC_7500032,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,head_neck_face,0.126165309137792,0.393373387118661,0.531754504512497,0.169534784479906,0.13559280299279,0.645985525368116,0.0769686180703251,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5534472/ISIC_7500032.jpg
IL_5543989,BCC,dermoscopic,ISIC_1714879,MILK study team,CC-BY-NC,instrument only,50.0,female,4.0,head_neck_face,0.087336862452511,0.229560353070036,0.118882636438147,0.51773950774341,0.306080737360545,0.177402557325643,0.0431791518991973,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5543989/ISIC_1714879.jpg
IL_5553029,BCC,dermoscopic,ISIC_8413819,MILK study team,CC-BY-NC,instrument only,80.0,male,5.0,trunk,0.328705558009796,0.41672277971095,0.234018637391797,0.69569040871981,0.161679990498218,0.450406370089768,0.311125728979596,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5553029/ISIC_8413819.jpg
IL_5554236,BKL,dermoscopic,ISIC_5567558,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,trunk,0.340279879368679,0.300514997110382,0.57183707292556,0.760498477631112,0.125857122755893,0.380924131963248,0.0776197025529913,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5554236/ISIC_5567558.jpg
IL_5571355,MEL,dermoscopic,ISIC_5442968,MILK study team,CC-BY-NC,instrument only,70.0,female,4.0,trunk,0.13042048561663,0.329063159237794,0.0206956634029984,0.0646982807907447,0.873048681651366,0.104599204540807,0.257710229554193,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5571355/ISIC_5442968.jpg
IL_5577465,NV,dermoscopic,ISIC_4043651,MILK study team,CC-BY-NC,instrument only,40.0,female,3.0,upper_extremity,0.607833225960928,0.259717306002386,0.0083818583091116,0.106924747341454,0.414078377929786,0.24314262368679,0.100150542395367,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5577465/ISIC_4043651.jpg
IL_5579945,BCC,dermoscopic,ISIC_4957929,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,lower_extremity,0.420342506531892,0.427071991829489,0.185734539904848,0.222834714214712,0.21046507825186,0.236272942669173,0.25916771372099,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5579945/ISIC_4957929.jpg
IL_5588135,BKL,dermoscopic,ISIC_7818562,MILK study team,CC-BY-NC,instrument only,60.0,female,5.0,hand,0.430114467231001,0.506493261947209,0.228432311756959,0.454664955809225,0.27742468529728,0.349640520931104,0.374994467765196,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5588135/ISIC_7818562.jpg
IL_5592337,AKIEC,dermoscopic,ISIC_1083704,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,upper_extremity,0.656368190825607,0.300363402733836,0.0087706078522264,0.177024998824257,0.317386016091923,0.138462042305018,0.0630800878829578,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5592337/ISIC_1083704.jpg
IL_5601227,BCC,dermoscopic,ISIC_1845537,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,upper_extremity,0.218940896869195,0.414353360586743,0.415210441475853,0.343215361512821,0.16072106089131,0.277015969470947,0.0870846141747144,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5601227/ISIC_1845537.jpg
IL_5604764,BCC,dermoscopic,ISIC_5179024,MILK study team,CC-BY-NC,instrument only,85.0,female,3.0,head_neck_face,0.0904096749334969,0.342662328451069,0.378932262948922,0.361352145894158,0.125951233595077,0.193462457914545,0.0449886081810471,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5604764/ISIC_5179024.jpg
IL_5621754,BKL,dermoscopic,ISIC_6076269,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,trunk,0.191443706344705,0.563966848325503,0.390008056581765,0.620289292302409,0.214748974284667,0.511529123530051,0.584846959862762,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5621754/ISIC_6076269.jpg
IL_5625000,BCC,dermoscopic,ISIC_2255098,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,head_neck_face,0.0730253023466258,0.449211180145509,0.524724366650657,0.135229204971395,0.186198428877387,0.303174793109457,0.0726097185140314,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5625000/ISIC_2255098.jpg
IL_5661640,BCC,dermoscopic,ISIC_3250692,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,head_neck_face,0.458748586170074,0.42828411300452,0.121675842330077,0.148216286723111,0.926547025662737,0.111544527682146,0.621294747617374,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5661640/ISIC_3250692.jpg
IL_5697539,AKIEC,dermoscopic,ISIC_7198657,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,head_neck_face,0.293219048544584,0.28606230107018,0.2705381859244,0.203646442679055,0.0892328103481157,0.192823289393904,0.0212266117683387,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5697539/ISIC_7198657.jpg
IL_5700109,SCCKA,dermoscopic,ISIC_4681024,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,upper_extremity,0.598704825082391,0.64533280294676,0.469494833896191,0.428479982074451,0.206778831435039,0.497342110362312,0.29017491193958,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5700109/ISIC_4681024.jpg
IL_5708642,SCCKA,dermoscopic,ISIC_9159202,MILK study team,CC-BY-NC,instrument only,70.0,female,4.0,upper_extremity,0.414833547650243,0.402205501552906,0.212949559819701,0.104834453284619,0.362432839522091,0.517657659260792,0.513664607444682,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5708642/ISIC_9159202.jpg
IL_5708693,BCC,dermoscopic,ISIC_7589454,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,head_neck_face,0.862537448937583,0.181408454113135,0.0373970510773511,0.0960600659638083,0.425368985288217,0.174454842944425,0.0319154699110377,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5708693/ISIC_7589454.jpg
IL_5709842,NV,dermoscopic,ISIC_8002362,MILK study team,CC-BY-NC,instrument only,35.0,female,3.0,trunk,0.572869292108158,0.405766875242629,0.12290489950912,0.107054193645399,0.486858099983151,0.34982500618497,0.0913146073204828,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5709842/ISIC_8002362.jpg
IL_5725802,NV,dermoscopic,ISIC_2961262,MILK study team,CC-BY-NC,instrument only,55.0,male,4.0,lower_extremity,0.137615588135407,0.203284931214503,0.0280178963628255,0.104787975408305,0.729568403021841,0.220964360879819,0.424405337334893,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5725802/ISIC_2961262.jpg
IL_5747539,BCC,dermoscopic,ISIC_8309358,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,trunk,0.0995991334809436,0.425276375391125,0.335291014723808,0.318419663194959,0.193141107425332,0.328130710852269,0.12477513314266,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5747539/ISIC_8309358.jpg
IL_5749341,NV,dermoscopic,ISIC_1419820,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,trunk,0.16296717445972,0.164292056107545,0.196224748715755,0.462412481399041,0.159580456000099,0.0794791680930779,0.0927142894558082,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5749341/ISIC_1419820.jpg
IL_5755884,BKL,dermoscopic,ISIC_4063953,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,head_neck_face,0.208106047562143,0.308198801006402,0.0207469653547207,0.0856682524017581,0.780506899199361,0.135025668101829,0.308752175499617,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5755884/ISIC_4063953.jpg
IL_5767308,BKL,dermoscopic,ISIC_8858676,MILK study team,CC-BY-NC,instrument only,75.0,male,2.0,trunk,0.0911886150314976,0.733742091423599,0.464655267264367,0.467025782883541,0.114348532238231,0.387221825882004,0.0600603469013169,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5767308/ISIC_8858676.jpg
IL_5770532,NV,dermoscopic,ISIC_2205902,MILK study team,CC-BY-NC,instrument only,50.0,female,5.0,head_neck_face,0.132412282878981,0.2252850823044,0.0948914477966166,0.327926770132433,0.230228285213797,0.255024879333975,0.287806837143201,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5770532/ISIC_2205902.jpg
IL_5775257,SCCKA,dermoscopic,ISIC_4440119,MILK study team,CC-BY-NC,instrument only,75.0,female,4.0,lower_extremity,0.639848197114417,0.335961381371514,0.125789586568981,0.0852889291395342,0.273166313216111,0.296762371708607,0.299281095792825,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5775257/ISIC_4440119.jpg
IL_5780868,BCC,dermoscopic,ISIC_1111101,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,head_neck_face,0.521042728284136,0.441797724463434,0.580750278023613,0.644924928822513,0.232683203786926,0.47550571760605,0.425808611547497,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5780868/ISIC_1111101.jpg
IL_5795574,AKIEC,dermoscopic,ISIC_7128280,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,head_neck_face,0.784736125390876,0.506599025078951,0.0875762011590685,0.519468892282502,0.228113635647622,0.390682733362478,0.224690089390599,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5795574/ISIC_7128280.jpg
IL_5797500,NV,dermoscopic,ISIC_9187182,MILK study team,CC-BY-NC,instrument only,45.0,male,3.0,trunk,0.390802213177279,0.324725136180479,0.0384969749769443,0.180039937101401,0.713687360793307,0.386300258767901,0.128325314573797,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5797500/ISIC_9187182.jpg
IL_5812139,MEL,dermoscopic,ISIC_5511054,MILK study team,CC-BY-NC,instrument only,45.0,male,3.0,,0.366567458509168,0.623756034011837,0.0699404989099953,0.186056487070986,0.331055442305003,0.475482436487463,0.681225555306724,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5812139/ISIC_5511054.jpg
IL_5816419,NV,dermoscopic,ISIC_8257972,MILK study team,CC-BY-NC,instrument only,35.0,female,3.0,trunk,0.537482513723162,0.264502513489736,0.0459887201440727,0.0836025774113302,0.592741885879428,0.103797568193618,0.376349069874161,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5816419/ISIC_8257972.jpg
IL_5818628,BCC,dermoscopic,ISIC_1129613,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,lower_extremity,0.872521033998958,0.240052537835745,0.0274019243505222,0.224685868943747,0.376878989629432,0.279694503595457,0.204324469880254,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5818628/ISIC_1129613.jpg
IL_5827394,SCCKA,dermoscopic,ISIC_8960889,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,head_neck_face,0.552776007165907,0.317534321765929,0.678927390036624,0.769379063284537,0.155696573150715,0.70541711526535,0.346429678288379,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5827394/ISIC_8960889.jpg
IL_5832073,BKL,dermoscopic,ISIC_3822340,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,upper_extremity,0.19199457726779,0.563054504206984,0.167411580466364,0.106518430717336,0.338287368506179,0.32739009937174,0.334719174030255,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5832073/ISIC_3822340.jpg
IL_5834999,AKIEC,dermoscopic,ISIC_4668008,MILK study team,CC-BY-NC,instrument only,85.0,female,3.0,foot,0.771873969461637,0.194514452206302,0.0222307027997239,0.398528369713471,0.207862989791895,0.338352185840306,0.0467115916589893,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5834999/ISIC_4668008.jpg
IL_5835931,BCC,dermoscopic,ISIC_3277541,MILK study team,CC-BY-NC,instrument only,55.0,male,4.0,trunk,0.816978651980814,0.575611543773598,0.252023223900078,0.419800330774146,0.152603467454775,0.461253447321529,0.265454193975095,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5835931/ISIC_3277541.jpg
IL_5839734,SCCKA,dermoscopic,ISIC_0709199,MILK study team,CC-BY-NC,instrument only,85.0,male,4.0,head_neck_face,0.346415110469203,0.560684312966895,0.325779731821391,0.420005923945468,0.283602659077027,0.533247827081637,0.261996301438022,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5839734/ISIC_0709199.jpg
IL_5844745,MEL,dermoscopic,ISIC_7682533,MILK study team,CC-BY-NC,instrument only,85.0,male,5.0,trunk,0.208565717527752,0.278180024829889,0.0247961546255794,0.060681817198478,0.812983692758865,0.145821620293847,0.260868944146171,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5844745/ISIC_7682533.jpg
IL_5848162,SCCKA,dermoscopic,ISIC_3975783,MILK study team,CC-BY-NC,instrument only,85.0,male,4.0,lower_extremity,0.417867584930617,0.389806793614475,0.0500049953713052,0.0492293722597638,0.621462493607889,0.172393616533032,0.224846930577099,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5848162/ISIC_3975783.jpg
IL_5849837,SCCKA,dermoscopic,ISIC_5001424,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,lower_extremity,0.314172737624564,0.375797391277282,0.123809186664794,0.297654159691679,0.0868528878586764,0.466482178935294,0.152160453544757,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5849837/ISIC_5001424.jpg
IL_5866168,MEL,dermoscopic,ISIC_8362681,MILK study team,CC-BY-NC,instrument only,30.0,male,2.0,trunk,0.101149155864302,0.414092599990108,0.0431715563111687,0.0990004151613268,0.910977777584412,0.230071224221869,0.415984373550823,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5866168/ISIC_8362681.jpg
IL_5882272,SCCKA,dermoscopic,ISIC_9286506,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,head_neck_face,0.456961139494642,0.251374620474964,0.061936735331179,0.41482752634335,0.171601433456901,0.326863502334592,0.174802119514332,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5882272/ISIC_9286506.jpg
IL_5885697,BKL,dermoscopic,ISIC_1244447,MILK study team,CC-BY-NC,instrument only,50.0,female,4.0,lower_extremity,0.276615134957442,0.516739279069585,0.0395848707055386,0.288458580904528,0.397559035624716,0.439767590656505,0.592769279206292,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5885697/ISIC_1244447.jpg
IL_5890474,BCC,dermoscopic,ISIC_3372353,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,lower_extremity,0.207110548478721,0.362656355923579,0.195976363871573,0.304175071889498,0.255223300449311,0.177620878522079,0.416228196344927,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5890474/ISIC_3372353.jpg
IL_5916541,MEL,dermoscopic,ISIC_7472087,MILK study team,CC-BY-NC,instrument only,45.0,female,5.0,trunk,0.282396824198019,0.304839848677435,0.0434593100301296,0.0972276659182214,0.467828097142125,0.18675714586563,0.517567508705314,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5916541/ISIC_7472087.jpg
IL_5922871,BCC,dermoscopic,ISIC_5180599,MILK study team,CC-BY-NC,instrument only,60.0,male,4.0,hand,0.750011019210733,0.319747688442928,0.21907163947683,0.136128449727752,0.345983843209957,0.443502968178645,0.641207604153345,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5922871/ISIC_5180599.jpg
IL_5926277,BCC,dermoscopic,ISIC_8839494,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,upper_extremity,0.374022841453137,0.472704042683929,0.641541739155871,0.175767360435483,0.13083590719217,0.606424145846218,0.720976574350894,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5926277/ISIC_8839494.jpg
IL_5938594,BCC,dermoscopic,ISIC_6003134,MILK study team,CC-BY-NC,instrument only,45.0,male,3.0,trunk,0.211031203972252,0.416004028934667,0.209718195987976,0.215303702945443,0.402234253057645,0.172116971305585,0.116180912006079,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5938594/ISIC_6003134.jpg
IL_5950762,SCCKA,dermoscopic,ISIC_2791059,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,lower_extremity,0.412223136383223,0.266832746838561,0.0527446891588283,0.0957013901138977,0.247344760420982,0.296465076973246,0.0457157272107708,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5950762/ISIC_2791059.jpg
IL_5954640,BKL,dermoscopic,ISIC_3430932,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,head_neck_face,0.292582640910018,0.669589817804855,0.107055457953708,0.0566413654130887,0.499584097682673,0.202235532950559,0.357233457989938,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5954640/ISIC_3430932.jpg
IL_5979940,BCC,dermoscopic,ISIC_8543046,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,trunk,0.30417880300222,0.436171087409721,0.154861314080342,0.640856866145427,0.167623971175191,0.343180330905416,0.224058194995663,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5979940/ISIC_8543046.jpg
IL_5997841,BCC,dermoscopic,ISIC_3187907,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,lower_extremity,0.641076952494311,0.44932722518242,0.159942602636448,0.614611957329269,0.118724140095207,0.436689885850849,0.140207469178435,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5997841/ISIC_3187907.jpg
IL_6004998,INF,dermoscopic,ISIC_2888616,MILK study team,CC-BY-NC,instrument only,40.0,male,1.0,head_neck_face,0.303823288186988,0.38201509453244,0.029424693065191,0.347386125608338,0.676027694268919,0.238949446641614,0.712406435693604,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6004998/ISIC_2888616.jpg
IL_6005068,BCC,dermoscopic,ISIC_7441024,MILK study team,CC-BY-NC,instrument only,50.0,female,4.0,lower_extremity,0.515372141804787,0.572909798393695,0.0899018780572048,0.605458542521934,0.698729753757719,0.385612036035912,0.209347892446199,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6005068/ISIC_7441024.jpg
IL_6007498,BCC,dermoscopic,ISIC_8606881,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,trunk,0.447432144215539,0.675044355743299,0.341840781785565,0.713510772725876,0.265881549241493,0.448448645031558,0.250116690582946,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6007498/ISIC_8606881.jpg
IL_6019192,MEL,dermoscopic,ISIC_2267440,MILK study team,CC-BY-NC,instrument only,40.0,female,4.0,trunk,0.0279917405962326,0.235851335722888,0.0266810620502361,0.11374247906121,0.83468002886896,0.149495929373426,0.331373653276086,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6019192/ISIC_2267440.jpg
IL_6021149,BCC,dermoscopic,ISIC_3946401,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,trunk,0.73783899273213,0.293141222216198,0.0790950213153398,0.21307409872974,0.204613433052637,0.347861653854702,0.0629359197113256,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6021149/ISIC_3946401.jpg
IL_6022474,BKL,dermoscopic,ISIC_6494733,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,trunk,0.640771512153965,0.237777188283534,0.0682066587906181,0.0474579929427119,0.786631531677087,0.235674788632234,0.264693113801474,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6022474/ISIC_6494733.jpg
IL_6033161,BCC,dermoscopic,ISIC_6469024,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,lower_extremity,0.44637536472194,0.375671054959996,0.438600963401342,0.881884187915246,0.0686260231908836,0.565895228434973,0.161637545707931,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6033161/ISIC_6469024.jpg
IL_6040962,AKIEC,dermoscopic,ISIC_9750600,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,upper_extremity,0.266398414929629,0.202922270169625,0.199790247956038,0.740051646801857,0.222067457712892,0.282300251881457,0.102754528842252,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6040962/ISIC_9750600.jpg
IL_6071484,SCCKA,dermoscopic,ISIC_2510819,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,head_neck_face,0.274280958513529,0.238544050402133,0.139755942799601,0.230541195856532,0.290165003361453,0.368156469230883,0.404024920620518,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6071484/ISIC_2510819.jpg
IL_6110349,BCC,dermoscopic,ISIC_7330557,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,upper_extremity,0.640419067159163,0.424544867605036,0.24893276005922,0.712840288041474,0.350457253301797,0.241848180214171,0.114369219767582,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6110349/ISIC_7330557.jpg
IL_6117786,MEL,dermoscopic,ISIC_8769047,MILK study team,CC-BY-NC,instrument only,85.0,male,2.0,trunk,0.297442988816244,0.458089106522898,0.0145097225389735,0.20931411432164,0.828938753805063,0.298933009342676,0.544933190532903,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6117786/ISIC_8769047.jpg
IL_6122367,BCC,dermoscopic,ISIC_3215995,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,head_neck_face,0.267623026727173,0.369137770932951,0.407478311868711,0.585857188247925,0.245354670816022,0.358651442693644,0.405210738034038,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6122367/ISIC_3215995.jpg
IL_6144791,BCC,dermoscopic,ISIC_0593908,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,trunk,0.815494912359588,0.454970736123776,0.149070659684126,0.311982234753916,0.29780364468326,0.359857440082241,0.217136255797284,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6144791/ISIC_0593908.jpg
IL_6156024,BCC,dermoscopic,ISIC_2146757,MILK study team,CC-BY-NC,instrument only,80.0,female,4.0,trunk,0.421238346042523,0.39053368156319,0.156005874689587,0.164592688375369,0.390808463497437,0.250836644470865,0.0889645622133701,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6156024/ISIC_2146757.jpg
IL_6157521,BKL,dermoscopic,ISIC_9370126,MILK study team,CC-BY-NC,instrument only,45.0,male,3.0,trunk,0.212081321918036,0.583032634149243,0.459919863238691,0.376575385560464,0.211570433372004,0.477134584479043,0.164820410609658,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6157521/ISIC_9370126.jpg
IL_6161419,BCC,dermoscopic,ISIC_0408084,MILK study team,CC-BY-NC,instrument only,60.0,female,5.0,head_neck_face,0.267774362649381,0.33063682315274,0.366771937067981,0.637254193722093,0.107342114508042,0.353815984347989,0.149716887474462,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6161419/ISIC_0408084.jpg
IL_6163368,BKL,dermoscopic,ISIC_9007301,MILK study team,CC-BY-NC,instrument only,45.0,male,2.0,head_neck_face,0.31482756551622,0.298179203022305,0.0208372270200732,0.108004255027868,0.927322029447476,0.147085758038663,0.538353704424208,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6163368/ISIC_9007301.jpg
IL_6166867,SCCKA,dermoscopic,ISIC_8283280,MILK study team,CC-BY-NC,instrument only,80.0,female,2.0,head_neck_face,0.903199818581917,0.120936148354614,0.0407396473064082,0.455933792674493,0.0731712421223311,0.370781466369356,0.124189099118953,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6166867/ISIC_8283280.jpg
IL_6188972,BCC,dermoscopic,ISIC_4963201,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,trunk,0.119537875996948,0.242563397856159,0.146505097700363,0.718159186048263,0.208501282073338,0.244138305948672,0.0636936117164652,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6188972/ISIC_4963201.jpg
IL_6192656,BCC,dermoscopic,ISIC_2036909,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,lower_extremity,0.288070335647463,0.198571746719018,0.0872644283247912,0.0945428957834323,0.602257908385422,0.174067778406371,0.209447315333439,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6192656/ISIC_2036909.jpg
IL_6192920,BCC,dermoscopic,ISIC_3813726,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.55692965613308,0.409420598636851,0.217986485440101,0.784422829222199,0.572310891169304,0.26918711577568,0.246139207755218,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6192920/ISIC_3813726.jpg
IL_6215945,BCC,dermoscopic,ISIC_5773512,MILK study team,CC-BY-NC,instrument only,55.0,male,4.0,trunk,0.10008815501281,0.354498020416644,0.566230758449042,0.310880984047076,0.185556105708527,0.33137954633005,0.0382498568160482,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6215945/ISIC_5773512.jpg
IL_6216018,BCC,dermoscopic,ISIC_6065573,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,head_neck_face,0.886957695486397,0.119901012253225,0.323821404538098,0.393434462890121,0.113433684761099,0.425017887789165,0.311201647620326,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6216018/ISIC_6065573.jpg
IL_6242822,BCC,dermoscopic,ISIC_0532349,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,head_neck_face,0.404377699674096,0.307018309995327,0.613576753959624,0.80499890313345,0.208451342148981,0.41628577810643,0.0931154652358497,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6242822/ISIC_0532349.jpg
IL_6292784,MEL,dermoscopic,ISIC_7702697,MILK study team,CC-BY-NC,instrument only,45.0,female,3.0,head_neck_face,0.0904466826521471,0.15954808147595,0.0261914385288711,0.0902928666167694,0.543581772451859,0.0933065081785265,0.300408525558915,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6292784/ISIC_7702697.jpg
IL_6296418,BCC,dermoscopic,ISIC_2334974,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,head_neck_face,0.823259999829368,0.205439074249995,0.430598663577682,0.4814910697742,0.208332709321329,0.398675670384643,0.07096815758276,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6296418/ISIC_2334974.jpg
IL_6312723,BCC,dermoscopic,ISIC_2106664,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,head_neck_face,0.320206007601284,0.568134492939255,0.0036538464944088,0.176820588637664,0.129444308829289,0.120965526703284,0.0508257427548376,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6312723/ISIC_2106664.jpg
IL_6316014,NV,dermoscopic,ISIC_9755138,MILK study team,CC-BY-NC,instrument only,45.0,male,3.0,lower_extremity,0.156803077763013,0.40731658722926,0.0313505965172695,0.145613853628798,0.685043341392305,0.299646431363308,0.444286295413912,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6316014/ISIC_9755138.jpg
IL_6316913,BCC,dermoscopic,ISIC_9356329,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,trunk,0.230010461387276,0.487323075423706,0.211308585072323,0.232306462806613,0.359201402638261,0.114458353599229,0.26670990417796,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6316913/ISIC_9356329.jpg
IL_6346184,BCC,dermoscopic,ISIC_4588258,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,upper_extremity,0.205964595765777,0.593393918469611,0.0536484745330133,0.338315229416821,0.580367012778397,0.186097068479174,0.162300587404473,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6346184/ISIC_4588258.jpg
IL_6368595,BKL,dermoscopic,ISIC_8071918,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,lower_extremity,0.806357410038543,0.117579616430475,0.0092755069383345,0.0765976273363318,0.0210725414877359,0.104665301642794,0.0163397578808917,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6368595/ISIC_8071918.jpg
IL_6393566,VASC,dermoscopic,ISIC_5866736,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,trunk,0.549330741540911,0.188797232191157,0.424352815994854,0.249417888223725,0.438915775622508,0.362941053302722,0.440899278692989,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6393566/ISIC_5866736.jpg
IL_6412076,BCC,dermoscopic,ISIC_9995871,MILK study team,CC-BY-NC,instrument only,65.0,male,4.0,head_neck_face,0.126883662085071,0.385244657047678,0.425397503444324,0.91755239257972,0.116428761449367,0.325941719616026,0.215513944935758,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6412076/ISIC_9995871.jpg
IL_6419934,MEL,dermoscopic,ISIC_9866460,MILK study team,CC-BY-NC,instrument only,50.0,female,2.0,lower_extremity,0.132035477649195,0.232727665975806,0.0263308263550016,0.0795949086969589,0.761188832918375,0.202439534191386,0.334538649183749,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6419934/ISIC_9866460.jpg
IL_6430136,NV,dermoscopic,ISIC_1548274,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,lower_extremity,0.151218520345506,0.37807125287457,0.0108549527961513,0.188625461182484,0.834512450442263,0.302424203299304,0.553504389952565,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6430136/ISIC_1548274.jpg
IL_6434551,BCC,dermoscopic,ISIC_3442836,MILK study team,CC-BY-NC,instrument only,55.0,female,2.0,trunk,0.330321447072115,0.513022117551972,0.459156615076543,0.520279263404989,0.467419883539021,0.45545422451972,0.286600388664922,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6434551/ISIC_3442836.jpg
IL_6442141,BCC,dermoscopic,ISIC_9379057,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,head_neck_face,0.412438476240068,0.399809740665554,0.167362302008275,0.39702414002042,0.379712226737841,0.149785554509262,0.122615952634114,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6442141/ISIC_9379057.jpg
IL_6448360,NV,dermoscopic,ISIC_0850383,MILK study team,CC-BY-NC,instrument only,40.0,female,3.0,trunk,0.148072707825539,0.537522762608836,0.134549513222395,0.0671625344363096,0.807559543200435,0.269854206626972,0.390862867765035,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6448360/ISIC_0850383.jpg
IL_6480673,NV,dermoscopic,ISIC_0487104,MILK study team,CC-BY-NC,instrument only,15.0,female,3.0,lower_extremity,0.360951392204775,0.23503142028777,0.0672850080388433,0.0972077756798145,0.709298460407793,0.221937450885611,0.403249905572899,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6480673/ISIC_0487104.jpg
IL_6481274,BCC,dermoscopic,ISIC_0562738,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,head_neck_face,0.916515659225373,0.200745377211977,0.24459485992064,0.420955919790916,0.0631066034747062,0.420055640177656,0.0173630270158902,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6481274/ISIC_0562738.jpg
IL_6497290,BKL,dermoscopic,ISIC_8810868,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,trunk,0.474775933530406,0.523130186429374,0.300374563745929,0.550537257412691,0.199096330627137,0.416455284153391,0.147373658937141,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6497290/ISIC_8810868.jpg
IL_6502253,BCC,dermoscopic,ISIC_5062776,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,trunk,0.253801918843075,0.427722264334652,0.0911448415312587,0.242995949646702,0.412392230748538,0.173033563862033,0.281091850363967,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6502253/ISIC_5062776.jpg
IL_6502535,BKL,dermoscopic,ISIC_3317643,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,upper_extremity,0.741373373886291,0.304794246096068,0.223129683031231,0.216322250106361,0.164440296854318,0.610149148275079,0.139154175353664,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6502535/ISIC_3317643.jpg
IL_6503105,MEL,dermoscopic,ISIC_7308959,MILK study team,CC-BY-NC,instrument only,70.0,male,2.0,head_neck_face,0.310160389850006,0.585891054686421,0.135864784253258,0.15376577938297,0.651468622780406,0.267313609565039,0.522705690281787,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6503105/ISIC_7308959.jpg
IL_6520783,BCC,dermoscopic,ISIC_2508643,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,upper_extremity,0.155910526456443,0.360394589734236,0.317624172115016,0.610389374410859,0.192668271449483,0.374792367198801,0.376088989945173,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6520783/ISIC_2508643.jpg
IL_6525739,BCC,dermoscopic,ISIC_2025971,MILK study team,CC-BY-NC,instrument only,75.0,male,2.0,trunk,0.328242328100283,0.522208294752095,0.718104223807292,0.480916343733845,0.133290803583737,0.621743432653969,0.199449680077857,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6525739/ISIC_2025971.jpg
IL_6528074,BCC,dermoscopic,ISIC_4577203,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,trunk,0.328312672127217,0.33818638165206,0.631379584711581,0.486977618597818,0.312730094256856,0.255157500506457,0.2977097295887,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6528074/ISIC_4577203.jpg
IL_6536248,BCC,dermoscopic,ISIC_2973605,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.490465614365728,0.196141274761215,0.286752505148741,0.856670325073654,0.118083994719063,0.391471029121461,0.242695616541179,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6536248/ISIC_2973605.jpg
IL_6550593,BCC,dermoscopic,ISIC_3873824,MILK study team,CC-BY-NC,instrument only,60.0,female,4.0,head_neck_face,0.0695201090298356,0.301245354355738,0.185289644100411,0.112849106435659,0.303386030937434,0.378123734365643,0.906085847759892,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6550593/ISIC_3873824.jpg
IL_6575450,AKIEC,dermoscopic,ISIC_4297812,MILK study team,CC-BY-NC,instrument only,60.0,male,4.0,lower_extremity,0.192584885150887,0.327155169349593,0.0817792572623423,0.700470882005227,0.409875071694359,0.289374641767825,0.189335814056007,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6575450/ISIC_4297812.jpg
IL_6591521,BCC,dermoscopic,ISIC_6138103,MILK study team,CC-BY-NC,instrument only,45.0,female,3.0,trunk,0.0791727709333801,0.179491368823048,0.144012860608509,0.830785085798298,0.125733620228662,0.20219902929952,0.0668977199072584,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6591521/ISIC_6138103.jpg
IL_6592976,BCC,dermoscopic,ISIC_5793548,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,head_neck_face,0.354517818132946,0.534678964835099,0.179404743828202,0.551291549108942,0.108307271096362,0.532785177035364,0.379101096034461,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6592976/ISIC_5793548.jpg
IL_6594915,MEL,dermoscopic,ISIC_4237744,MILK study team,CC-BY-NC,instrument only,70.0,male,2.0,trunk,0.231370759063629,0.151997459624565,0.0047213669149328,0.199043006510883,0.726612671140176,0.0853075088113225,0.130389245504735,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6594915/ISIC_4237744.jpg
IL_6599749,NV,dermoscopic,ISIC_3360186,MILK study team,CC-BY-NC,instrument only,25.0,female,2.0,trunk,0.631891843064451,0.250297565004246,0.0408654118899952,0.10982881107447,0.406181153650062,0.141354786558987,0.251131909167084,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6599749/ISIC_3360186.jpg
IL_6607350,NV,dermoscopic,ISIC_1712861,MILK study team,CC-BY-NC,instrument only,40.0,female,2.0,trunk,0.138528017655963,0.284425262121502,0.0552407485974916,0.0591287353177388,0.61412999058646,0.222250922207058,0.375981004764777,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6607350/ISIC_1712861.jpg
IL_6616661,BCC,dermoscopic,ISIC_4943359,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,head_neck_face,0.90909956038239,0.303214064007869,0.203124639023833,0.618939614189686,0.135594255832096,0.390053914013351,0.0947002555318664,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6616661/ISIC_4943359.jpg
IL_6617592,MEL,dermoscopic,ISIC_4030354,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.597676836113264,0.304300681847383,0.144717623549294,0.237662971234545,0.116886153615429,0.176737523921794,0.0411965788055382,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6617592/ISIC_4030354.jpg
IL_6618073,NV,dermoscopic,ISIC_4503581,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,upper_extremity,0.114960340852935,0.266454000577585,0.0098661953380295,0.133048895827517,0.821389080434899,0.181943391748069,0.443229164829065,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6618073/ISIC_4503581.jpg
IL_6629928,NV,dermoscopic,ISIC_1283766,MILK study team,CC-BY-NC,instrument only,45.0,female,3.0,trunk,0.239359544228336,0.294246734245044,0.01288908311523,0.073113884199018,0.743045332875556,0.157913530001317,0.387553220058632,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6629928/ISIC_1283766.jpg
IL_6636674,AKIEC,dermoscopic,ISIC_4314742,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,head_neck_face,0.170892079570051,0.314102505108159,0.175033712733247,0.315367955409653,0.0894774225035499,0.15087876131911,0.205169315161895,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6636674/ISIC_4314742.jpg
IL_6647837,BCC,dermoscopic,ISIC_8649350,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,trunk,0.183104172283269,0.161946760828833,0.0538119442642155,0.175202929453484,0.400492466668492,0.0556009007062858,0.0489677709554505,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6647837/ISIC_8649350.jpg
IL_6654419,AKIEC,dermoscopic,ISIC_1999632,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,lower_extremity,0.786902986060559,0.369898450760587,0.160680596846393,0.469286177580515,0.199888456209898,0.47519480188233,0.37620109041862,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6654419/ISIC_1999632.jpg
IL_6665105,AKIEC,dermoscopic,ISIC_4302597,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,upper_extremity,0.544204142520176,0.558790674113314,0.48590105220891,0.425080727206111,0.400805067480088,0.720037822502743,0.688606520477296,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6665105/ISIC_4302597.jpg
IL_6665809,AKIEC,dermoscopic,ISIC_0970615,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,lower_extremity,0.6370540008989,0.283099907544059,0.204378098997066,0.744564823917186,0.162790204516003,0.454748179170708,0.520522563823533,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6665809/ISIC_0970615.jpg
IL_6673700,NV,dermoscopic,ISIC_5171808,MILK study team,CC-BY-NC,instrument only,50.0,female,1.0,trunk,0.150970649506068,0.512337795034547,0.177326939468943,0.545152853184206,0.781953039005788,0.481062013478954,0.848466918833828,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6673700/ISIC_5171808.jpg
IL_6679773,BCC,dermoscopic,ISIC_7196937,MILK study team,CC-BY-NC,instrument only,55.0,female,4.0,head_neck_face,0.242337875553241,0.559367853425479,0.356034566585478,0.42015899878132,0.252224950883147,0.507236105081388,0.270928221344874,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6679773/ISIC_7196937.jpg
IL_6711797,BCC,dermoscopic,ISIC_9153141,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,upper_extremity,0.323390246098984,0.233877980123089,0.0531654150278996,0.663169487469166,0.194410714520642,0.326784114977831,0.118715199958242,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6711797/ISIC_9153141.jpg
IL_6728054,MEL,dermoscopic,ISIC_7227677,MILK study team,CC-BY-NC,instrument only,40.0,female,4.0,lower_extremity,0.267205567944016,0.441827324850437,0.0081110250423497,0.069033142421118,0.790555577138282,0.146128855049779,0.66627430016037,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6728054/ISIC_7227677.jpg
IL_6732051,BCC,dermoscopic,ISIC_2974995,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,hand,0.270292717998264,0.523266481024673,0.281828585873628,0.123821302523849,0.261528654190359,0.259558942070313,0.48044029682408,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6732051/ISIC_2974995.jpg
IL_6733818,BCC,dermoscopic,ISIC_9472474,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,trunk,0.0087218764987495,0.483569070649683,0.698936744405092,0.452650893182182,0.188616860539784,0.199894397305757,0.204668010550345,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6733818/ISIC_9472474.jpg
IL_6741185,MEL,dermoscopic,ISIC_3807230,MILK study team,CC-BY-NC,instrument only,40.0,female,3.0,head_neck_face,0.322302947890387,0.359551839325642,0.186701855588368,0.359366922099101,0.572324578855789,0.332914905190567,0.526437115696007,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6741185/ISIC_3807230.jpg
IL_6743301,BCC,dermoscopic,ISIC_0499568,MILK study team,CC-BY-NC,instrument only,65.0,male,4.0,head_neck_face,0.423070109577816,0.482271004806726,0.472028042927147,0.300946999453781,0.385612177794024,0.309390450695529,0.151023978110706,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6743301/ISIC_0499568.jpg
IL_6755192,BCC,dermoscopic,ISIC_5997076,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.382475579583169,0.678575013574127,0.340397465938339,0.747024326459223,0.364271822861459,0.437005135878074,0.550594672940202,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6755192/ISIC_5997076.jpg
IL_6767086,BCC,dermoscopic,ISIC_7991319,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,upper_extremity,0.649193879091931,0.569367461231899,0.171341492783232,0.118171953501445,0.291086637598201,0.483570822910836,0.584018405360669,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6767086/ISIC_7991319.jpg
IL_6767312,BCC,dermoscopic,ISIC_2288348,MILK study team,CC-BY-NC,instrument only,85.0,female,3.0,trunk,0.439760406113394,0.594727760691842,0.352922561636008,0.455264272545836,0.378445764476389,0.538200760524016,0.238351929881167,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6767312/ISIC_2288348.jpg
IL_6781250,BKL,dermoscopic,ISIC_9568577,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,head_neck_face,0.274450975388469,0.560337365393661,0.0522321578619628,0.122865950268995,0.614349679045811,0.277426589576729,0.281539242958967,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6781250/ISIC_9568577.jpg
IL_6784777,BCC,dermoscopic,ISIC_7706527,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,head_neck_face,0.28773949544158,0.208616757826445,0.168423735322623,0.365324926764053,0.400765957107771,0.152928444061596,0.284480427336747,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6784777/ISIC_7706527.jpg
IL_6802806,BCC,dermoscopic,ISIC_4236187,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,trunk,0.450230479597263,0.253157783186092,0.708290362211686,0.757057985579372,0.340197077120492,0.338035193193734,0.188071518944712,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6802806/ISIC_4236187.jpg
IL_6820116,BCC,dermoscopic,ISIC_1177251,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,lower_extremity,0.320879401499596,0.269233283856053,0.170164438307963,0.101553135948466,0.131520344684605,0.191634960114127,0.0373394533597006,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6820116/ISIC_1177251.jpg
IL_6829628,VASC,dermoscopic,ISIC_5962854,MILK study team,CC-BY-NC,instrument only,35.0,male,2.0,head_neck_face,0.963961018318251,0.270554717241964,0.34299462675053,0.424424432189088,0.243170769292845,0.486260577777216,0.208493284530359,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6829628/ISIC_5962854.jpg
IL_6847142,BCC,dermoscopic,ISIC_7030907,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,lower_extremity,0.049018900045423,0.141969117969699,0.515737916476877,0.324679835151179,0.0631863154915195,0.523076630652551,0.641301893850845,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6847142/ISIC_7030907.jpg
IL_6849118,SCCKA,dermoscopic,ISIC_8257388,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,upper_extremity,0.600979691626218,0.240888121994455,0.118261706087285,0.500217751219268,0.0455521649967323,0.249502270639087,0.0511462704026972,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6849118/ISIC_8257388.jpg
IL_6865850,BKL,dermoscopic,ISIC_6389514,MILK study team,CC-BY-NC,instrument only,40.0,female,3.0,head_neck_face,0.0421915618036153,0.351047933362298,0.198757540230813,0.0538988711620226,0.727573222918199,0.293646192202992,0.670421988787056,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6865850/ISIC_6389514.jpg
IL_6867211,BCC,dermoscopic,ISIC_6444211,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,upper_extremity,0.851861927162289,0.546172242636495,0.277729439423222,0.638017688976098,0.387611288277486,0.498983260291385,0.464144247430736,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6867211/ISIC_6444211.jpg
IL_6921234,SCCKA,dermoscopic,ISIC_5977103,MILK study team,CC-BY-NC,instrument only,55.0,male,5.0,lower_extremity,0.361758909592492,0.419854720079119,0.206349178701881,0.0362911085408839,0.142975530751725,0.331644514116688,0.219694675898407,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6921234/ISIC_5977103.jpg
IL_6934051,BCC,dermoscopic,ISIC_7806895,MILK study team,CC-BY-NC,instrument only,65.0,male,4.0,trunk,0.127371945476773,0.305035995023004,0.392739209901428,0.663477782333767,0.148537675574477,0.354832772199498,0.473674440078587,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6934051/ISIC_7806895.jpg
IL_6955894,SCCKA,dermoscopic,ISIC_2336235,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,upper_extremity,0.864927077039359,0.255968545386031,0.0473627306513429,0.231852220187975,0.0724435041521568,0.349161685007307,0.182520000594299,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6955894/ISIC_2336235.jpg
IL_6962518,BKL,dermoscopic,ISIC_1375994,MILK study team,CC-BY-NC,instrument only,85.0,female,4.0,head_neck_face,0.059584243266502,0.214836458344648,0.0165289704301594,0.0427131087219676,0.847139197159993,0.129788672599204,0.333093007636291,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6962518/ISIC_1375994.jpg
IL_6962525,MEL,dermoscopic,ISIC_9399586,MILK study team,CC-BY-NC,instrument only,80.0,female,3.0,head_neck_face,0.0706507060826783,0.396525787111465,0.0228013690942737,0.171969937741405,0.684187743237932,0.0924584687748394,0.364357251527772,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6962525/ISIC_9399586.jpg
IL_6970769,AKIEC,dermoscopic,ISIC_9490027,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,trunk,0.769376204093075,0.173155697778053,0.317495423250414,0.129879256473862,0.182581144340006,0.209843540509331,0.21904587720131,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6970769/ISIC_9490027.jpg
IL_6981677,BKL,dermoscopic,ISIC_9566721,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,upper_extremity,0.0615566518364599,0.57721097993943,0.48912286951571,0.339268607028445,0.39036770166283,0.279388668219761,0.252168408769394,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6981677/ISIC_9566721.jpg
IL_6994946,BCC,dermoscopic,ISIC_1099345,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,trunk,0.172191440506245,0.400737131166285,0.0582763333168912,0.476217819858411,0.5572720963652,0.0678480248704465,0.456305299993026,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6994946/ISIC_1099345.jpg
IL_7009317,BCC,dermoscopic,ISIC_6550575,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,lower_extremity,0.612626536579816,0.444940950279611,0.0687789891749598,0.690960707339297,0.207269048184598,0.486799524024605,0.303962074045244,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7009317/ISIC_6550575.jpg
IL_7010716,BCC,dermoscopic,ISIC_5272574,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,lower_extremity,0.294983725132204,0.643785398861926,0.119081311887037,0.347705194250937,0.0916554127138316,0.457133853175163,0.22438574681649,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7010716/ISIC_5272574.jpg
IL_7018812,NV,dermoscopic,ISIC_4604978,MILK study team,CC-BY-NC,instrument only,25.0,female,3.0,lower_extremity,0.461215120674914,0.514703333299143,0.0174600658752597,0.0797799599828108,0.938771720907155,0.126110510349522,0.236663934685994,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7018812/ISIC_4604978.jpg
IL_7023776,MEL,dermoscopic,ISIC_0303344,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,head_neck_face,0.739900029078574,0.244208246535903,0.0983495548172854,0.205390356271899,0.587701127668807,0.275528320050273,0.19242505598448,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7023776/ISIC_0303344.jpg
IL_7025715,BCC,dermoscopic,ISIC_4891974,MILK study team,CC-BY-NC,instrument only,40.0,female,5.0,head_neck_face,0.252372379539903,0.318967284361144,0.496574563250171,0.741483213253791,0.08272832906856,0.633447958838961,0.220574139152355,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7025715/ISIC_4891974.jpg
IL_7041328,BCC,dermoscopic,ISIC_3023055,MILK study team,CC-BY-NC,instrument only,50.0,female,4.0,head_neck_face,0.281640313252157,0.358638866079151,0.358013981556311,0.548805212484804,0.107987925591936,0.347862507702443,0.0203680755979884,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7041328/ISIC_3023055.jpg
IL_7048697,DF,dermoscopic,ISIC_2516006,MILK study team,CC-BY-NC,instrument only,40.0,male,4.0,upper_extremity,0.346305539618584,0.270327765225918,0.118612770595117,0.497020811060248,0.397696937122179,0.499280601320243,0.587590880077712,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7048697/ISIC_2516006.jpg
IL_7059623,NV,dermoscopic,ISIC_9153724,MILK study team,CC-BY-NC,instrument only,45.0,male,4.0,trunk,0.0379240680276879,0.249994668706682,0.0204516723877921,0.0231781340613322,0.756054855697653,0.137453161209515,0.272731651033548,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7059623/ISIC_9153724.jpg
IL_7062666,BCC,dermoscopic,ISIC_7588660,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,upper_extremity,0.248720534700805,0.379783815764056,0.229508515707511,0.130098724094717,0.485390968567975,0.19103075775049,0.179973942658724,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7062666/ISIC_7588660.jpg
IL_7074375,BCC,dermoscopic,ISIC_4583761,MILK study team,CC-BY-NC,instrument only,55.0,female,3.0,trunk,0.524589285377192,0.515610271396739,0.692994331228613,0.763991935981512,0.308453704148793,0.348627483930546,0.213982121966831,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7074375/ISIC_4583761.jpg
IL_7077656,BCC,dermoscopic,ISIC_8229493,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,trunk,0.189477877668316,0.214921579099751,0.201747694044046,0.856278709258891,0.111978278808479,0.385280491470071,0.117208746526696,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7077656/ISIC_8229493.jpg
IL_7099045,AKIEC,dermoscopic,ISIC_7705901,MILK study team,CC-BY-NC,instrument only,80.0,male,4.0,upper_extremity,0.309746130487047,0.462319409703157,0.192935576125876,0.381369777704859,0.149048299622873,0.546007919655722,0.0336083945311378,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7099045/ISIC_7705901.jpg
IL_7108184,BCC,dermoscopic,ISIC_6484938,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,lower_extremity,0.261246695355385,0.208665832543549,0.101220155914882,0.661747636014957,0.145897364751656,0.296877893442686,0.0755597155673525,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7108184/ISIC_6484938.jpg
IL_7110419,BCC,dermoscopic,ISIC_4582043,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,upper_extremity,0.496220334893376,0.442986675097505,0.143351627780931,0.399706173221701,0.205580732965108,0.186044635887869,0.150561309353665,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7110419/ISIC_4582043.jpg
IL_7117274,BCC,dermoscopic,ISIC_0319894,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,trunk,0.230616208013164,0.155585344523421,0.0310394301632427,0.568165423905782,0.137418912108399,0.11856287486687,0.0408824051356498,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7117274/ISIC_0319894.jpg
IL_7124552,NV,dermoscopic,ISIC_1604088,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,trunk,0.0384193867912339,0.450289206660858,0.007488701045149,0.101656598473164,0.827486932620637,0.0924788179358598,0.636705893350966,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7124552/ISIC_1604088.jpg
IL_7140493,BKL,dermoscopic,ISIC_0761359,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,lower_extremity,0.0681355215547979,0.274137854627727,0.60417162249975,0.889275562485959,0.164654865453022,0.47561206128921,0.173028542612455,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7140493/ISIC_0761359.jpg
IL_7145393,MEL,dermoscopic,ISIC_8815594,MILK study team,CC-BY-NC,instrument only,65.0,male,1.0,head_neck_face,0.115248149591132,0.441399804648627,0.0507267870923723,0.0377764771864413,0.844125330444234,0.143262191803997,0.421456660418334,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7145393/ISIC_8815594.jpg
IL_7154137,SCCKA,dermoscopic,ISIC_3203799,MILK study team,CC-BY-NC,instrument only,50.0,male,4.0,head_neck_face,0.934758342565187,0.211632859593063,0.448098651087627,0.162913557639005,0.0763523243442114,0.387192707746851,0.120857551285593,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7154137/ISIC_3203799.jpg
IL_7198144,BCC,dermoscopic,ISIC_4080973,MILK study team,CC-BY-NC,instrument only,50.0,male,2.0,trunk,0.653559506518386,0.511617041380018,0.339911119665322,0.463857640969023,0.172703969873964,0.527372350309816,0.130859383379564,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7198144/ISIC_4080973.jpg
IL_7219424,BCC,dermoscopic,ISIC_7793572,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,trunk,0.10354993340757,0.752572138416654,0.876426070634438,0.339495553931326,0.167344224654598,0.521718160558174,0.379906843394938,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7219424/ISIC_7793572.jpg
IL_7230035,MEL,dermoscopic,ISIC_9546502,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,trunk,0.376314167454635,0.242674001599828,0.155054723519436,0.218918183300018,0.471672009475494,0.175309923101575,0.390371129567747,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7230035/ISIC_9546502.jpg
IL_7230788,DF,dermoscopic,ISIC_1954444,MILK study team,CC-BY-NC,instrument only,65.0,male,4.0,upper_extremity,0.346089972223263,0.165547880819606,0.0498594759802497,0.343595071169741,0.250308909970219,0.259842583215919,0.417353602400671,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7230788/ISIC_1954444.jpg
IL_7237859,NV,dermoscopic,ISIC_2918081,MILK study team,CC-BY-NC,instrument only,65.0,male,4.0,trunk,0.040172748110753,0.435493085472341,0.0407662077812338,0.0700368557052023,0.666571903188071,0.243246525156327,0.46079910882966,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7237859/ISIC_2918081.jpg
IL_7239273,BCC,dermoscopic,ISIC_7788766,MILK study team,CC-BY-NC,instrument only,55.0,female,3.0,trunk,0.358291218749129,0.263449964375019,0.363533520330754,0.456376872669004,0.11055065612013,0.42710709575051,0.166189190611065,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7239273/ISIC_7788766.jpg
IL_7240345,NV,dermoscopic,ISIC_7973098,MILK study team,CC-BY-NC,instrument only,5.0,female,3.0,lower_extremity,0.0348994481983439,0.403446295499277,0.0214447696707606,0.0666543279030893,0.869270946558301,0.206095559354839,0.795171007088073,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7240345/ISIC_7973098.jpg
IL_7244270,BCC,dermoscopic,ISIC_9774801,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,trunk,0.416877919877923,0.321140026109044,0.0683615955056731,0.744360066705707,0.187923777319244,0.402275137384149,0.197312271874154,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7244270/ISIC_9774801.jpg
IL_7253924,BCC,dermoscopic,ISIC_0746908,MILK study team,CC-BY-NC,instrument only,70.0,male,4.0,lower_extremity,0.513371496348127,0.455444599628293,0.572284294507547,0.197363678944406,0.231826243136393,0.423476739321262,0.759499937575002,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7253924/ISIC_0746908.jpg
IL_7257549,BCC,dermoscopic,ISIC_3888868,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,trunk,0.176343278894246,0.350601595994672,0.123936057265621,0.0644053298675026,0.554455480100988,0.161155183056508,0.389934423989917,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7257549/ISIC_3888868.jpg
IL_7270407,BCC,dermoscopic,ISIC_0143535,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,trunk,0.588179387963433,0.372645465967427,0.0609463617149509,0.513620119334352,0.297175992122845,0.268704742763593,0.241899912668635,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7270407/ISIC_0143535.jpg
IL_7287548,BCC,dermoscopic,ISIC_1477042,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,head_neck_face,0.487461343336874,0.235717924209446,0.241394472701393,0.204090810785809,0.0891612117906179,0.313208250349977,0.0759000654072994,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7287548/ISIC_1477042.jpg
IL_7304734,SCCKA,dermoscopic,ISIC_6044250,MILK study team,CC-BY-NC,instrument only,60.0,male,4.0,upper_extremity,0.36427245999558,0.56016754688289,0.124137215912523,0.184409711801041,0.0961593261052036,0.551996782566303,0.0599302884021987,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7304734/ISIC_6044250.jpg
IL_7329436,BCC,dermoscopic,ISIC_1106208,MILK study team,CC-BY-NC,instrument only,70.0,male,5.0,head_neck_face,0.0987382296903149,0.228374943622604,0.178627554789216,0.132219810065738,0.542785287555755,0.248858856960736,0.069271700560457,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7329436/ISIC_1106208.jpg
IL_7331550,AKIEC,dermoscopic,ISIC_5335240,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,head_neck_face,0.0805849177415423,0.442288433179591,0.0289023285608568,0.0885049797629524,0.546199462657499,0.237010168347753,0.268392821880439,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7331550/ISIC_5335240.jpg
IL_7333819,BCC,dermoscopic,ISIC_0444953,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,upper_extremity,0.558502312114305,0.195467401387399,0.136338682096068,0.285208897154284,0.142799209203374,0.319265695454426,0.287958339603927,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7333819/ISIC_0444953.jpg
IL_7336538,BCC,dermoscopic,ISIC_8483907,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,trunk,0.576008818075351,0.183029574814608,0.0952097001331718,0.327939101847171,0.311365211885834,0.12783503483667,0.0655958914731834,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7336538/ISIC_8483907.jpg
IL_7356109,SCCKA,dermoscopic,ISIC_4977351,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,head_neck_face,0.371187576091905,0.371087158880698,0.110406830443237,0.170720754099993,0.0682999667864344,0.201227637135422,0.0322923566778646,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7356109/ISIC_4977351.jpg
IL_7361836,BCC,dermoscopic,ISIC_6755281,MILK study team,CC-BY-NC,instrument only,55.0,female,5.0,lower_extremity,0.111465247955548,0.218320782951931,0.2401434032578,0.788471210859808,0.223270390858127,0.235506399507326,0.282576373987781,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7361836/ISIC_6755281.jpg
IL_7363602,BCC,dermoscopic,ISIC_2282699,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,head_neck_face,0.10983816721812,0.32115013506795,0.29719718795994,0.326034914712464,0.261562953412825,0.382230128470619,0.0748623134561757,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7363602/ISIC_2282699.jpg
IL_7364791,BCC,dermoscopic,ISIC_7760822,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,head_neck_face,0.0911948304855366,0.442078015610468,0.880716239831999,0.209725514351106,0.171421832850672,0.448724304131719,0.059948507144536,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7364791/ISIC_7760822.jpg
IL_7372717,BKL,dermoscopic,ISIC_8352723,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,head_neck_face,0.210620224616629,0.417411028826087,0.0122649525262561,0.0709380881278007,0.791630921274334,0.290118171866583,0.506253254086744,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7372717/ISIC_8352723.jpg
IL_7373612,BCC,dermoscopic,ISIC_5434141,MILK study team,CC-BY-NC,instrument only,40.0,female,3.0,upper_extremity,0.354033418626917,0.342246276587704,0.296333901948718,0.219191933090072,0.110938313484219,0.27399536352722,0.145581116869243,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7373612/ISIC_5434141.jpg
IL_7382399,NV,dermoscopic,ISIC_8566440,MILK study team,CC-BY-NC,instrument only,40.0,female,2.0,trunk,0.0875909455326234,0.241332400314352,0.0600865989226605,0.0689363812865914,0.207141981430922,0.215873661637399,0.0818452425728967,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7382399/ISIC_8566440.jpg
IL_7437846,BCC,dermoscopic,ISIC_1446269,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,trunk,0.204255885457264,0.197702011141577,0.307954545842365,0.877173584626877,0.141779512157189,0.494065989748837,0.592384503377149,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7437846/ISIC_1446269.jpg
IL_7447582,BCC,dermoscopic,ISIC_4353551,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,trunk,0.245714100789545,0.362226320394628,0.330886842957663,0.263271098078532,0.179121870616588,0.146576666772236,0.0902103292651218,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7447582/ISIC_4353551.jpg
IL_7459473,BKL,dermoscopic,ISIC_3101169,MILK study team,CC-BY-NC,instrument only,40.0,male,3.0,trunk,0.479703883005846,0.126729482520278,0.0338733538922507,0.0617519481332311,0.180405302267238,0.0631797653799133,0.0725580114891797,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7459473/ISIC_3101169.jpg
IL_7464874,SCCKA,dermoscopic,ISIC_8723086,MILK study team,CC-BY-NC,instrument only,65.0,male,5.0,head_neck_face,0.578468631778574,0.291947565548776,0.595218553512808,0.257448015630472,0.206221937148709,0.562623989454783,0.108221671583692,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7464874/ISIC_8723086.jpg
IL_7465840,BCC,dermoscopic,ISIC_1855151,MILK study team,CC-BY-NC,instrument only,75.0,male,2.0,head_neck_face,0.431094414459272,0.796388509825915,0.146320615131999,0.337226658305573,0.615679146112088,0.486976143372044,0.581736730329552,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7465840/ISIC_1855151.jpg
IL_7471218,SCCKA,dermoscopic,ISIC_8790887,MILK study team,CC-BY-NC,instrument only,80.0,female,3.0,lower_extremity,0.468854932654928,0.367969998447045,0.0651707760808129,0.171885693845964,0.17307436514861,0.344597218448456,0.217194733889091,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7471218/ISIC_8790887.jpg
IL_7478633,INF,dermoscopic,ISIC_0202283,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,head_neck_face,0.656623134286918,0.129498294685356,0.114908968532201,0.789820540463187,0.0932668857732094,0.611587376210566,0.808463244618431,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7478633/ISIC_0202283.jpg
IL_7480471,AKIEC,dermoscopic,ISIC_3675883,MILK study team,CC-BY-NC,instrument only,35.0,male,3.0,trunk,0.455060355811654,0.756176040762728,0.40408947600583,0.4997088586053,0.191495159456449,0.481074769922719,0.0627813254348302,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7480471/ISIC_3675883.jpg
IL_7483628,BCC,dermoscopic,ISIC_7292116,MILK study team,CC-BY-NC,instrument only,40.0,female,3.0,trunk,0.23847768782311,0.371750294328782,0.499771911493044,0.630384077624842,0.156716323809796,0.49607772251909,0.640392703837571,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7483628/ISIC_7292116.jpg
IL_7487058,BCC,dermoscopic,ISIC_1163815,MILK study team,CC-BY-NC,instrument only,85.0,female,3.0,trunk,0.702163947874078,0.450490025893259,0.102743190938829,0.411830388704791,0.16950769315373,0.42283930009858,0.162361327762799,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7487058/ISIC_1163815.jpg
IL_7490546,BCC,dermoscopic,ISIC_0964556,MILK study team,CC-BY-NC,instrument only,65.0,male,5.0,head_neck_face,0.276048182825372,0.631772381981929,0.808915482561844,0.411239333029611,0.246269199356427,0.692833833738852,0.118657046218505,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7490546/ISIC_0964556.jpg
IL_7496538,BCC,dermoscopic,ISIC_5232516,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,upper_extremity,0.367532450116744,0.276154053028804,0.0218668758118258,0.167542122062678,0.442517220764694,0.173661937551669,0.227012839457608,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7496538/ISIC_5232516.jpg
IL_7508882,NV,dermoscopic,ISIC_5778552,MILK study team,CC-BY-NC,instrument only,60.0,female,4.0,head_neck_face,0.08700003622807,0.909382201915375,0.339381236011655,0.51124127637479,0.0719751591107609,0.492415785040296,0.224628553959791,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7508882/ISIC_5778552.jpg
IL_7518108,BKL,dermoscopic,ISIC_9945680,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,trunk,0.328134146740004,0.463163560113216,0.0303367855544131,0.0275079113318026,0.847820792151514,0.18459789451905,0.132722497145722,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7518108/ISIC_9945680.jpg
IL_7523112,BCC,dermoscopic,ISIC_3788989,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,lower_extremity,0.128409697815971,0.55970242372921,0.420645267026757,0.818731734630686,0.184645858683189,0.316633840660586,0.207786263047691,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7523112/ISIC_3788989.jpg
IL_7527529,NV,dermoscopic,ISIC_8410820,MILK study team,CC-BY-NC,instrument only,40.0,male,3.0,trunk,0.153311515724852,0.315716668972835,0.04609815108495,0.255942053427109,0.584123613019695,0.279293894208317,0.297311836785314,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7527529/ISIC_8410820.jpg
IL_7528709,BCC,dermoscopic,ISIC_1581919,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,head_neck_face,0.660443925181775,0.205402286385474,0.058427752956373,0.110181530680209,0.733526990711879,0.198205205565344,0.0473467571456019,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7528709/ISIC_1581919.jpg
IL_7534180,BCC,dermoscopic,ISIC_2334810,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,head_neck_face,0.111116383353245,0.252727689472592,0.292774458697367,0.597289419332122,0.121926925661713,0.282588454116933,0.0883216892459356,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7534180/ISIC_2334810.jpg
IL_7553488,NV,dermoscopic,ISIC_4509108,MILK study team,CC-BY-NC,instrument only,30.0,female,3.0,trunk,0.108917842085044,0.501288237931657,0.0459770088291012,0.0396506295679151,0.811902204138177,0.145679814653595,0.599718309205982,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7553488/ISIC_4509108.jpg
IL_7555285,BKL,dermoscopic,ISIC_3852630,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,head_neck_face,0.0733704366990673,0.405627067976457,0.0932871967443067,0.142573709581584,0.650372428069048,0.240319051303429,0.0693546091904145,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7555285/ISIC_3852630.jpg
IL_7581043,BEN_OTH,dermoscopic,ISIC_0867368,MILK study team,CC-BY-NC,instrument only,55.0,female,3.0,trunk,0.28634790068902,0.239495317790102,0.100536023949914,0.348417012546691,0.45397866263924,0.453181037310562,0.779939702115474,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7581043/ISIC_0867368.jpg
IL_7610789,NV,dermoscopic,ISIC_4473773,MILK study team,CC-BY-NC,instrument only,35.0,male,4.0,trunk,0.086854062255473,0.308826281184477,0.067394286109641,0.0402943981744565,0.789832539599597,0.127046680961156,0.247112128085129,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7610789/ISIC_4473773.jpg
IL_7613691,BKL,dermoscopic,ISIC_1272616,MILK study team,CC-BY-NC,instrument only,60.0,female,4.0,upper_extremity,0.0881022872574308,0.295700247884204,0.37133176560549,0.74580666654692,0.12209553744619,0.324600870372513,0.46837612793531,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7613691/ISIC_1272616.jpg
IL_7619884,BKL,dermoscopic,ISIC_5378143,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,trunk,0.376243355788013,0.343566068540151,0.486226238145279,0.262273764293178,0.289866434354341,0.770055477487582,0.092804573346143,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7619884/ISIC_5378143.jpg
IL_7627926,AKIEC,dermoscopic,ISIC_7274523,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,lower_extremity,0.269352449370139,0.438753419005255,0.291526001857204,0.603166788656019,0.450538160527263,0.448246593222572,0.431939484599914,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7627926/ISIC_7274523.jpg
IL_7642470,BCC,dermoscopic,ISIC_8372465,MILK study team,CC-BY-NC,instrument only,55.0,female,3.0,trunk,0.0601508158241467,0.419888490279749,0.147274086137753,0.0883561411820018,0.264723405988025,0.154924432879029,0.106714542814292,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7642470/ISIC_8372465.jpg
IL_7649992,BCC,dermoscopic,ISIC_6791466,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,trunk,0.836773719388038,0.101011784909793,0.205471705285961,0.342104249867711,0.241670460772753,0.132902521822785,0.18270804565593,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7649992/ISIC_6791466.jpg
IL_7663588,BCC,dermoscopic,ISIC_9204844,MILK study team,CC-BY-NC,instrument only,65.0,male,4.0,head_neck_face,0.143614175150507,0.264538903859271,0.521700699691119,0.69429500615454,0.166622781810669,0.355666101634669,0.0802600569829772,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7663588/ISIC_9204844.jpg
IL_7672692,BCC,dermoscopic,ISIC_3606192,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,upper_extremity,0.432689689042902,0.369196704100806,0.201641257068495,0.600759468788746,0.243452425092507,0.39765944457949,0.499350369245953,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7672692/ISIC_3606192.jpg
IL_7685934,MEL,dermoscopic,ISIC_6749742,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,head_neck_face,0.508043558712633,0.432417376273492,0.0697197368428812,0.182605265737248,0.799703520033656,0.157808657652244,0.453437639876815,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7685934/ISIC_6749742.jpg
IL_7714849,MEL,dermoscopic,ISIC_4851185,MILK study team,CC-BY-NC,instrument only,70.0,female,4.0,head_neck_face,0.0590209580016794,0.246140459958275,0.10587658602419,0.139631055134589,0.525605297273124,0.125226975051003,0.286169197751806,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7714849/ISIC_4851185.jpg
IL_7718928,BCC,dermoscopic,ISIC_7006889,MILK study team,CC-BY-NC,instrument only,65.0,male,5.0,head_neck_face,0.35273986899477,0.411715606335304,0.188959106158215,0.192147246483364,0.176004529327193,0.457941720331936,0.255610475133526,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7718928/ISIC_7006889.jpg
IL_7724286,BKL,dermoscopic,ISIC_4191448,MILK study team,CC-BY-NC,instrument only,40.0,male,4.0,trunk,0.09911711716466,0.495837743008414,0.676094273121286,0.250534921716148,0.396888856485961,0.43571633017528,0.0963260672572278,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7724286/ISIC_4191448.jpg
IL_7735449,NV,dermoscopic,ISIC_7702191,MILK study team,CC-BY-NC,instrument only,45.0,female,3.0,trunk,0.0949297387587987,0.410954447619752,0.0504552185663629,0.072140003292305,0.721882684540851,0.277745610799859,0.445860895542184,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7735449/ISIC_7702191.jpg
IL_7740320,DF,dermoscopic,ISIC_0569067,MILK study team,CC-BY-NC,instrument only,35.0,male,3.0,upper_extremity,0.454338828585684,0.394146318897886,0.193611715741701,0.480099763258767,0.222914653761747,0.1988202424291,0.230554289828296,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7740320/ISIC_0569067.jpg
IL_7743352,BEN_OTH,dermoscopic,ISIC_2501558,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,head_neck_face,0.0680133157288085,0.073259614117518,0.154713037421103,0.401822587524471,0.120239087708248,0.40040184276304,0.414127856294304,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7743352/ISIC_2501558.jpg
IL_7743393,AKIEC,dermoscopic,ISIC_2156383,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,hand,0.506924987743447,0.558918904685281,0.0207764839995879,0.346600069461434,0.168975017546085,0.397935391682148,0.0676787628016904,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7743393/ISIC_2156383.jpg
IL_7744787,MEL,dermoscopic,ISIC_8488027,MILK study team,CC-BY-NC,instrument only,40.0,female,3.0,lower_extremity,0.258216261760586,0.180983352933946,0.0028218627483089,0.112775685809948,0.839180860176528,0.133928519344915,0.366417541537978,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7744787/ISIC_8488027.jpg
IL_7749269,BCC,dermoscopic,ISIC_3392380,MILK study team,CC-BY-NC,instrument only,50.0,male,5.0,lower_extremity,0.588216406325614,0.493079274650135,0.326932870680861,0.683675601110479,0.393402249654093,0.545295036379923,0.591165778676036,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7749269/ISIC_3392380.jpg
IL_7749635,BKL,dermoscopic,ISIC_8738126,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,head_neck_face,0.571268685555257,0.272165061159434,0.223166338855727,0.32641252109782,0.211614768594585,0.685154580867005,0.115445191641913,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7749635/ISIC_8738126.jpg
IL_7753719,BCC,dermoscopic,ISIC_7458610,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,head_neck_face,0.0725309120493163,0.231374439142301,0.536307814405704,0.687366735415245,0.109764871173303,0.21838967947375,0.0516524646632583,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7753719/ISIC_7458610.jpg
IL_7762998,BCC,dermoscopic,ISIC_4849906,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,head_neck_face,0.539151241552035,0.168440199465101,0.189821151961936,0.333467565094958,0.280844617176569,0.411567450740297,0.103319783361789,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7762998/ISIC_4849906.jpg
IL_7764430,MEL,dermoscopic,ISIC_6993040,MILK study team,CC-BY-NC,instrument only,45.0,male,3.0,head_neck_face,0.594034240684185,0.612653259091187,0.0610655952607157,0.373317783233803,0.602237641569201,0.492287139043972,0.37946920689374,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7764430/ISIC_6993040.jpg
IL_7769100,BCC,dermoscopic,ISIC_9721840,MILK study team,CC-BY-NC,instrument only,80.0,male,2.0,trunk,0.636920006002845,0.109733833168708,0.226823983965375,0.457933134132303,0.560191335808704,0.33394771750232,0.449726793489875,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7769100/ISIC_9721840.jpg
IL_7769284,BCC,dermoscopic,ISIC_6738908,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,lower_extremity,0.447906043931456,0.411435029839556,0.214906722696333,0.800789254870786,0.0910360208604267,0.289788716519213,0.112531763773095,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7769284/ISIC_6738908.jpg
IL_7776622,NV,dermoscopic,ISIC_2240330,MILK study team,CC-BY-NC,instrument only,,male,5.0,lower_extremity,0.164883105473211,0.819535891990983,0.0843871485459726,0.0837249189304028,0.818107232982813,0.238068626068748,0.798419028261222,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7776622/ISIC_2240330.jpg
IL_7784987,NV,dermoscopic,ISIC_5863516,MILK study team,CC-BY-NC,instrument only,70.0,male,4.0,trunk,0.217564437997534,0.357952225422536,0.0360618534482959,0.0678891773123727,0.784679747921749,0.188045310221682,0.307044668775402,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7784987/ISIC_5863516.jpg
IL_7793730,BCC,dermoscopic,ISIC_5135443,MILK study team,CC-BY-NC,instrument only,85.0,male,4.0,lower_extremity,0.672795694607474,0.227286451041351,0.0168383526950995,0.330630218860324,0.265643000464024,0.29891866740606,0.0940903539154281,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7793730/ISIC_5135443.jpg
IL_7800799,BCC,dermoscopic,ISIC_8710450,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.325046117805162,0.418180411641936,0.16375812108082,0.337295318570386,0.394821037703775,0.327177331332351,0.293753800202114,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7800799/ISIC_8710450.jpg
IL_7808577,BEN_OTH,dermoscopic,ISIC_0460586,MILK study team,CC-BY-NC,instrument only,30.0,male,3.0,head_neck_face,0.62986711852822,0.443120505793088,0.266116961602632,0.471618727907486,0.5775315375592,0.806575754549726,0.141737822761101,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7808577/ISIC_0460586.jpg
IL_7820661,MEL,dermoscopic,ISIC_0184224,MILK study team,CC-BY-NC,instrument only,65.0,male,2.0,lower_extremity,0.811118380105891,0.32967090438217,0.0490894695464253,0.26289915290829,0.802233229607971,0.14748870547379,0.596229162570236,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7820661/ISIC_0184224.jpg
IL_7825697,MEL,dermoscopic,ISIC_3396463,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,trunk,0.1129992094633,0.507443876070336,0.0211029879858255,0.0271040475281341,0.84972146538459,0.0921928593440026,0.56984563180846,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7825697/ISIC_3396463.jpg
IL_7825787,BCC,dermoscopic,ISIC_7072857,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,head_neck_face,0.157374598924702,0.390967520484169,0.642218123061471,0.407734229767419,0.147287186168938,0.552251577795645,0.253535257604318,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7825787/ISIC_7072857.jpg
IL_7834176,BCC,dermoscopic,ISIC_8843537,MILK study team,CC-BY-NC,instrument only,80.0,female,3.0,lower_extremity,0.227278703012562,0.122879337621778,0.0833992983589632,0.289740217512186,0.179058519768356,0.071564757573549,0.0394041069793715,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7834176/ISIC_8843537.jpg
IL_7845840,BCC,dermoscopic,ISIC_4489686,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,trunk,0.218335288443979,0.29203538944222,0.17269646947658,0.509330308387079,0.232973027037255,0.214460140932569,0.0803058136845894,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7845840/ISIC_4489686.jpg
IL_7871086,BCC,dermoscopic,ISIC_3644082,MILK study team,CC-BY-NC,instrument only,55.0,female,3.0,head_neck_face,0.830038884855984,0.227043855189834,0.106501841624933,0.554746076975879,0.19736354593267,0.391921382344767,0.19334433458523,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7871086/ISIC_3644082.jpg
IL_7898098,BCC,dermoscopic,ISIC_6368798,MILK study team,CC-BY-NC,instrument only,65.0,female,4.0,trunk,0.139166186824947,0.258249241671095,0.239318532227846,0.620457293781133,0.141127531360592,0.219255114230026,0.108044105320454,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7898098/ISIC_6368798.jpg
IL_7908482,BKL,dermoscopic,ISIC_5798737,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,head_neck_face,0.241063539568716,0.546113536224966,0.0105953028476527,0.0781873417976603,0.903243705634107,0.105126565780839,0.352303330606319,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7908482/ISIC_5798737.jpg
IL_7921375,AKIEC,dermoscopic,ISIC_1130368,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,upper_extremity,0.438878969161195,0.550523999115368,0.309746749872924,0.55064734626969,0.207596330866877,0.230567039931119,0.238145804883461,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7921375/ISIC_1130368.jpg
IL_7928790,SCCKA,dermoscopic,ISIC_2731321,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,head_neck_face,0.294981041552525,0.264784324779955,0.29800077871669,0.419728899738193,0.233272432868266,0.318604517969885,0.0458203482779417,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7928790/ISIC_2731321.jpg
IL_7929294,NV,dermoscopic,ISIC_9129820,MILK study team,CC-BY-NC,instrument only,35.0,male,3.0,lower_extremity,0.0180564829130001,0.485796397410154,0.0288624450602551,0.0208778950492898,0.537148994669621,0.206052037514728,0.279622312221352,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7929294/ISIC_9129820.jpg
IL_7938649,BCC,dermoscopic,ISIC_2380041,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,lower_extremity,0.145410622506251,0.44649100797813,0.410697394714803,0.70258616146651,0.300173552558576,0.471476382460468,0.516901600675438,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7938649/ISIC_2380041.jpg
IL_7940673,MEL,dermoscopic,ISIC_2926418,MILK study team,CC-BY-NC,instrument only,45.0,male,3.0,trunk,0.216245613701232,0.32387597446272,0.0117104606992333,0.0363100880771444,0.806814784429563,0.13732061952565,0.462743364060433,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7940673/ISIC_2926418.jpg
IL_7943219,BKL,dermoscopic,ISIC_8356317,MILK study team,CC-BY-NC,instrument only,55.0,male,2.0,head_neck_face,0.0662555970207445,0.393414825267864,0.0061273816046107,0.13263040326714,0.698515828121616,0.192146624131609,0.103203795914259,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7943219/ISIC_8356317.jpg
IL_7964998,NV,dermoscopic,ISIC_3943135,MILK study team,CC-BY-NC,instrument only,35.0,female,5.0,trunk,0.087030268766459,0.629678395358905,0.118356282081472,0.0532290887214942,0.584007446780944,0.27795950742488,0.409692360590493,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7964998/ISIC_3943135.jpg
IL_7974648,NV,dermoscopic,ISIC_6990939,MILK study team,CC-BY-NC,instrument only,10.0,female,3.0,lower_extremity,0.0813707522878443,0.425377787759788,0.0410527871847988,0.0384647366082891,0.591327757744787,0.230568446675351,0.83096158484669,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7974648/ISIC_6990939.jpg
IL_7976753,MEL,dermoscopic,ISIC_0583712,MILK study team,CC-BY-NC,instrument only,30.0,male,2.0,trunk,0.431339131257647,0.503352154011068,0.0598323956430389,0.520667619064717,0.182075498495589,0.227924238579085,0.140890316487553,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7976753/ISIC_0583712.jpg
IL_7998645,SCCKA,dermoscopic,ISIC_8223761,MILK study team,CC-BY-NC,instrument only,70.0,male,4.0,upper_extremity,0.592454032659885,0.517525338817318,0.354789841596091,0.258964225157741,0.318177309233827,0.293551689949824,0.606029202774876,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7998645/ISIC_8223761.jpg
IL_8010976,BCC,dermoscopic,ISIC_7409855,MILK study team,CC-BY-NC,instrument only,80.0,male,5.0,lower_extremity,0.537824006610025,0.345341761478226,0.312480336205885,0.134902291888427,0.179407199969871,0.468580447380128,0.425295524599468,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8010976/ISIC_7409855.jpg
IL_8026752,NV,dermoscopic,ISIC_8314749,MILK study team,CC-BY-NC,instrument only,35.0,male,4.0,trunk,0.0397621513378595,0.383958663360228,0.0454621844522785,0.0987530238736956,0.810796181170969,0.150509509386167,0.590730841315227,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8026752/ISIC_8314749.jpg
IL_8057179,SCCKA,dermoscopic,ISIC_5451038,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,head_neck_face,0.852238047332872,0.2981763385366,0.0425028711006837,0.170063682964171,0.22537089624262,0.488095384878766,0.0775736131149209,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8057179/ISIC_5451038.jpg
IL_8066484,BCC,dermoscopic,ISIC_1716731,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,head_neck_face,0.044464508673803,0.408651088875127,0.851640690388196,0.371017401257745,0.164000056241766,0.369346542655234,0.107203883500445,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8066484/ISIC_1716731.jpg
IL_8073547,BKL,dermoscopic,ISIC_2655730,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,lower_extremity,0.0864098746599766,0.348738758699434,0.338758611054405,0.856881577600872,0.322755861640423,0.638384659337529,0.444723970444032,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8073547/ISIC_2655730.jpg
IL_8093153,BCC,dermoscopic,ISIC_1305247,MILK study team,CC-BY-NC,instrument only,70.0,male,5.0,trunk,0.158642868344574,0.316185030361965,0.704532975516248,0.500437737423758,0.0673740475264596,0.180155814107227,0.0868770475193193,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8093153/ISIC_1305247.jpg
IL_8099275,BEN_OTH,dermoscopic,ISIC_0165198,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,head_neck_face,0.513178614734324,0.426725315958885,0.286712821103058,0.821686474623399,0.0958174184444263,0.690562893862657,0.252459884957867,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8099275/ISIC_0165198.jpg
IL_8102879,INF,dermoscopic,ISIC_3434316,MILK study team,CC-BY-NC,instrument only,50.0,male,2.0,head_neck_face,0.309292018714673,0.440651312620137,0.111391816472831,0.745093921646763,0.560829227578833,0.456869915522875,0.727692588391989,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8102879/ISIC_3434316.jpg
IL_8106703,MEL,dermoscopic,ISIC_6833525,MILK study team,CC-BY-NC,instrument only,40.0,male,4.0,,0.145398486218532,0.366328167057068,0.0335210489726539,0.0260248516028927,0.90934718682337,0.120294986452498,0.440175860179685,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8106703/ISIC_6833525.jpg
IL_8118311,NV,dermoscopic,ISIC_0376931,MILK study team,CC-BY-NC,instrument only,45.0,female,2.0,upper_extremity,0.252344372570894,0.478754210751934,0.0305082987459714,0.145256957705693,0.731385493707542,0.299507083285012,0.729757762030268,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8118311/ISIC_0376931.jpg
IL_8124925,INF,dermoscopic,ISIC_9483103,MILK study team,CC-BY-NC,instrument only,20.0,male,5.0,trunk,0.679121189717879,0.327081354553393,0.334260454380106,0.687749632193274,0.120857553018221,0.561691431579168,0.69084869721863,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8124925/ISIC_9483103.jpg
IL_8142013,NV,dermoscopic,ISIC_7917060,MILK study team,CC-BY-NC,instrument only,70.0,male,4.0,upper_extremity,0.139532344895276,0.366475148961896,0.0671374980484,0.109559223567341,0.603927512214296,0.526442590833284,0.524035414250683,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8142013/ISIC_7917060.jpg
IL_8142572,NV,dermoscopic,ISIC_5294377,MILK study team,CC-BY-NC,instrument only,40.0,male,4.0,trunk,0.0651781111294837,0.462267285632052,0.0569952809101033,0.091818109580938,0.707238776208608,0.21852047833941,0.644432285877904,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8142572/ISIC_5294377.jpg
IL_8158489,BCC,dermoscopic,ISIC_2399021,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,trunk,0.0934128293945687,0.257721351296822,0.292451679761932,0.389396753316996,0.298853053177194,0.197354977547017,0.19318306188536,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8158489/ISIC_2399021.jpg
IL_8160690,SCCKA,dermoscopic,ISIC_6038731,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,head_neck_face,0.875109821114931,0.462346007468789,0.0831144041466261,0.230237665270211,0.10016945483702,0.511672886399483,0.0666400670548952,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8160690/ISIC_6038731.jpg
IL_8165717,NV,dermoscopic,ISIC_3685267,MILK study team,CC-BY-NC,instrument only,40.0,male,5.0,trunk,0.102466170954644,0.753946706406063,0.291327829526554,0.246970202442219,0.853160829562766,0.512236290646781,0.901840793581872,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8165717/ISIC_3685267.jpg
IL_8166826,MEL,dermoscopic,ISIC_0416055,MILK study team,CC-BY-NC,instrument only,65.0,male,1.0,head_neck_face,0.297602474902697,0.450729099220135,0.0540637354725182,0.221167524689332,0.725326283934804,0.186475680105247,0.302828560899579,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8166826/ISIC_0416055.jpg
IL_8173383,MEL,dermoscopic,ISIC_6689453,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,lower_extremity,0.0559441914501076,0.567216691052728,0.166933103613684,0.486956783919249,0.810629727856102,0.447923351801429,0.657130911641419,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8173383/ISIC_6689453.jpg
IL_8175900,BKL,dermoscopic,ISIC_1212608,MILK study team,CC-BY-NC,instrument only,55.0,male,4.0,trunk,0.744781168675577,0.183518626263832,0.0264853187500728,0.205708752997018,0.0641400352085393,0.219158872581344,0.132012919285772,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8175900/ISIC_1212608.jpg
IL_8188380,BCC,dermoscopic,ISIC_1816917,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,head_neck_face,0.311770022909735,0.353460000280094,0.0682727429660255,0.162010339791331,0.613040126424142,0.32917193826252,0.469769529316211,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8188380/ISIC_1816917.jpg
IL_8200378,AKIEC,dermoscopic,ISIC_0381744,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,head_neck_face,0.202433379363341,0.551223273371663,0.126858954460036,0.209788856527717,0.400681951345948,0.341499526081037,0.214315379347675,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8200378/ISIC_0381744.jpg
IL_8204669,MEL,dermoscopic,ISIC_0414164,MILK study team,CC-BY-NC,instrument only,55.0,female,4.0,lower_extremity,0.316049054239529,0.281110694553821,0.0164481372116978,0.127521411476257,0.580621142326638,0.0977560641649361,0.228436945043692,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8204669/ISIC_0414164.jpg
IL_8208194,SCCKA,dermoscopic,ISIC_8863147,MILK study team,CC-BY-NC,instrument only,80.0,female,4.0,lower_extremity,0.264915739519478,0.24870867553833,0.116684626521075,0.242158589371478,0.100230162291141,0.600464285668285,0.144981443506231,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8208194/ISIC_8863147.jpg
IL_8229749,BCC,dermoscopic,ISIC_6538645,MILK study team,CC-BY-NC,instrument only,80.0,male,5.0,upper_extremity,0.421550960373274,0.345557960779819,0.137153035028041,0.394553463027516,0.118522501294639,0.480409303613185,0.0754031335585747,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8229749/ISIC_6538645.jpg
IL_8244074,BCC,dermoscopic,ISIC_6114177,MILK study team,CC-BY-NC,instrument only,80.0,female,3.0,head_neck_face,0.392608961069635,0.472725062690075,0.348653802115119,0.893586067418188,0.231756911544563,0.473076462494796,0.167507462897157,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8244074/ISIC_6114177.jpg
IL_8252843,SCCKA,dermoscopic,ISIC_5398396,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,upper_extremity,0.690159795011527,0.368309748274258,0.229687454282529,0.19506253813919,0.176434850261696,0.30550061092382,0.163268470394318,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8252843/ISIC_5398396.jpg
IL_8255338,AKIEC,dermoscopic,ISIC_9488743,MILK study team,CC-BY-NC,instrument only,40.0,male,3.0,head_neck_face,0.38899461581055,0.278087083975838,0.171546996351298,0.272720863934888,0.0778037562608926,0.152541164791472,0.151731681137916,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8255338/ISIC_9488743.jpg
IL_8256503,BCC,dermoscopic,ISIC_0960754,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,lower_extremity,0.119897221790263,0.283248022052697,0.241931821392426,0.399611397715207,0.14722710112872,0.319529741141532,0.0778295560072702,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8256503/ISIC_0960754.jpg
IL_8259171,BCC,dermoscopic,ISIC_3911179,MILK study team,CC-BY-NC,instrument only,85.0,male,4.0,head_neck_face,0.707858188551322,0.328521802638147,0.0732923750086588,0.155518805925485,0.202994693554811,0.226699828213662,0.27280479345868,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8259171/ISIC_3911179.jpg
IL_8262115,BCC,dermoscopic,ISIC_5804522,MILK study team,CC-BY-NC,instrument only,75.0,female,4.0,trunk,0.334121852616871,0.194806314867677,0.167336263598155,0.266503606088437,0.148906115766083,0.432020459163795,0.423555312138186,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8262115/ISIC_5804522.jpg
IL_8264296,BKL,dermoscopic,ISIC_5998955,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,lower_extremity,0.144886989157492,0.240053266697284,0.328856156550752,0.580365723128598,0.121804279469474,0.18477317904405,0.4246853541008,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8264296/ISIC_5998955.jpg
IL_8266554,NV,dermoscopic,ISIC_0660859,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.0239183030767752,0.29751573362406,0.0728876868449785,0.113941604982758,0.832928108670843,0.243745533570151,0.681900682320372,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8266554/ISIC_0660859.jpg
IL_8283182,SCCKA,dermoscopic,ISIC_7235077,MILK study team,CC-BY-NC,instrument only,70.0,male,4.0,lower_extremity,0.24519254294589,0.451516279197838,0.812691199203807,0.48004058290102,0.169805796414034,0.694192299246101,0.493884249861197,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8283182/ISIC_7235077.jpg
IL_8312956,BCC,dermoscopic,ISIC_4426257,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.141355410397543,0.332397564678421,0.384409397734681,0.30741429923884,0.169193831012301,0.227314167761322,0.248025943490862,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8312956/ISIC_4426257.jpg
IL_8324597,BCC,dermoscopic,ISIC_7377119,MILK study team,CC-BY-NC,instrument only,65.0,female,4.0,upper_extremity,0.215197969168965,0.417452264570744,0.23098961814394,0.159626169237705,0.180683020039705,0.233583258690816,0.0998193701467412,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8324597/ISIC_7377119.jpg
IL_8326567,SCCKA,dermoscopic,ISIC_1518748,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,upper_extremity,0.216236812480385,0.70470177055912,0.154288883750961,0.214880970866865,0.342555899853792,0.436302793249909,0.0731576282198133,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8326567/ISIC_1518748.jpg
IL_8357719,BCC,dermoscopic,ISIC_1635697,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.124423032196346,0.262216049268915,0.454084272606724,0.746962931643359,0.239760831741046,0.257981761336556,0.074783560095171,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8357719/ISIC_1635697.jpg
IL_8374443,BCC,dermoscopic,ISIC_4597054,MILK study team,CC-BY-NC,instrument only,85.0,male,4.0,head_neck_face,0.730070818618289,0.197340478544526,0.0061911786368519,0.0494554961097517,0.292799879423942,0.0592572856311794,0.233329337961981,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8374443/ISIC_4597054.jpg
IL_8384410,SCCKA,dermoscopic,ISIC_0984507,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,head_neck_face,0.115565649624592,0.442137592557487,0.413133236725784,0.349366583060486,0.213635629825918,0.296150335071134,0.23066774394634,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8384410/ISIC_0984507.jpg
IL_8401238,SCCKA,dermoscopic,ISIC_9931617,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,lower_extremity,0.483497290542714,0.568000287414382,0.613951532807843,0.260279209803151,0.589698853830241,0.521350609517556,0.697146348732696,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8401238/ISIC_9931617.jpg
IL_8444340,BCC,dermoscopic,ISIC_0637655,MILK study team,CC-BY-NC,instrument only,70.0,female,4.0,head_neck_face,0.450468442348967,0.46556121116158,0.0682660701385132,0.593189851168682,0.163201976545739,0.265845968646996,0.399377253960126,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8444340/ISIC_0637655.jpg
IL_8445981,BCC,dermoscopic,ISIC_4599594,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,lower_extremity,0.297431888270269,0.240197274729664,0.249687425511853,0.475695086664273,0.113455936498934,0.256017142453485,0.0696849641758377,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8445981/ISIC_4599594.jpg
IL_8455587,BCC,dermoscopic,ISIC_6522135,MILK study team,CC-BY-NC,instrument only,55.0,female,5.0,head_neck_face,0.111723935088045,0.127674489356677,0.106193708886939,0.889317279711279,0.0542778990115505,0.46959525171866,0.262072997135196,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8455587/ISIC_6522135.jpg
IL_8462731,AKIEC,dermoscopic,ISIC_3428486,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,upper_extremity,0.456458896273498,0.439799300059699,0.259543857235964,0.60225548562799,0.148179918070104,0.481074839821913,0.0360606856136717,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8462731/ISIC_3428486.jpg
IL_8478424,NV,dermoscopic,ISIC_9611209,MILK study team,CC-BY-NC,instrument only,25.0,female,4.0,trunk,0.424577086265617,0.35240425703781,0.0634189774275394,0.0549499212033071,0.537014530946606,0.144872423329806,0.233265857764455,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8478424/ISIC_9611209.jpg
IL_8482465,BCC,dermoscopic,ISIC_7583370,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,lower_extremity,0.495490920615872,0.566970820520011,0.146765273658039,0.359090447363937,0.350566397241402,0.459394540738708,0.1863855164683,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8482465/ISIC_7583370.jpg
IL_8491993,VASC,dermoscopic,ISIC_1627498,MILK study team,CC-BY-NC,instrument only,35.0,female,3.0,lower_extremity,0.197039814360933,0.186476445996815,0.210359847303119,0.606027951962722,0.512238969403071,0.533917949427419,0.693026679431878,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8491993/ISIC_1627498.jpg
IL_8504644,BCC,dermoscopic,ISIC_7105876,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,lower_extremity,0.210846121242377,0.48999141661339,0.0623504682739317,0.454920794225549,0.286059383615698,0.205237450367062,0.151162993005095,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8504644/ISIC_7105876.jpg
IL_8506800,BCC,dermoscopic,ISIC_4920461,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,head_neck_face,0.142473495138145,0.287393529381595,0.0865834971183704,0.176059394108983,0.543798628207713,0.180112131927143,0.37716408664727,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8506800/ISIC_4920461.jpg
IL_8507909,BCC,dermoscopic,ISIC_6405078,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,trunk,0.271382783913553,0.326286027581736,0.220964261112143,0.54489662452475,0.254130644595752,0.266214364383139,0.414011413017486,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8507909/ISIC_6405078.jpg
IL_8508107,BCC,dermoscopic,ISIC_8368960,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,head_neck_face,0.566551243140222,0.289472433758492,0.839347724734548,0.714953849881396,0.104755392387057,0.440983175739366,0.357284374188548,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8508107/ISIC_8368960.jpg
IL_8516254,BCC,dermoscopic,ISIC_8823892,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,upper_extremity,0.377882621207083,0.226042687589738,0.154618789427323,0.75767798347101,0.0791708695090213,0.22982987656984,0.13021501783966,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8516254/ISIC_8823892.jpg
IL_8544201,BCC,dermoscopic,ISIC_0146278,MILK study team,CC-BY-NC,instrument only,55.0,male,4.0,upper_extremity,0.247110498614087,0.435725637461578,0.19553794008684,0.457975085086521,0.451748376409148,0.191857205659388,0.201138515188603,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8544201/ISIC_0146278.jpg
IL_8544444,BCC,dermoscopic,ISIC_2202736,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,trunk,0.0496848198757459,0.304834688216711,0.37749831187681,0.571764046084846,0.173685398909405,0.232761278013217,0.243652987957076,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8544444/ISIC_2202736.jpg
IL_8553966,AKIEC,dermoscopic,ISIC_7038723,MILK study team,CC-BY-NC,instrument only,45.0,male,3.0,head_neck_face,0.530289030720964,0.622133932905273,0.0577933346031247,0.37765937747439,0.0964621226214506,0.155493200095994,0.0814010690300129,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8553966/ISIC_7038723.jpg
IL_8554205,BCC,dermoscopic,ISIC_8218617,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,head_neck_face,0.751452700015232,0.435810614180309,0.55637952259628,0.647924856436148,0.498201874407932,0.477817757499883,0.207636092060629,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8554205/ISIC_8218617.jpg
IL_8570577,NV,dermoscopic,ISIC_7974869,MILK study team,CC-BY-NC,instrument only,35.0,male,3.0,head_neck_face,0.134170488850115,0.468564618962619,0.8143187722662,0.219319972644,0.161325676715553,0.582825337642912,0.685533838977747,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8570577/ISIC_7974869.jpg
IL_8578812,AKIEC,dermoscopic,ISIC_2417592,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,head_neck_face,0.0760754119612389,0.386819293287292,0.312957205830978,0.132857023880187,0.347011629448639,0.131180371994066,0.185857953907955,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8578812/ISIC_2417592.jpg
IL_8581964,BCC,dermoscopic,ISIC_6678187,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,lower_extremity,0.0872188924477262,0.238480062613698,0.256552396813787,0.38561706465736,0.0823129503357516,0.240081945500429,0.240635698825038,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8581964/ISIC_6678187.jpg
IL_8588152,MEL,dermoscopic,ISIC_9041525,MILK study team,CC-BY-NC,instrument only,45.0,male,2.0,trunk,0.283372077632056,0.389718089256717,0.0323035014305158,0.0752275542852611,0.827680583580758,0.184415442769815,0.884550327784278,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8588152/ISIC_9041525.jpg
IL_8604901,BCC,dermoscopic,ISIC_8090800,MILK study team,CC-BY-NC,instrument only,70.0,male,4.0,head_neck_face,0.60208767503843,0.472685559554504,0.0175352844382317,0.153920854399755,0.919981936545824,0.226362211211994,0.356675969450064,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8604901/ISIC_8090800.jpg
IL_8610456,BCC,dermoscopic,ISIC_5070126,MILK study team,CC-BY-NC,instrument only,55.0,male,5.0,head_neck_face,0.24419973783646,0.509078200254118,0.103902272054483,0.498879713350861,0.31783369120896,0.254525859304609,0.288722481910415,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8610456/ISIC_5070126.jpg
IL_8611519,NV,dermoscopic,ISIC_4733269,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,head_neck_face,0.414416849878198,0.272284401936182,0.0303052474727485,0.102348883911517,0.723663634993048,0.355212918449604,0.0476466335727577,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8611519/ISIC_4733269.jpg
IL_8618190,SCCKA,dermoscopic,ISIC_2900622,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,head_neck_face,0.733691227223802,0.273017963763858,0.386678071231314,0.27874037140023,0.181013250365344,0.402022695877485,0.0295166713509302,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8618190/ISIC_2900622.jpg
IL_8620816,BKL,dermoscopic,ISIC_2928924,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,head_neck_face,0.914808838192242,0.120041177791291,0.0434586229948329,0.0813250587893405,0.108234291931063,0.139691019823648,0.0075763330917035,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8620816/ISIC_2928924.jpg
IL_8622725,NV,dermoscopic,ISIC_8186630,MILK study team,CC-BY-NC,instrument only,50.0,female,2.0,lower_extremity,0.201346504482004,0.233529256242788,0.0599703885038081,0.19083618793495,0.541380435652344,0.339385889795689,0.5383365578544,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8622725/ISIC_8186630.jpg
IL_8626747,NV,dermoscopic,ISIC_2298923,MILK study team,CC-BY-NC,instrument only,20.0,female,2.0,trunk,0.17061948206996,0.500193746538918,0.081710912967206,0.148205192184209,0.600889035734721,0.431721757898922,0.309357599256912,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8626747/ISIC_2298923.jpg
IL_8650225,SCCKA,dermoscopic,ISIC_5866836,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,lower_extremity,0.664677680337439,0.280220471525637,0.0161069760339576,0.0730709729652075,0.0634544751638547,0.132214383988109,0.0172033242073409,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8650225/ISIC_5866836.jpg
IL_8662195,BCC,dermoscopic,ISIC_8035327,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,upper_extremity,0.152079384372231,0.380228036589704,0.2825094387182,0.102714894495672,0.279925126127575,0.309715725293283,0.586009242240839,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8662195/ISIC_8035327.jpg
IL_8679455,BCC,dermoscopic,ISIC_4481385,MILK study team,CC-BY-NC,instrument only,60.0,male,4.0,upper_extremity,0.458947316244513,0.674070362575795,0.2726838860392,0.575696915089445,0.333480021599517,0.512699312725047,0.405944405090035,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8679455/ISIC_4481385.jpg
IL_8681344,MEL,dermoscopic,ISIC_4788552,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,trunk,0.496139781344297,0.453781808598444,0.0173314576277071,0.208512911273865,0.675301828365841,0.244143594377946,0.122642359900746,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8681344/ISIC_4788552.jpg
IL_8703940,SCCKA,dermoscopic,ISIC_0116442,MILK study team,CC-BY-NC,instrument only,45.0,male,4.0,upper_extremity,0.168692579324099,0.345657363150781,0.5162555690563,0.597634299581561,0.115565572803253,0.653352544164149,0.0447916705494147,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8703940/ISIC_0116442.jpg
IL_8706105,BCC,dermoscopic,ISIC_0082638,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,lower_extremity,0.0859465920704744,0.345636128348558,0.09139874367971,0.120792710881802,0.227769251978461,0.35710225072555,0.125711477557022,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8706105/ISIC_0082638.jpg
IL_8711548,BKL,dermoscopic,ISIC_1955962,MILK study team,CC-BY-NC,instrument only,60.0,female,2.0,trunk,0.0695384787873088,0.264366374882467,0.0235442641262396,0.218823028764815,0.630568892337521,0.167444939736715,0.0901646855837683,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8711548/ISIC_1955962.jpg
IL_8711838,BCC,dermoscopic,ISIC_3735481,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,trunk,0.620963161988279,0.582657354684969,0.568098023682089,0.589649605397577,0.300930210336787,0.488638014506301,0.6509051665212,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8711838/ISIC_3735481.jpg
IL_8714765,BKL,dermoscopic,ISIC_7675736,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,upper_extremity,0.153248439821584,0.593713252727241,0.396585362162399,0.21689928307827,0.499447404938327,0.448370645845345,0.269424245450237,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8714765/ISIC_7675736.jpg
IL_8717683,NV,dermoscopic,ISIC_9714916,MILK study team,CC-BY-NC,instrument only,55.0,female,4.0,trunk,0.0450964504778068,0.436283426967899,0.0088812292215858,0.0719472650978763,0.756735254012463,0.111297313831911,0.222477475131193,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8717683/ISIC_9714916.jpg
IL_8719061,BCC,dermoscopic,ISIC_8890680,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,trunk,0.244890717642809,0.564047905377355,0.794192997024285,0.655985838061741,0.10821486890925,0.3348406712646,0.0263428709466216,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8719061/ISIC_8890680.jpg
IL_8725130,BKL,dermoscopic,ISIC_8059473,MILK study team,CC-BY-NC,instrument only,70.0,female,4.0,trunk,0.0581131203200295,0.379404065384091,0.331496583196303,0.336787324746337,0.340096217088435,0.218362729191646,0.353282486818887,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8725130/ISIC_8059473.jpg
IL_8736766,BCC,dermoscopic,ISIC_6955501,MILK study team,CC-BY-NC,instrument only,50.0,male,4.0,head_neck_face,0.213148581402221,0.707172308786518,0.535952010632747,0.657563717718757,0.274138219630449,0.636417151228677,0.467649287188095,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8736766/ISIC_6955501.jpg
IL_8752697,SCCKA,dermoscopic,ISIC_2209183,MILK study team,CC-BY-NC,instrument only,80.0,male,4.0,head_neck_face,0.0888495167231078,0.680226000158763,0.774414297053676,0.691608789269794,0.270102381853335,0.627314680409358,0.415294963229023,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8752697/ISIC_2209183.jpg
IL_8783042,BCC,dermoscopic,ISIC_9597152,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,trunk,0.394623865833591,0.478296274177552,0.251330921029218,0.565382679117234,0.143815020662729,0.328552928513243,0.146481706501534,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8783042/ISIC_9597152.jpg
IL_8800243,BCC,dermoscopic,ISIC_7347180,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,upper_extremity,0.556510812977128,0.297200562430107,0.0565471652817198,0.0773861388704042,0.588331204869001,0.271395023246293,0.305939372953441,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8800243/ISIC_7347180.jpg
IL_8803152,AKIEC,dermoscopic,ISIC_4949237,MILK study team,CC-BY-NC,instrument only,45.0,male,3.0,upper_extremity,0.0997526831904585,0.40736161576915,0.359874306126546,0.469607797410969,0.31308369261655,0.292812746119147,0.389267984511693,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8803152/ISIC_4949237.jpg
IL_8805142,BKL,dermoscopic,ISIC_4602849,MILK study team,CC-BY-NC,instrument only,65.0,female,2.0,head_neck_face,0.152606124044627,0.182700272802023,0.010774249464852,0.0208058670607298,0.745142421782186,0.127157465738272,0.2938472451444,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8805142/ISIC_4602849.jpg
IL_8822249,BCC,dermoscopic,ISIC_1642723,MILK study team,CC-BY-NC,instrument only,55.0,male,5.0,head_neck_face,0.0692164060644128,0.48109478378363,0.317719419949939,0.248201204805747,0.132847321005072,0.372609505039247,0.0674612036299126,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8822249/ISIC_1642723.jpg
IL_8825058,SCCKA,dermoscopic,ISIC_3042275,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,foot,0.908390988501611,0.189559468885355,0.129743554816905,0.419175251707485,0.226122527347866,0.259886934112294,0.0625090904610595,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8825058/ISIC_3042275.jpg
IL_8834020,BCC,dermoscopic,ISIC_8168496,MILK study team,CC-BY-NC,instrument only,65.0,male,5.0,head_neck_face,0.441909784572497,0.706668613048001,0.870361332089922,0.897366635244188,0.336141817627537,0.698662295127364,0.294120070663035,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8834020/ISIC_8168496.jpg
IL_8835996,NV,dermoscopic,ISIC_9931935,MILK study team,CC-BY-NC,instrument only,45.0,male,2.0,trunk,0.273465332183496,0.315771796286962,0.0404582165244041,0.171143111117582,0.620791278788799,0.251305564621473,0.578153546539858,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8835996/ISIC_9931935.jpg
IL_8855847,BCC,dermoscopic,ISIC_8708228,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,trunk,0.346027268493853,0.286578770584924,0.377432083541218,0.565772108634367,0.10251466798434,0.239654734293871,0.133124301579318,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8855847/ISIC_8708228.jpg
IL_8885600,BCC,dermoscopic,ISIC_5200686,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,upper_extremity,0.810177777404294,0.564251402936646,0.766373213657304,0.64653211276749,0.182613202533161,0.60552095421385,0.0643638968737292,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8885600/ISIC_5200686.jpg
IL_8893510,AKIEC,dermoscopic,ISIC_1208071,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,head_neck_face,0.385114383772798,0.389719651119198,0.040486330470465,0.0489833273636984,0.336646418988379,0.211170442706963,0.105016824359457,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8893510/ISIC_1208071.jpg
IL_8908533,BCC,dermoscopic,ISIC_0974866,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,upper_extremity,0.083709367902668,0.286582586466593,0.309157292412088,0.86909185989728,0.0739022302488127,0.285141207521048,0.253357362807101,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8908533/ISIC_0974866.jpg
IL_8918294,BCC,dermoscopic,ISIC_0715665,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,head_neck_face,0.68783167884638,0.577709016081491,0.223602547879762,0.519524520250204,0.301091969819904,0.32068101030098,0.223992483600407,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8918294/ISIC_0715665.jpg
IL_8937379,BKL,dermoscopic,ISIC_1102915,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,head_neck_face,0.425498303001397,0.427539926091391,0.389868683847407,0.224006308926236,0.29327099364847,0.185417414968815,0.347793516197525,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8937379/ISIC_1102915.jpg
IL_8954957,BCC,dermoscopic,ISIC_8448006,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,lower_extremity,0.440934454208118,0.347060818883135,0.231170160653539,0.336106217195853,0.28295770255396,0.145982517838812,0.321079908711579,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8954957/ISIC_8448006.jpg
IL_8957515,SCCKA,dermoscopic,ISIC_8686696,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,lower_extremity,0.357319039896517,0.297322013249287,0.223905060579724,0.288864454521937,0.249425470407365,0.328090623882768,0.315140692469424,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8957515/ISIC_8686696.jpg
IL_8971740,BEN_OTH,dermoscopic,ISIC_2515838,MILK study team,CC-BY-NC,instrument only,60.0,male,5.0,trunk,0.0938482595765924,0.396777488196455,0.295711935551414,0.838751390475124,0.503346237798051,0.444779219981533,0.449311994662051,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8971740/ISIC_2515838.jpg
IL_8983305,BCC,dermoscopic,ISIC_7365593,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,trunk,0.377705901682875,0.42923882841002,0.770609938905465,0.437463946014572,0.253533574914561,0.236669798529303,0.0629545072822156,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8983305/ISIC_7365593.jpg
IL_8991771,SCCKA,dermoscopic,ISIC_1111477,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,lower_extremity,0.509420620993923,0.120288863441259,0.0781994459476365,0.34211407693671,0.0940484217495044,0.21871648869029,0.03386200441886,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8991771/ISIC_1111477.jpg
IL_8993407,BCC,dermoscopic,ISIC_2264421,MILK study team,CC-BY-NC,instrument only,75.0,female,3.0,head_neck_face,0.0548338911509216,0.467768635988865,0.434614404546409,0.704355227748912,0.3204707286473,0.347822731461089,0.312202921436363,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8993407/ISIC_2264421.jpg
IL_8994019,NV,dermoscopic,ISIC_6873786,MILK study team,CC-BY-NC,instrument only,40.0,male,3.0,trunk,0.251151562230791,0.419430048720529,0.0522518195529034,0.115740729220253,0.742628449013662,0.314127728089715,0.476663168492876,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8994019/ISIC_6873786.jpg
IL_8998802,AKIEC,dermoscopic,ISIC_1940714,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,head_neck_face,0.465327315620223,0.449822698580979,0.0289684253530012,0.0605573965308938,0.633935748783521,0.161682704652576,0.197256483361752,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8998802/ISIC_1940714.jpg
IL_9007318,SCCKA,dermoscopic,ISIC_6639016,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,lower_extremity,0.905463671921155,0.0925398666449137,0.0340234373624675,0.177363318968205,0.0773772053157696,0.120905792625816,0.0195748957116179,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9007318/ISIC_6639016.jpg
IL_9038692,SCCKA,dermoscopic,ISIC_2457583,MILK study team,CC-BY-NC,instrument only,70.0,male,4.0,head_neck_face,0.157496050901361,0.457070916083808,0.409611282049535,0.421293650073285,0.24033752442288,0.417353181921038,0.172154090878882,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9038692/ISIC_2457583.jpg
IL_9059255,SCCKA,dermoscopic,ISIC_3713055,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,hand,0.0578121121318385,0.945807246276685,0.579539334776336,0.423141176619052,0.219447392558856,0.478610331636752,0.269513937501329,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9059255/ISIC_3713055.jpg
IL_9064391,BCC,dermoscopic,ISIC_0506795,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,trunk,0.621709956750717,0.54972161387189,0.349049146878136,0.258590450482809,0.17925402346361,0.405623767909953,0.223843018557823,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9064391/ISIC_0506795.jpg
IL_9064607,BKL,dermoscopic,ISIC_6933070,MILK study team,CC-BY-NC,instrument only,45.0,male,3.0,lower_extremity,0.115619775691037,0.496999105076342,0.697636267000142,0.804995300725247,0.270324939233378,0.38931417365119,0.394164608675711,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9064607/ISIC_6933070.jpg
IL_9067051,BCC,dermoscopic,ISIC_3138874,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,upper_extremity,0.445803158511083,0.385301109703988,0.240991636644959,0.497798325155355,0.266414477484866,0.526195907233585,0.262169274787233,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9067051/ISIC_3138874.jpg
IL_9067447,AKIEC,dermoscopic,ISIC_5993206,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,upper_extremity,0.187788180965112,0.3423059733305,0.237969805940049,0.739779393183439,0.287749489831588,0.284051242616176,0.198189996699994,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9067447/ISIC_5993206.jpg
IL_9088569,SCCKA,dermoscopic,ISIC_6965635,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,trunk,0.900679953721847,0.247264671387928,0.265725499881594,0.694368212072414,0.0965947972071953,0.41732563021844,0.175275658629204,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9088569/ISIC_6965635.jpg
IL_9101590,BCC,dermoscopic,ISIC_7925520,MILK study team,CC-BY-NC,instrument only,80.0,female,3.0,trunk,0.048856014211501,0.429256658863006,0.483164545350031,0.252547160114609,0.162848843895098,0.608286289863779,0.263764301951952,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9101590/ISIC_7925520.jpg
IL_9109267,NV,dermoscopic,ISIC_1715773,MILK study team,CC-BY-NC,instrument only,45.0,female,3.0,lower_extremity,0.336770127967105,0.250110963286751,0.0287105218921121,0.120292920043974,0.697248557084209,0.328407599894619,0.627090526555131,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9109267/ISIC_1715773.jpg
IL_9127211,BCC,dermoscopic,ISIC_3267303,MILK study team,CC-BY-NC,instrument only,30.0,female,3.0,trunk,0.819438489945085,0.167630546416615,0.402417292706119,0.261138161850573,0.0704022997177961,0.499363376653453,0.157513003928946,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9127211/ISIC_3267303.jpg
IL_9132121,BEN_OTH,dermoscopic,ISIC_0811596,MILK study team,CC-BY-NC,instrument only,70.0,male,5.0,head_neck_face,0.23379120436693,0.196905535227023,0.0172143077710278,0.145703144420542,0.79095079274329,0.105467793637494,0.758756870104062,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9132121/ISIC_0811596.jpg
IL_9149489,NV,dermoscopic,ISIC_8500794,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,upper_extremity,0.134382048974455,0.209575787837683,0.0369026408624098,0.112451099754794,0.614871171486844,0.167695117074791,0.576812482204669,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9149489/ISIC_8500794.jpg
IL_9156080,BCC,dermoscopic,ISIC_2556744,MILK study team,CC-BY-NC,instrument only,60.0,male,4.0,lower_extremity,0.217487656235418,0.388688337036333,0.058641355739385,0.0784533047929456,0.175348337013111,0.170064855170127,0.0536010277413368,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9156080/ISIC_2556744.jpg
IL_9158531,NV,dermoscopic,ISIC_8615694,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,trunk,0.316420706975799,0.423189745151524,0.0562060680343148,0.14634701026312,0.723208662139771,0.390393960225872,0.150288020027464,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9158531/ISIC_8615694.jpg
IL_9171073,BCC,dermoscopic,ISIC_1770277,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,upper_extremity,0.520138035670208,0.279346855137912,0.291759312479832,0.292507551946883,0.124700811693744,0.198349055235246,0.104633388634821,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9171073/ISIC_1770277.jpg
IL_9179227,BCC,dermoscopic,ISIC_7217395,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,head_neck_face,0.292060772711054,0.410350998663222,0.178086094979712,0.43962560995523,0.163137436996339,0.130704563860017,0.0895417483230405,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9179227/ISIC_7217395.jpg
IL_9180227,SCCKA,dermoscopic,ISIC_3910778,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,upper_extremity,0.862378032681069,0.493234593474549,0.192718385360917,0.712539560160793,0.147558428257982,0.616751201114696,0.18634328068434,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9180227/ISIC_3910778.jpg
IL_9191697,MEL,dermoscopic,ISIC_2959395,MILK study team,CC-BY-NC,instrument only,40.0,male,3.0,lower_extremity,0.486036034922922,0.369495208757525,0.682264475537476,0.266440782737416,0.0648903530291848,0.775698732091822,0.239290731225296,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9191697/ISIC_2959395.jpg
IL_9195034,BCC,dermoscopic,ISIC_8260302,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,lower_extremity,0.105307905315952,0.371965232545702,0.344453132620596,0.159376359626322,0.272353176031621,0.20932352831463,0.202311693411206,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9195034/ISIC_8260302.jpg
IL_9195436,BCC,dermoscopic,ISIC_9816395,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,head_neck_face,0.431482670414187,0.60600340660273,0.472784950139476,0.519600577525035,0.285884076782568,0.250621589792834,0.241886316817965,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9195436/ISIC_9816395.jpg
IL_9229110,MEL,dermoscopic,ISIC_3248418,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,upper_extremity,0.198189192325161,0.394418395981876,0.104327123724754,0.139681506356527,0.504441628100269,0.401783813843184,0.221541501893806,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9229110/ISIC_3248418.jpg
IL_9232367,BCC,dermoscopic,ISIC_7245189,MILK study team,CC-BY-NC,instrument only,70.0,female,3.0,lower_extremity,0.0504763411879356,0.303607972974502,0.435338245773675,0.498642877403237,0.213692577480455,0.22191556201408,0.430025131480713,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9232367/ISIC_7245189.jpg
IL_9245016,BCC,dermoscopic,ISIC_7827973,MILK study team,CC-BY-NC,instrument only,40.0,female,3.0,upper_extremity,0.0723788534651815,0.50933657015005,0.742442264994392,0.356624488474108,0.254185908542099,0.415750647233477,0.375660581379734,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9245016/ISIC_7827973.jpg
IL_9247349,BCC,dermoscopic,ISIC_4823638,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.382475579583169,0.678575013574127,0.340397465938339,0.747024326459223,0.364271822861459,0.437005135878074,0.550594672940202,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9247349/ISIC_4823638.jpg
IL_9250210,NV,dermoscopic,ISIC_5529223,MILK study team,CC-BY-NC,instrument only,20.0,female,2.0,lower_extremity,0.0627109142820765,0.27656442547343,0.0877818337546695,0.350693362553036,0.726863497872064,0.312458361795259,0.567049638016262,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9250210/ISIC_5529223.jpg
IL_9269726,BCC,dermoscopic,ISIC_1928560,MILK study team,CC-BY-NC,instrument only,55.0,male,5.0,head_neck_face,0.661047601972049,0.108521666508723,0.257590267332681,0.254548965031256,0.101904705990633,0.356351056189451,0.0585442674438769,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9269726/ISIC_1928560.jpg
IL_9271885,BCC,dermoscopic,ISIC_6296087,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,trunk,0.575281375897233,0.613422270240814,0.346042823547691,0.70383147799638,0.317058425605203,0.53184524252744,0.405744058009667,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9271885/ISIC_6296087.jpg
IL_9274006,BEN_OTH,dermoscopic,ISIC_5488940,MILK study team,CC-BY-NC,instrument only,60.0,male,5.0,trunk,0.376247967517222,0.104948081276188,0.0740042353855194,0.849925913441711,0.205240569706911,0.687457844911097,0.0871602469907794,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9274006/ISIC_5488940.jpg
IL_9297501,SCCKA,dermoscopic,ISIC_2618411,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,head_neck_face,0.870482715991284,0.379784081765777,0.326017837325198,0.530430829707433,0.209128498741537,0.253471102555209,0.053984603123247,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9297501/ISIC_2618411.jpg
IL_9300549,MEL,dermoscopic,ISIC_0406149,MILK study team,CC-BY-NC,instrument only,45.0,female,3.0,upper_extremity,0.205814654687342,0.511281246841283,0.0625967779071778,0.143172081245865,0.828768072043737,0.23282109303977,0.553741126081093,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9300549/ISIC_0406149.jpg
IL_9324964,BCC,dermoscopic,ISIC_3024690,MILK study team,CC-BY-NC,instrument only,55.0,male,4.0,trunk,0.305164273855741,0.556831918741304,0.404430097498097,0.696103905131929,0.193148950312334,0.405204421529593,0.21305645925997,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9324964/ISIC_3024690.jpg
IL_9331050,BKL,dermoscopic,ISIC_8726132,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,head_neck_face,0.193626342672778,0.204634672155797,0.0397495635097136,0.434142093603936,0.294500765116961,0.249191764346978,0.0526257453473091,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9331050/ISIC_8726132.jpg
IL_9353162,DF,dermoscopic,ISIC_9242872,MILK study team,CC-BY-NC,instrument only,40.0,male,3.0,lower_extremity,0.13444774672342,0.336557919795446,0.302799253700196,0.315152901398506,0.237923461206423,0.492337538114946,0.637772144661631,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9353162/ISIC_9242872.jpg
IL_9363651,BCC,dermoscopic,ISIC_1303477,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.575784398060143,0.274401501967829,0.300146644856236,0.649267529000841,0.13752221256307,0.566504645980092,0.12737450442377,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9363651/ISIC_1303477.jpg
IL_9366811,BCC,dermoscopic,ISIC_3466904,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,head_neck_face,0.266208146921367,0.715868180698709,0.27288167144764,0.67422403122502,0.327719135429359,0.306923140343164,0.203684461675947,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9366811/ISIC_3466904.jpg
IL_9367800,NV,dermoscopic,ISIC_0656805,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,head_neck_face,0.407168071907515,0.794638241756835,0.169816898226777,0.304777166255816,0.153836061012762,0.521170710740523,0.567252760953864,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9367800/ISIC_0656805.jpg
IL_9383072,BCC,dermoscopic,ISIC_7397137,MILK study team,CC-BY-NC,instrument only,70.0,female,4.0,head_neck_face,0.161662775923167,0.474438111196125,0.831616685715617,0.454808525282798,0.137400329825999,0.808268365716807,0.136595870524052,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9383072/ISIC_7397137.jpg
IL_9391328,BCC,dermoscopic,ISIC_4480326,MILK study team,CC-BY-NC,instrument only,50.0,male,5.0,head_neck_face,0.763567223310679,0.191853916440273,0.158212673250644,0.347346761258283,0.636538694450552,0.360347401272056,0.426859381383484,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9391328/ISIC_4480326.jpg
IL_9395136,BCC,dermoscopic,ISIC_8410933,MILK study team,CC-BY-NC,instrument only,55.0,female,4.0,trunk,0.0796843896476637,0.226856162130627,0.184229713963164,0.419252090723852,0.192231472263833,0.180624028433673,0.0459760519994415,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9395136/ISIC_8410933.jpg
IL_9403422,BCC,dermoscopic,ISIC_3609001,MILK study team,CC-BY-NC,instrument only,40.0,male,3.0,upper_extremity,0.118606851585605,0.565678122635634,0.277482471470564,0.637624683327275,0.141224325861159,0.24903369068392,0.194650366793881,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9403422/ISIC_3609001.jpg
IL_9417077,NV,dermoscopic,ISIC_9002358,MILK study team,CC-BY-NC,instrument only,10.0,female,4.0,head_neck_face,0.432769855381906,0.771596761021933,0.0804183390114909,0.113868649228395,0.298733635891942,0.555888535494332,0.113253346392896,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9417077/ISIC_9002358.jpg
IL_9420011,BCC,dermoscopic,ISIC_1189485,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,lower_extremity,0.499745869134585,0.64524063914587,0.251407544011097,0.54088799218772,0.200545001525704,0.302981096993992,0.463582323002928,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9420011/ISIC_1189485.jpg
IL_9426275,BCC,dermoscopic,ISIC_5296244,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,head_neck_face,0.823732641854831,0.396854968817995,0.191900242986443,0.0620966116066918,0.23976260282078,0.127282781380574,0.341826962727838,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9426275/ISIC_5296244.jpg
IL_9428549,AKIEC,dermoscopic,ISIC_2921012,MILK study team,CC-BY-NC,instrument only,45.0,male,3.0,trunk,0.835112341802415,0.139728729008203,0.279456495592343,0.0911899736242946,0.0971891944341924,0.232700773453233,0.040086014976218,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9428549/ISIC_2921012.jpg
IL_9439639,MEL,dermoscopic,ISIC_8126703,MILK study team,CC-BY-NC,instrument only,60.0,female,2.0,head_neck_face,0.341677500884375,0.336513768263243,0.0050661630349639,0.0111722991210376,0.912352599643196,0.149255972093794,0.159632552283712,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9439639/ISIC_8126703.jpg
IL_9440413,BKL,dermoscopic,ISIC_5823053,MILK study team,CC-BY-NC,instrument only,65.0,female,2.0,head_neck_face,0.26266035207841,0.475375060625877,0.0291830496685964,0.154998487821597,0.751318995973522,0.175429538023741,0.373073798102891,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9440413/ISIC_5823053.jpg
IL_9446823,SCCKA,dermoscopic,ISIC_1048496,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,upper_extremity,0.838913944449024,0.305051970502568,0.314626343152182,0.453964133928325,0.0312809165153385,0.545758105157781,0.221151490313882,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9446823/ISIC_1048496.jpg
IL_9449213,BCC,dermoscopic,ISIC_7347161,MILK study team,CC-BY-NC,instrument only,85.0,female,3.0,upper_extremity,0.744640627309741,0.56572283647371,0.211940110422785,0.338561147236415,0.169895227030902,0.435313961528851,0.381836020227423,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9449213/ISIC_7347161.jpg
IL_9462627,BCC,dermoscopic,ISIC_5686739,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,trunk,0.080056189152848,0.299499422377704,0.285146778971072,0.530922111221566,0.11702156642786,0.188189031613843,0.0385604036553863,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9462627/ISIC_5686739.jpg
IL_9466832,NV,dermoscopic,ISIC_0768610,MILK study team,CC-BY-NC,instrument only,55.0,female,4.0,lower_extremity,0.0971647761635685,0.600277158889287,0.150210015260535,0.298192848124459,0.838594572023584,0.14793369568908,0.683092641486481,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9466832/ISIC_0768610.jpg
IL_9475061,INF,dermoscopic,ISIC_8790740,MILK study team,CC-BY-NC,instrument only,40.0,female,3.0,head_neck_face,0.343488918555307,0.217476771238254,0.119681808668449,0.838643725445871,0.0778860914166786,0.529411442871482,0.164359870069166,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9475061/ISIC_8790740.jpg
IL_9480741,INF,dermoscopic,ISIC_9641859,MILK study team,CC-BY-NC,instrument only,60.0,male,5.0,trunk,0.32818153015528,0.501912236848645,0.394165053773001,0.94259308134838,0.232778516027896,0.82683083544111,0.709326590701068,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9480741/ISIC_9641859.jpg
IL_9504116,BCC,dermoscopic,ISIC_9818203,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,head_neck_face,0.637000566500871,0.239545793691361,0.153002954975499,0.139635168660601,0.739280062638661,0.187689999594492,0.5861095760343,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9504116/ISIC_9818203.jpg
IL_9508962,BCC,dermoscopic,ISIC_8573497,MILK study team,CC-BY-NC,instrument only,65.0,female,3.0,lower_extremity,0.228812161250746,0.280346824345583,0.131713723703771,0.261117393827547,0.179262967502832,0.188905316638055,0.0359687400113349,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9508962/ISIC_8573497.jpg
IL_9509148,BCC,dermoscopic,ISIC_6201208,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,head_neck_face,0.482430939203794,0.293675152915751,0.423251298610716,0.277155419662728,0.206312805357464,0.212744426940301,0.0584719845437345,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9509148/ISIC_6201208.jpg
IL_9513930,AKIEC,dermoscopic,ISIC_1142211,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.161483838306459,0.392184587986413,0.241612543421901,0.279884158324079,0.293011212294644,0.240779805831685,0.420110265491641,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9513930/ISIC_1142211.jpg
IL_9542018,BCC,dermoscopic,ISIC_8544097,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,upper_extremity,0.137219713509859,0.475837480323292,0.243405466932036,0.147736764738266,0.167351250822412,0.234046634040944,0.340501902399753,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9542018/ISIC_8544097.jpg
IL_9550703,BKL,dermoscopic,ISIC_9019664,MILK study team,CC-BY-NC,instrument only,65.0,female,4.0,lower_extremity,0.026731956646878,0.248874484076924,0.530366916583984,0.39094852846711,0.369631719396129,0.17509037983543,0.231969762258248,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9550703/ISIC_9019664.jpg
IL_9552156,BCC,dermoscopic,ISIC_4384547,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,lower_extremity,0.249718047001881,0.38781345202495,0.0501581954131825,0.404371458557711,0.192482293444138,0.215658057458241,0.104038977482368,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9552156/ISIC_4384547.jpg
IL_9563085,BKL,dermoscopic,ISIC_0539206,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,lower_extremity,0.166706636282079,0.467790115608816,0.264006991708083,0.868665660097189,0.243476700791794,0.57578421088451,0.461709946709856,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9563085/ISIC_0539206.jpg
IL_9563868,BKL,dermoscopic,ISIC_7020196,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,head_neck_face,0.739027182684196,0.133664513752778,0.23207770057749,0.332604328370758,0.201687266303879,0.217817848770748,0.0574820372681545,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9563868/ISIC_7020196.jpg
IL_9600474,BCC,dermoscopic,ISIC_4410078,MILK study team,CC-BY-NC,instrument only,70.0,female,5.0,upper_extremity,0.136461501725324,0.352067217481673,0.516675022562166,0.488238395761922,0.198731772177858,0.372151730739036,0.199424518665606,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9600474/ISIC_4410078.jpg
IL_9617690,BCC,dermoscopic,ISIC_3824264,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,trunk,0.0595802856009687,0.690491778478705,0.885194667794916,0.464534643887242,0.200019196545501,0.388247752981199,0.246168770634842,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9617690/ISIC_3824264.jpg
IL_9623656,BCC,dermoscopic,ISIC_1420747,MILK study team,CC-BY-NC,instrument only,55.0,male,3.0,head_neck_face,0.387439120791999,0.552241195457738,0.232877796633832,0.722661784004323,0.225272107420579,0.4185145114931,0.314813446126279,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9623656/ISIC_1420747.jpg
IL_9630385,MEL,dermoscopic,ISIC_8961614,MILK study team,CC-BY-NC,instrument only,35.0,male,4.0,trunk,0.375534509871148,0.292401684690478,0.0111142159280508,0.135210312944569,0.817449682784614,0.230551133341265,0.37751200538083,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9630385/ISIC_8961614.jpg
IL_9636083,BCC,dermoscopic,ISIC_1138976,MILK study team,CC-BY-NC,instrument only,55.0,male,4.0,head_neck_face,0.532952296938502,0.767792320601206,0.308423827110843,0.345563385898352,0.0347015104970335,0.298989833957397,0.209814266511171,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9636083/ISIC_1138976.jpg
IL_9646137,BCC,dermoscopic,ISIC_6956876,MILK study team,CC-BY-NC,instrument only,75.0,male,3.0,upper_extremity,0.806209466205623,0.300344823120731,0.1476083389147,0.660968163567353,0.260035633446901,0.307035503577066,0.292532753858548,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9646137/ISIC_6956876.jpg
IL_9650319,AKIEC,dermoscopic,ISIC_6119301,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,head_neck_face,0.63003214513368,0.391218442495457,0.141427255906879,0.0708962198843631,0.681697520961603,0.315565051738047,0.413480704159195,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9650319/ISIC_6119301.jpg
IL_9656479,SCCKA,dermoscopic,ISIC_7548850,MILK study team,CC-BY-NC,instrument only,65.0,male,5.0,head_neck_face,0.184784557970616,0.431222407143471,0.950154494784229,0.20583204240821,0.117502352107033,0.38257372795462,0.403928179489996,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9656479/ISIC_7548850.jpg
IL_9661787,NV,dermoscopic,ISIC_1255858,MILK study team,CC-BY-NC,instrument only,55.0,male,2.0,trunk,0.11999393117489,0.572069827820551,0.118435288375275,0.488765486232815,0.859920524397702,0.252108918752781,0.785570508727456,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9661787/ISIC_1255858.jpg
IL_9667838,NV,dermoscopic,ISIC_3720143,MILK study team,CC-BY-NC,instrument only,35.0,female,4.0,trunk,0.345326371766114,0.261635630760553,0.0536507722346935,0.251672258686977,0.37236928387809,0.254280804959569,0.363349043748605,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9667838/ISIC_3720143.jpg
IL_9678089,BCC,dermoscopic,ISIC_4909505,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,trunk,0.672614775801811,0.195170020410157,0.0646035196550616,0.264226201211319,0.154464411750609,0.235244723309205,0.0438259612095629,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9678089/ISIC_4909505.jpg
IL_9681402,BCC,dermoscopic,ISIC_4799293,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,upper_extremity,0.314528104005141,0.35396694514786,0.425636976887472,0.220719813607281,0.152419688392658,0.242997107344097,0.237832283960192,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9681402/ISIC_4799293.jpg
IL_9685051,NV,dermoscopic,ISIC_2538384,MILK study team,CC-BY-NC,instrument only,50.0,male,3.0,trunk,0.0614220699720819,0.591932082941407,0.0663525462949204,0.0538378308223995,0.812354550020765,0.151364763052071,0.632721961638269,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9685051/ISIC_2538384.jpg
IL_9691364,BCC,dermoscopic,ISIC_7618809,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.399714085993011,0.391463422545663,0.323154533209383,0.349487127008758,0.423766749920314,0.236037990130225,0.11198738473841,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9691364/ISIC_7618809.jpg
IL_9701000,NV,dermoscopic,ISIC_5246923,MILK study team,CC-BY-NC,instrument only,20.0,female,2.0,trunk,0.137338327656692,0.524151645284107,0.151841021754055,0.0536443343348132,0.874444568513266,0.240733477648738,0.609197891447799,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9701000/ISIC_5246923.jpg
IL_9720180,MEL,dermoscopic,ISIC_9809345,MILK study team,CC-BY-NC,instrument only,65.0,male,2.0,upper_extremity,0.151948988079278,0.413158008067188,0.011650787398474,0.03242661088799,0.88915845671936,0.186258216240994,0.319559258464245,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9720180/ISIC_9809345.jpg
IL_9720231,BCC,dermoscopic,ISIC_4168673,MILK study team,CC-BY-NC,instrument only,60.0,female,4.0,trunk,0.337648856713881,0.484581719483274,0.449112971473308,0.20134055285431,0.170140999410726,0.373136229441339,0.343095398493871,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9720231/ISIC_4168673.jpg
IL_9737079,BCC,dermoscopic,ISIC_4370328,MILK study team,CC-BY-NC,instrument only,65.0,female,5.0,head_neck_face,0.945091780654463,0.47338551141612,0.0049235294649612,0.446801039167798,0.0657442183426857,0.372302241756033,0.152019936622548,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9737079/ISIC_4370328.jpg
IL_9746868,BCC,dermoscopic,ISIC_6589696,MILK study team,CC-BY-NC,instrument only,85.0,male,5.0,head_neck_face,0.589146896967658,0.627885034040642,0.501837140724002,0.786707262476723,0.105781547117245,0.559140299085606,0.700715590223867,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9746868/ISIC_6589696.jpg
IL_9749729,BCC,dermoscopic,ISIC_3959713,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,,0.315280803321537,0.387706864233621,0.0641476500459723,0.241106888197248,0.644691812818106,0.235589326546201,0.468672064760802,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9749729/ISIC_3959713.jpg
IL_9753632,BCC,dermoscopic,ISIC_3968898,MILK study team,CC-BY-NC,instrument only,55.0,male,4.0,trunk,0.235220488716454,0.243267992548095,0.447199136399613,0.215432107167019,0.111333164033093,0.285362364816555,0.573961472844179,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9753632/ISIC_3968898.jpg
IL_9756229,BCC,dermoscopic,ISIC_1310746,MILK study team,CC-BY-NC,instrument only,40.0,female,4.0,trunk,0.465635414849872,0.352119834507383,0.50795811341977,0.445959147833255,0.395876280325616,0.162304502697992,0.137638613484324,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9756229/ISIC_1310746.jpg
IL_9758278,BCC,dermoscopic,ISIC_2127883,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,trunk,0.317358742804424,0.334728675914184,0.0615443649017475,0.834745252676256,0.267358273615712,0.3243212580474,0.560499994536832,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9758278/ISIC_2127883.jpg
IL_9770688,BCC,dermoscopic,ISIC_4463160,MILK study team,CC-BY-NC,instrument only,85.0,female,3.0,trunk,0.0941885464969004,0.366358745435754,0.536773570669658,0.513065020698008,0.163887730844575,0.262283812750188,0.060886337719072,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9770688/ISIC_4463160.jpg
IL_9777235,BCC,dermoscopic,ISIC_4152827,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,trunk,0.330795906085893,0.449629652982883,0.280824513234771,0.297691729177449,0.14947411519557,0.213571637818421,0.0312229607731275,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9777235/ISIC_4152827.jpg
IL_9780716,BCC,dermoscopic,ISIC_9552444,MILK study team,CC-BY-NC,instrument only,40.0,male,4.0,lower_extremity,0.055231000801557,0.705399924576319,0.785724396740739,0.509934236141183,0.121998425432263,0.740007163769158,0.347810730129113,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9780716/ISIC_9552444.jpg
IL_9793806,BCC,dermoscopic,ISIC_3631183,MILK study team,CC-BY-NC,instrument only,60.0,male,3.0,trunk,0.25402279236301,0.632663750370789,0.32912640909884,0.851832353051877,0.308623631314564,0.349381128461586,0.57942940738531,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9793806/ISIC_3631183.jpg
IL_9801115,SCCKA,dermoscopic,ISIC_2923050,MILK study team,CC-BY-NC,instrument only,75.0,female,4.0,lower_extremity,0.591585855437506,0.229632976007752,0.0220413595037188,0.0747947694809672,0.230785443431359,0.363758733657683,0.0595049493697859,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9801115/ISIC_2923050.jpg
IL_9822160,BCC,dermoscopic,ISIC_1571470,MILK study team,CC-BY-NC,instrument only,45.0,female,3.0,trunk,0.566975174279886,0.342144978989742,0.194875401443638,0.599429063433324,0.219343024939937,0.362014523588628,0.247954620699055,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9822160/ISIC_1571470.jpg
IL_9880197,NV,dermoscopic,ISIC_7843146,MILK study team,CC-BY-NC,instrument only,40.0,female,4.0,lower_extremity,0.591980593086353,0.346153606650334,0.407515076567471,0.57588489590484,0.221755858133831,0.737160280069287,0.720533718823073,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9880197/ISIC_7843146.jpg
IL_9897440,NV,dermoscopic,ISIC_4969084,MILK study team,CC-BY-NC,instrument only,5.0,female,5.0,lower_extremity,0.17421831413889,0.245132797301416,0.0026997840293622,0.0575336545478038,0.673682803825844,0.158983315507197,0.707220412182494,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9897440/ISIC_4969084.jpg
IL_9917899,BCC,dermoscopic,ISIC_2538458,MILK study team,CC-BY-NC,instrument only,80.0,male,3.0,head_neck_face,0.586949821815186,0.10743519631542,0.0098845090875373,0.116034766397902,0.134706907970031,0.236223639465836,0.112049159138674,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9917899/ISIC_2538458.jpg
IL_9944302,NV,dermoscopic,ISIC_5552683,MILK study team,CC-BY-NC,instrument only,25.0,male,2.0,trunk,0.0589917210077886,0.445145059181489,0.0274411716524193,0.25548516941855,0.894441624277767,0.167434784111586,0.730403579224624,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9944302/ISIC_5552683.jpg
IL_9945290,BEN_OTH,dermoscopic,ISIC_8760881,MILK study team,CC-BY-NC,altered,30.0,female,3.0,lower_extremity,0.248589355596645,0.313553702077964,0.0107124022024622,0.0876334808747136,0.613893059355126,0.223097340344695,0.483412009510086,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9945290/ISIC_8760881.jpg
IL_9947908,BCC,dermoscopic,ISIC_6712731,MILK study team,CC-BY-NC,instrument only,45.0,female,3.0,lower_extremity,0.196415146940146,0.423430493528083,0.427650178523581,0.280816780240871,0.451907891439158,0.453929119466468,0.396985310503383,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9947908/ISIC_6712731.jpg
IL_9950953,BKL,dermoscopic,ISIC_1536379,MILK study team,CC-BY-NC,instrument only,75.0,male,4.0,trunk,0.348850851316594,0.436165686207589,0.302114354613462,0.242664235720702,0.052731215180513,0.424191961025822,0.154341991554735,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9950953/ISIC_1536379.jpg
IL_9963930,BCC,dermoscopic,ISIC_9641825,MILK study team,CC-BY-NC,instrument only,85.0,male,3.0,lower_extremity,0.547195374497639,0.323521378384644,0.192211024684,0.269202530898852,0.405812921298131,0.121032905681225,0.108492625125147,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9963930/ISIC_9641825.jpg
IL_9977217,BCC,dermoscopic,ISIC_5873586,MILK study team,CC-BY-NC,instrument only,65.0,male,3.0,upper_extremity,0.146211160078861,0.127633621989665,0.0371563625653855,0.412134087683523,0.134516648747874,0.132245268753338,0.0385779504861137,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9977217/ISIC_5873586.jpg
IL_9980113,AKIEC,dermoscopic,ISIC_7112600,MILK study team,CC-BY-NC,instrument only,55.0,female,3.0,head_neck_face,0.45205460524941,0.290332581751864,0.159339874967955,0.162264248596969,0.134467674859194,0.224712515967687,0.0394852640602241,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9980113/ISIC_7112600.jpg
IL_9980498,BKL,dermoscopic,ISIC_1435977,MILK study team,CC-BY-NC,instrument only,50.0,female,3.0,upper_extremity,0.171091789405772,0.226563938981155,0.350101461840937,0.174806623545748,0.1172869279236,0.217910947204736,0.135378488907903,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9980498/ISIC_1435977.jpg
IL_9983052,AKIEC,dermoscopic,ISIC_1099402,MILK study team,CC-BY-NC,instrument only,60.0,female,3.0,upper_extremity,0.606120573635809,0.200503712310861,0.0866615532208865,0.67705322568207,0.147770788343101,0.370125677802931,0.102503789514138,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9983052/ISIC_1099402.jpg
IL_9984758,BCC,dermoscopic,ISIC_9345667,MILK study team,CC-BY-NC,instrument only,70.0,male,3.0,trunk,0.17266015011116,0.467972078173226,0.31488606241304,0.0823416392958683,0.349700594966796,0.18137178903965,0.212323208227383,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9984758/ISIC_9345667.jpg
IL_7488705__sdpair_001,MAL_OTH,dermoscopic,IL_7488705__sdpair_001__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7488705__sdpair_001/IL_7488705__sdpair_001__dermoscopic.jpg
IL_8173942__sdpair_003,MAL_OTH,dermoscopic,IL_8173942__sdpair_003__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8173942__sdpair_003/IL_8173942__sdpair_003__dermoscopic.jpg
IL_0702204__sdpair_005,BEN_OTH,dermoscopic,IL_0702204__sdpair_005__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0702204__sdpair_005/IL_0702204__sdpair_005__dermoscopic.jpg
IL_1418098__sdpair_001,BEN_OTH,dermoscopic,IL_1418098__sdpair_001__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1418098__sdpair_001/IL_1418098__sdpair_001__dermoscopic.jpg
IL_2150976__sdpair_002,BEN_OTH,dermoscopic,IL_2150976__sdpair_002__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2150976__sdpair_002/IL_2150976__sdpair_002__dermoscopic.jpg
IL_2692187__sdpair_002,BEN_OTH,dermoscopic,IL_2692187__sdpair_002__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2692187__sdpair_002/IL_2692187__sdpair_002__dermoscopic.jpg
IL_4258964__sdpair_001,BEN_OTH,dermoscopic,IL_4258964__sdpair_001__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4258964__sdpair_001/IL_4258964__sdpair_001__dermoscopic.jpg
IL_7075634__sdpair_001,BEN_OTH,dermoscopic,IL_7075634__sdpair_001__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7075634__sdpair_001/IL_7075634__sdpair_001__dermoscopic.jpg
IL_7581043__sdpair_002,BEN_OTH,dermoscopic,IL_7581043__sdpair_002__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7581043__sdpair_002/IL_7581043__sdpair_002__dermoscopic.jpg
IL_7743352__sdpair_001,BEN_OTH,dermoscopic,IL_7743352__sdpair_001__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7743352__sdpair_001/IL_7743352__sdpair_001__dermoscopic.jpg
IL_8160773__sdpair_005,BEN_OTH,dermoscopic,IL_8160773__sdpair_005__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8160773__sdpair_005/IL_8160773__sdpair_005__dermoscopic.jpg
IL_8557195__sdpair_001,BEN_OTH,dermoscopic,IL_8557195__sdpair_001__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8557195__sdpair_001/IL_8557195__sdpair_001__dermoscopic.jpg
IL_8784300__sdpair_005,BEN_OTH,dermoscopic,IL_8784300__sdpair_005__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8784300__sdpair_005/IL_8784300__sdpair_005__dermoscopic.jpg
IL_8946416__sdpair_002,BEN_OTH,dermoscopic,IL_8946416__sdpair_002__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8946416__sdpair_002/IL_8946416__sdpair_002__dermoscopic.jpg
IL_0694902__sdpair_003,VASC,dermoscopic,IL_0694902__sdpair_003__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0694902__sdpair_003/IL_0694902__sdpair_003__dermoscopic.jpg
IL_1013534__sdpair_003,VASC,dermoscopic,IL_1013534__sdpair_003__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1013534__sdpair_003/IL_1013534__sdpair_003__dermoscopic.jpg
IL_1013534__sdpair_004,VASC,dermoscopic,IL_1013534__sdpair_004__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1013534__sdpair_004/IL_1013534__sdpair_004__dermoscopic.jpg
IL_1032364__sdpair_004,VASC,dermoscopic,IL_1032364__sdpair_004__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1032364__sdpair_004/IL_1032364__sdpair_004__dermoscopic.jpg
IL_1032364__sdpair_005,VASC,dermoscopic,IL_1032364__sdpair_005__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1032364__sdpair_005/IL_1032364__sdpair_005__dermoscopic.jpg
IL_1207845__sdpair_000,VASC,dermoscopic,IL_1207845__sdpair_000__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1207845__sdpair_000/IL_1207845__sdpair_000__dermoscopic.jpg
IL_1207845__sdpair_004,VASC,dermoscopic,IL_1207845__sdpair_004__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1207845__sdpair_004/IL_1207845__sdpair_004__dermoscopic.jpg
IL_1556034__sdpair_001,VASC,dermoscopic,IL_1556034__sdpair_001__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1556034__sdpair_001/IL_1556034__sdpair_001__dermoscopic.jpg
IL_1827145__sdpair_001,VASC,dermoscopic,IL_1827145__sdpair_001__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1827145__sdpair_001/IL_1827145__sdpair_001__dermoscopic.jpg
IL_1858842__sdpair_000,VASC,dermoscopic,IL_1858842__sdpair_000__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1858842__sdpair_000/IL_1858842__sdpair_000__dermoscopic.jpg
IL_1967474__sdpair_002,VASC,dermoscopic,IL_1967474__sdpair_002__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_1967474__sdpair_002/IL_1967474__sdpair_002__dermoscopic.jpg
IL_2160413__sdpair_003,VASC,dermoscopic,IL_2160413__sdpair_003__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2160413__sdpair_003/IL_2160413__sdpair_003__dermoscopic.jpg
IL_2652788__sdpair_003,VASC,dermoscopic,IL_2652788__sdpair_003__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2652788__sdpair_003/IL_2652788__sdpair_003__dermoscopic.jpg
IL_2810751__sdpair_003,VASC,dermoscopic,IL_2810751__sdpair_003__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2810751__sdpair_003/IL_2810751__sdpair_003__dermoscopic.jpg
IL_2810751__sdpair_004,VASC,dermoscopic,IL_2810751__sdpair_004__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2810751__sdpair_004/IL_2810751__sdpair_004__dermoscopic.jpg
IL_2895594__sdpair_003,VASC,dermoscopic,IL_2895594__sdpair_003__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2895594__sdpair_003/IL_2895594__sdpair_003__dermoscopic.jpg
IL_3124756__sdpair_001,VASC,dermoscopic,IL_3124756__sdpair_001__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3124756__sdpair_001/IL_3124756__sdpair_001__dermoscopic.jpg
IL_3124756__sdpair_003,VASC,dermoscopic,IL_3124756__sdpair_003__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3124756__sdpair_003/IL_3124756__sdpair_003__dermoscopic.jpg
IL_3124756__sdpair_004,VASC,dermoscopic,IL_3124756__sdpair_004__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3124756__sdpair_004/IL_3124756__sdpair_004__dermoscopic.jpg
IL_3252153__sdpair_002,VASC,dermoscopic,IL_3252153__sdpair_002__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3252153__sdpair_002/IL_3252153__sdpair_002__dermoscopic.jpg
IL_3252153__sdpair_005,VASC,dermoscopic,IL_3252153__sdpair_005__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3252153__sdpair_005/IL_3252153__sdpair_005__dermoscopic.jpg
IL_3744094__sdpair_002,VASC,dermoscopic,IL_3744094__sdpair_002__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3744094__sdpair_002/IL_3744094__sdpair_002__dermoscopic.jpg
IL_4375831__sdpair_005,VASC,dermoscopic,IL_4375831__sdpair_005__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4375831__sdpair_005/IL_4375831__sdpair_005__dermoscopic.jpg
IL_4794810__sdpair_002,VASC,dermoscopic,IL_4794810__sdpair_002__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4794810__sdpair_002/IL_4794810__sdpair_002__dermoscopic.jpg
IL_4794810__sdpair_004,VASC,dermoscopic,IL_4794810__sdpair_004__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4794810__sdpair_004/IL_4794810__sdpair_004__dermoscopic.jpg
IL_5044233__sdpair_003,VASC,dermoscopic,IL_5044233__sdpair_003__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5044233__sdpair_003/IL_5044233__sdpair_003__dermoscopic.jpg
IL_5285603__sdpair_002,VASC,dermoscopic,IL_5285603__sdpair_002__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5285603__sdpair_002/IL_5285603__sdpair_002__dermoscopic.jpg
IL_5363044__sdpair_000,VASC,dermoscopic,IL_5363044__sdpair_000__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5363044__sdpair_000/IL_5363044__sdpair_000__dermoscopic.jpg
IL_5437959__sdpair_003,VASC,dermoscopic,IL_5437959__sdpair_003__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5437959__sdpair_003/IL_5437959__sdpair_003__dermoscopic.jpg
IL_5458528__sdpair_001,VASC,dermoscopic,IL_5458528__sdpair_001__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5458528__sdpair_001/IL_5458528__sdpair_001__dermoscopic.jpg
IL_5458528__sdpair_004,VASC,dermoscopic,IL_5458528__sdpair_004__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5458528__sdpair_004/IL_5458528__sdpair_004__dermoscopic.jpg
IL_6393566__sdpair_001,VASC,dermoscopic,IL_6393566__sdpair_001__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6393566__sdpair_001/IL_6393566__sdpair_001__dermoscopic.jpg
IL_7642375__sdpair_002,VASC,dermoscopic,IL_7642375__sdpair_002__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7642375__sdpair_002/IL_7642375__sdpair_002__dermoscopic.jpg
IL_7687935__sdpair_000,VASC,dermoscopic,IL_7687935__sdpair_000__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7687935__sdpair_000/IL_7687935__sdpair_000__dermoscopic.jpg
IL_7687935__sdpair_001,VASC,dermoscopic,IL_7687935__sdpair_001__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7687935__sdpair_001/IL_7687935__sdpair_001__dermoscopic.jpg
IL_7687935__sdpair_005,VASC,dermoscopic,IL_7687935__sdpair_005__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7687935__sdpair_005/IL_7687935__sdpair_005__dermoscopic.jpg
IL_8200270__sdpair_004,VASC,dermoscopic,IL_8200270__sdpair_004__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8200270__sdpair_004/IL_8200270__sdpair_004__dermoscopic.jpg
IL_8364095__sdpair_000,VASC,dermoscopic,IL_8364095__sdpair_000__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8364095__sdpair_000/IL_8364095__sdpair_000__dermoscopic.jpg
IL_8364095__sdpair_001,VASC,dermoscopic,IL_8364095__sdpair_001__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8364095__sdpair_001/IL_8364095__sdpair_001__dermoscopic.jpg
IL_9783995__sdpair_000,VASC,dermoscopic,IL_9783995__sdpair_000__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9783995__sdpair_000/IL_9783995__sdpair_000__dermoscopic.jpg
IL_9783995__sdpair_003,VASC,dermoscopic,IL_9783995__sdpair_003__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9783995__sdpair_003/IL_9783995__sdpair_003__dermoscopic.jpg
IL_4175497__sdpair_000,INF,dermoscopic,IL_4175497__sdpair_000__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4175497__sdpair_000/IL_4175497__sdpair_000__dermoscopic.jpg
IL_4175497__sdpair_002,INF,dermoscopic,IL_4175497__sdpair_002__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4175497__sdpair_002/IL_4175497__sdpair_002__dermoscopic.jpg
IL_4918167__sdpair_002,INF,dermoscopic,IL_4918167__sdpair_002__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4918167__sdpair_002/IL_4918167__sdpair_002__dermoscopic.jpg
IL_5104216__sdpair_002,INF,dermoscopic,IL_5104216__sdpair_002__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5104216__sdpair_002/IL_5104216__sdpair_002__dermoscopic.jpg
IL_5136335__sdpair_000,INF,dermoscopic,IL_5136335__sdpair_000__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5136335__sdpair_000/IL_5136335__sdpair_000__dermoscopic.jpg
IL_5375420__sdpair_005,INF,dermoscopic,IL_5375420__sdpair_005__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5375420__sdpair_005/IL_5375420__sdpair_005__dermoscopic.jpg
IL_6660320__sdpair_000,INF,dermoscopic,IL_6660320__sdpair_000__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6660320__sdpair_000/IL_6660320__sdpair_000__dermoscopic.jpg
IL_6921814__sdpair_000,INF,dermoscopic,IL_6921814__sdpair_000__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6921814__sdpair_000/IL_6921814__sdpair_000__dermoscopic.jpg
IL_7331633__sdpair_002,INF,dermoscopic,IL_7331633__sdpair_002__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7331633__sdpair_002/IL_7331633__sdpair_002__dermoscopic.jpg
IL_7478633__sdpair_000,INF,dermoscopic,IL_7478633__sdpair_000__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7478633__sdpair_000/IL_7478633__sdpair_000__dermoscopic.jpg
IL_8102879__sdpair_003,INF,dermoscopic,IL_8102879__sdpair_003__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8102879__sdpair_003/IL_8102879__sdpair_003__dermoscopic.jpg
IL_8439517__sdpair_005,INF,dermoscopic,IL_8439517__sdpair_005__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8439517__sdpair_005/IL_8439517__sdpair_005__dermoscopic.jpg
IL_9475061__sdpair_003,INF,dermoscopic,IL_9475061__sdpair_003__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9475061__sdpair_003/IL_9475061__sdpair_003__dermoscopic.jpg
IL_9480741__sdpair_002,INF,dermoscopic,IL_9480741__sdpair_002__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9480741__sdpair_002/IL_9480741__sdpair_002__dermoscopic.jpg
IL_0868364__sdpair_003,DF,dermoscopic,IL_0868364__sdpair_003__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0868364__sdpair_003/IL_0868364__sdpair_003__dermoscopic.jpg
IL_0868364__sdpair_005,DF,dermoscopic,IL_0868364__sdpair_005__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_0868364__sdpair_005/IL_0868364__sdpair_005__dermoscopic.jpg
IL_2014821__sdpair_000,DF,dermoscopic,IL_2014821__sdpair_000__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2014821__sdpair_000/IL_2014821__sdpair_000__dermoscopic.jpg
IL_2103836__sdpair_005,DF,dermoscopic,IL_2103836__sdpair_005__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2103836__sdpair_005/IL_2103836__sdpair_005__dermoscopic.jpg
IL_2972569__sdpair_005,DF,dermoscopic,IL_2972569__sdpair_005__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_2972569__sdpair_005/IL_2972569__sdpair_005__dermoscopic.jpg
IL_3180618__sdpair_004,DF,dermoscopic,IL_3180618__sdpair_004__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3180618__sdpair_004/IL_3180618__sdpair_004__dermoscopic.jpg
IL_3901946__sdpair_001,DF,dermoscopic,IL_3901946__sdpair_001__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3901946__sdpair_001/IL_3901946__sdpair_001__dermoscopic.jpg
IL_4133123__sdpair_001,DF,dermoscopic,IL_4133123__sdpair_001__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_4133123__sdpair_001/IL_4133123__sdpair_001__dermoscopic.jpg
IL_5482289__sdpair_001,DF,dermoscopic,IL_5482289__sdpair_001__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5482289__sdpair_001/IL_5482289__sdpair_001__dermoscopic.jpg
IL_5482289__sdpair_005,DF,dermoscopic,IL_5482289__sdpair_005__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_5482289__sdpair_005/IL_5482289__sdpair_005__dermoscopic.jpg
IL_9344336__sdpair_005,DF,dermoscopic,IL_9344336__sdpair_005__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9344336__sdpair_005/IL_9344336__sdpair_005__dermoscopic.jpg
IL_9413629__sdpair_000,DF,dermoscopic,IL_9413629__sdpair_000__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9413629__sdpair_000/IL_9413629__sdpair_000__dermoscopic.jpg
IL_9413629__sdpair_001,DF,dermoscopic,IL_9413629__sdpair_001__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9413629__sdpair_001/IL_9413629__sdpair_001__dermoscopic.jpg
IL_9453516__sdpair_005,DF,dermoscopic,IL_9453516__sdpair_005__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9453516__sdpair_005/IL_9453516__sdpair_005__dermoscopic.jpg
IL_9624462__sdpair_001,DF,dermoscopic,IL_9624462__sdpair_001__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9624462__sdpair_001/IL_9624462__sdpair_001__dermoscopic.jpg
IL_9679718__sdpair_002,DF,dermoscopic,IL_9679718__sdpair_002__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9679718__sdpair_002/IL_9679718__sdpair_002__dermoscopic.jpg
IL_9713334__sdpair_004,DF,dermoscopic,IL_9713334__sdpair_004__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9713334__sdpair_004/IL_9713334__sdpair_004__dermoscopic.jpg
IL_9840660__sdpair_001,DF,dermoscopic,IL_9840660__sdpair_001__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9840660__sdpair_001/IL_9840660__sdpair_001__dermoscopic.jpg
IL_9840660__sdpair_004,DF,dermoscopic,IL_9840660__sdpair_004__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9840660__sdpair_004/IL_9840660__sdpair_004__dermoscopic.jpg
IL_9840660__sdpair_005,DF,dermoscopic,IL_9840660__sdpair_005__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_9840660__sdpair_005/IL_9840660__sdpair_005__dermoscopic.jpg
IL_3397052__sdpair_008,MAL_OTH,dermoscopic,IL_3397052__sdpair_008__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3397052__sdpair_008/IL_3397052__sdpair_008__dermoscopic.jpg
IL_3397052__sdpair_009,MAL_OTH,dermoscopic,IL_3397052__sdpair_009__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3397052__sdpair_009/IL_3397052__sdpair_009__dermoscopic.jpg
IL_3772010__sdpair_007,MAL_OTH,dermoscopic,IL_3772010__sdpair_007__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_3772010__sdpair_007/IL_3772010__sdpair_007__dermoscopic.jpg
IL_6598167__sdpair_006,MAL_OTH,dermoscopic,IL_6598167__sdpair_006__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6598167__sdpair_006/IL_6598167__sdpair_006__dermoscopic.jpg
IL_6598167__sdpair_007,MAL_OTH,dermoscopic,IL_6598167__sdpair_007__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_6598167__sdpair_007/IL_6598167__sdpair_007__dermoscopic.jpg
IL_7488705__sdpair_009,MAL_OTH,dermoscopic,IL_7488705__sdpair_009__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_7488705__sdpair_009/IL_7488705__sdpair_009__dermoscopic.jpg
IL_8907892__sdpair_005,MAL_OTH,dermoscopic,IL_8907892__sdpair_005__dermoscopic,Stable Diffusion synthetic augmentation,synthetic,synthetic,,unknown,,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,dermoscopic,/marimo/milk10k_augmented/MILK10k_Training_Input/IL_8907892__sdpair_005/IL_8907892__sdpair_005__dermoscopic.jpg
|