-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2370 lines (2280 loc) · 94.4 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MedSegModelZoo Explorer</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap Icons -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css" rel="stylesheet">
<style>
:root {
--primary-color: #6A82FB; /* Start color of the gradient */
--secondary-color: #FC5C7D; /* End color of the gradient */
--background-color: #f8f9fa;
--text-color: #212529;
--header-background: #ffffff;
--nav-background: #343a40;
--button-background: #6A82FB;
--button-hover: #FC5C7D;
}
body {
font-family: 'Roboto', sans-serif;
background-color: var(--background-color);
color: var(--text-color);
margin: 0;
overflow-x: hidden;
}
/* Landing Page */
.landing-page {
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
/* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
/* Gradient background */
background: #FC5C7D;
background: -webkit-linear-gradient(to right, var(--primary-color), var(--secondary-color));
background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
position: relative;
overflow: hidden;
}
.landing-content {
text-align: center;
color: white;
z-index: 2;
padding: 2rem;
}
.landing-logo {
width: 150px;
height: 150px;
margin-bottom: 2rem;
animation: float 3s ease-in-out infinite;
}
.landing-title {
font-size: 3.5rem;
font-weight: 700;
margin-bottom: 1rem;
opacity: 0;
transform: translateY(20px);
animation: fadeInUp 1s forwards;
}
.landing-subtitle {
font-size: 1.5rem;
opacity: 0;
transform: translateY(20px);
animation: fadeInUp 1s forwards 0.3s;
}
/* Floating Panels */
.side-panel {
position: fixed;
top: 0;
height: 100vh;
width: 400px;
background: var(--panel-bg);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
backdrop-filter: blur(10px);
z-index: 1000;
padding: 2rem;
overflow-y: auto;
}
#categoryPanel {
left: 1%;
transform: translateX(-100%);
}
#nlpPanel {
right: 1%;
transform: translateX(100%);
}
.show-panel {
transform: translateX(0) !important;
}
/* Content Area */
.main-content {
margin-top: 2rem;
padding: 2rem;
opacity: 0;
transition: opacity 0.5s ease;
}
.show-content {
opacity: 1;
}
/* Animations */
@keyframes float {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(-20px);
}
100% {
transform: translateY(0px);
}
}
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}
/* Card Styling */
.dataset-card {
background: white;
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
cursor: pointer;
}
.dataset-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
/* Header Styles for Home Page */
header.homepage {
position: relative;
height: 100vh;
color: white;
text-align: center;
}
.header i {
font-size: 2.5rem;
margin-right: 15px;
color: #0d6efd;
}
/* Floating Panels */
.floating-panel {
width: 45%; /* Adjusted width */
max-width: 90%;
background-color: #ffffff;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
border-radius: 10px;
z-index: 1050;
padding: 20px;
overflow-y: auto;
height: 80%;
}
/* Modal adjustments */
.modal-lg {
max-width: 80% !important;
}
/* Enhance card appearance */
.card {
transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
/* Tooltip styling */
.tooltip-inner {
max-width: 200px;
text-align: center;
background-color: #0d6efd;
color: #fff;
font-size: 0.875rem;
}
/* Scrollbar styling for panels */
.floating-panel::-webkit-scrollbar {
width: 8px;
}
.floating-panel::-webkit-scrollbar-thumb {
background-color: rgba(100, 116, 139, 0.5);
border-radius: 4px;
}
/* Button styling */
.btn-category {
margin-bottom: 10px;
}
/* Hide main content initially */
#mainContent {
display: none;
}
/* Back Button Styling */
#back-button {
display: none; /* Initially hidden */
margin-top: 2rem; /* Adjusted margin */
}
/* Adjust main content to take remaining space */
@media (min-width: 992px) {
#mainContent .col-lg-8 {
flex: 0 0 50%;
max-width: 50%;
}
#mainContent .col-lg-4 {
flex: 0 0 50%;
max-width: 50%;
}
}
</style>
</head>
<body>
<!-- Landing Page -->
<div class="landing-page">
<div class="landing-content">
<img src="icon.jpg" alt="Logo" class="landing-logo">
<h1 class="landing-title">MedSegModelZoo Explorer</h1>
<p class="landing-subtitle">Explore Medical Segmentation Models</p>
</div>
</div>
<!-- Main Content Area -->
<div class="container main-content" id="mainContent">
<!-- Back Button -->
<div class="row mb-3">
<div class="col-12 text-center">
<button id="back-button" class="btn btn-secondary">Back</button>
</div>
</div>
<div class="row">
<!-- Dataset List -->
<div class="col-lg-6 mb-4">
<h2 class="h4 mb-3">Datasets</h2>
<div id="dataset-list" class="row g-3">
<!-- Dataset cards will be injected here -->
</div>
<div id="no-datasets" class="text-center text-muted mt-4 d-none">Please select a body part or enter a description to view related datasets.</div>
</div>
<!-- Dataset Details -->
<div id="dataset-info" class="col-lg-6 p-4 bg-white shadow rounded d-none">
<h4 id="dataset-title" class="mb-3">Dataset Information</h4>
<div id="dataset-details" class="mb-3" style="max-height: 400px; overflow-y: auto;">
<!-- Dataset details will be injected here -->
</div>
<button id="cmd-button" class="btn btn-primary w-100 mb-2">Show CMD</button>
<div id="cmd-output" class="alert alert-secondary d-none">cmd xx</div>
</div>
</div>
</div>
<!-- Floating Panels -->
<!-- Category Selection Panel -->
<div class="side-panel floating-panel" id="categoryPanel">
<h5 class="mb-3"><i class="bi bi-list-task me-2"></i> Select Category</h5>
<div class="accordion" id="bodyPartsAccordion">
<!-- Categories will be injected here -->
</div>
</div>
<!-- Natural Language Input Panel -->
<div class="side-panel floating-panel" id="nlpPanel">
<h5 class="mb-3"><i class="bi bi-chat-dots me-2"></i> Natural Language Input</h5>
<input type="text" id="nlp-input" class="form-control mb-3" placeholder="Enter natural language description..." />
<div id="nlp-cmd-output" class="alert alert-secondary d-none">cmd -i </div>
</div>
<!-- Bootstrap JS and dependencies -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script>
// Dataset JSON
const datasetJSON = [
{
"Dataset": "Task001_BrainTumour",
"Framework": "nnunet_v1",
"Modality": "FLAIR MRI,T1 weighted MRI,T1Gd MRI,T2 weighted MRI",
"Input Channels": "4",
"Patch size": "[128, 128, 128]",
"Training spacing": "[1.0, 1.0, 1.0]",
"Train cases": "387",
"Test cases": "97",
"Category-EN": "{'0': 'background', '1': 'Edema', '2': 'Non-enhancing tumor', '3': 'Enhancing tumor'}",
"Category-CN": "{'0': '背景', '1': '水肿', '2': '非强化肿瘤', '3': '强化肿瘤'}",
"Dice nnunet": "0.7334",
"Dice base": "0.726",
"Dice large": "0.7303",
"Dice huge": "0.7309",
"Dice base_ft": "0.73",
"Dice large_ft": "0.7362",
"Dice huge_ft": "0.7362"
},
{
"Dataset": "Task002_Heart",
"Framework": "nnunet_v1",
"Modality": "MRI",
"Input Channels": "1",
"Patch size": "[80, 192, 160]",
"Training spacing": "[1.3700000047683716, 1.25, 1.25]",
"Train cases": "16",
"Test cases": "4",
"Category-EN": "{'0': 'background', '1': 'Left atrium'}",
"Category-CN": "{'0': '背景', '1': '左心房'}",
"Dice nnunet": "0.939",
"Dice base": "0.9379",
"Dice large": "0.9382",
"Dice huge": "0.9382",
"Dice base_ft": "0.9397",
"Dice large_ft": "0.9397",
"Dice huge_ft": "0.9387"
},
{
"Dataset": "Task003_Liver",
"Framework": "nnunet_v1",
"Modality": "CT",
"Input Channels": "1",
"Patch size": "[128, 128, 128]",
"Training spacing": "[1.0, 0.767578125, 0.767578125]",
"Train cases": "104",
"Test cases": "27",
"Category-EN": "{'0': 'background', '1': 'Liver', '2': 'Liver tumor'}",
"Category-CN": "{'0': '背景', '1': '肝', '2': '肝肿瘤'}",
"Dice nnunet": "0.8338",
"Dice base": "0.8238",
"Dice large": "0.8399",
"Dice huge": "0.8401",
"Dice base_ft": "0.8501",
"Dice large_ft": "0.8423",
"Dice huge_ft": "0.8491"
},
{
"Dataset": "Task004_Hippocampus",
"Framework": "nnunet_v1",
"Modality": "MRI",
"Input Channels": "1",
"Patch size": "[40, 56, 40]",
"Training spacing": "[1.0, 1.0, 1.0]",
"Train cases": "208",
"Test cases": "52",
"Category-EN": "{'0': 'background', '1': 'Anterior hippocampus', '2': 'Posterior hippocampus'}",
"Category-CN": "{'0': '背景', '1': '海马前部', '2': '海马后部'}",
"Dice nnunet": "0.8923",
"Dice base": "0.8892",
"Dice large": "0.8919",
"Dice huge": "0.8935",
"Dice base_ft": "0.8896",
"Dice large_ft": "0.8913",
"Dice huge_ft": "0.8919"
},
{
"Dataset": "Task005_Prostate",
"Framework": "nnunet_v1",
"Modality": "T2 MRI,ADC MRI",
"Input Channels": "2",
"Patch size": "[20, 320, 256]",
"Training spacing": "[3.5999999046325684, 0.625, 0.625]",
"Train cases": "25",
"Test cases": "7",
"Category-EN": "{'0': 'background', '1': 'Prostate peripheral zone', '2': 'Vertebrae T9'}",
"Category-CN": "{'0': '背景', '1': '前列腺外周带', '2': '胸椎T9'}",
"Dice nnunet": "0.814",
"Dice base": "0.7852",
"Dice large": "0.8004",
"Dice huge": "0.796",
"Dice base_ft": "0.8112",
"Dice large_ft": "0.8161",
"Dice huge_ft": "0.8153"
},
{
"Dataset": "Task006_Lung",
"Framework": "nnunet_v1",
"Modality": "CT",
"Input Channels": "1",
"Patch size": "[80, 192, 160]",
"Training spacing": "[1.244979977607727, 0.78515625, 0.78515625]",
"Train cases": "50",
"Test cases": "13",
"Category-EN": "{'0': 'background', '1': 'Lung cancer'}",
"Category-CN": "{'0': '背景', '1': '肺癌'}",
"Dice nnunet": "0.7132",
"Dice base": "0.7003",
"Dice large": "0.625",
"Dice huge": "0.6197",
"Dice base_ft": "0.7343",
"Dice large_ft": "0.704",
"Dice huge_ft": "0.7259"
},
{
"Dataset": "Task007_Pancreas",
"Framework": "nnunet_v1",
"Modality": "CT",
"Input Channels": "1",
"Patch size": "[40, 224, 224]",
"Training spacing": "[2.5, 0.8027340173721313, 0.8027340173721313]",
"Train cases": "224",
"Test cases": "57",
"Category-EN": "{'0': 'background', '1': 'Pancreas', '2': 'Pancreatic tumor mass'}",
"Category-CN": "{'0': '背景', '1': '胰腺', '2': '胰腺肿瘤块'}",
"Dice nnunet": "0.647",
"Dice base": "0.6607",
"Dice large": "0.6641",
"Dice huge": "0.6629",
"Dice base_ft": "0.6791",
"Dice large_ft": "0.6746",
"Dice huge_ft": "0.6839"
},
{
"Dataset": "Task008_HepaticVessel",
"Framework": "nnunet_v1",
"Modality": "CT",
"Input Channels": "1",
"Patch size": "[64, 192, 192]",
"Training spacing": "[1.5, 0.7988280057907104, 0.7988280057907104]",
"Train cases": "242",
"Test cases": "61",
"Category-EN": "{'0': 'background', '1': 'Hepatic vessels', '2': 'Liver tumor'}",
"Category-CN": "{'0': '背景', '1': '肝血管', '2': '肝肿瘤'}",
"Dice nnunet": "0.6988",
"Dice base": "0.7075",
"Dice large": "0.7079",
"Dice huge": "0.7123",
"Dice base_ft": "0.7047",
"Dice large_ft": "0.7083",
"Dice huge_ft": "0.7137"
},
{
"Dataset": "Task009_Spleen",
"Framework": "nnunet_v1",
"Modality": "CT",
"Input Channels": "1",
"Patch size": "[64, 192, 160]",
"Training spacing": "[1.6000100374221802, 0.7929689884185791, 0.7929689884185791]",
"Train cases": "32",
"Test cases": "9",
"Category-EN": "{'0': 'background', '1': 'Spleen'}",
"Category-CN": "{'0': '背景', '1': '脾脏'}",
"Dice nnunet": "0.9553",
"Dice base": "0.964",
"Dice large": "0.9514",
"Dice huge": "0.8759",
"Dice base_ft": "0.9681",
"Dice large_ft": "0.969",
"Dice huge_ft": "0.969"
},
{
"Dataset": "Task010_Colon",
"Framework": "nnunet_v1",
"Modality": "CT",
"Input Channels": "1",
"Patch size": "[56, 192, 160]",
"Training spacing": "[3.0, 0.78125, 0.78125]",
"Train cases": "100",
"Test cases": "26",
"Category-EN": "{'0': 'background', '1': 'Colon cancer primaries'}",
"Category-CN": "{'0': '背景', '1': '结肠癌原发灶'}",
"Dice nnunet": "0.4688",
"Dice base": "0.4433",
"Dice large": "0.4634",
"Dice huge": "0.4136",
"Dice base_ft": "0.4837",
"Dice large_ft": "0.5163",
"Dice huge_ft": "0.4999"
},
{
"Dataset": "Task011_BTCV",
"Framework": "nnunet_v1",
"Modality": "CT",
"Input Channels": "1",
"Patch size": "[48, 192, 192]",
"Training spacing": "[3.0, 0.7578124403953552, 0.7578124403953552]",
"Train cases": "24",
"Test cases": "6",
"Category-EN": "{'0': 'background', '1': 'Spleen', '2': 'Right kidney', '3': 'Left kidney', '4': 'Gallbladder', '5': 'Esophagus', '6': 'Liver', '7': 'Stomach', '8': 'Aorta', '9': 'Inferior vena cava', '10': 'Portal and splenic veins', '11': 'Pancreas', '12': 'Right adrenal gland', '13': 'Left adrenal gland'}",
"Category-CN": "{'0': '背景', '1': '脾脏', '2': '右肾', '3': '左肾', '4': '胆囊', '5': '食管', '6': '肝', '7': '胃', '8': '主动脉', '9': '下腔静脉', '10': '门静脉和脾静脉', '11': '胰腺', '12': '右肾上腺', '13': '左肾上腺'}",
"Dice nnunet": "0.8424",
"Dice base": "0.8425",
"Dice large": "0.845",
"Dice huge": "0.8504",
"Dice base_ft": "0.8504",
"Dice large_ft": "0.862",
"Dice huge_ft": "0.8584"
},
{
"Dataset": "Task012_BTCV_Cervix",
"Framework": "nnunet_v1",
"Modality": "CT",
"Input Channels": "1",
"Patch size": "[64, 192, 160]",
"Training spacing": "[2.5, 0.9765625, 0.9765625]",
"Train cases": "24",
"Test cases": "6",
"Category-EN": "{'0': 'background', '1': 'Bladder', '2': 'Uterus', '3': 'Rectum', '4': ' small bowel'}",
"Category-CN": "{'0': '背景', '1': '膀胱', '2': '子宫', '3': '直肠', '4': '背景'}",
"Dice nnunet": "0.6881",
"Dice base": "0.6718",
"Dice large": "0.6667",
"Dice huge": "0.6689",
"Dice base_ft": "0.7125",
"Dice large_ft": "0.7116",
"Dice huge_ft": "0.7227"
},
{
"Dataset": "Task013_ACDC",
"Framework": "nnunet_v1",
"Modality": "MRI",
"Input Channels": "1",
"Patch size": "[20, 256, 224]",
"Training spacing": "[5.0, 1.5625, 1.5625]",
"Train cases": "160",
"Test cases": "40",
"Category-EN": "{'0': 'background', '1': 'Right ventricle', '2': 'Myocardium', '3': 'Left ventricular myocardium'}",
"Category-CN": "{'0': '背景', '1': '右心室', '2': '心肌', '3': '左心室心肌'}",
"Dice nnunet": "0.9226",
"Dice base": "0.9206",
"Dice large": "0.9269",
"Dice huge": "0.9266",
"Dice base_ft": "0.9255",
"Dice large_ft": "0.9279",
"Dice huge_ft": "0.9281"
},
{
"Dataset": "Task019_BraTS21",
"Framework": "nnunet_v1",
"Modality": "T1 MRI,T1ce MRI,T2 MRI,FLAIR MRI",
"Input Channels": "4",
"Patch size": "[128, 128, 128]",
"Training spacing": "[1.0, 1.0, 1.0]",
"Train cases": "1000",
"Test cases": "251",
"Category-EN": "{'0': 'background', '1': 'Edema', '2': 'Non-enhancing tumor', '3': 'Enhancing tumor'}",
"Category-CN": "{'0': '背景', '1': '水肿', '2': '非强化肿瘤', '3': '强化肿瘤'}",
"Dice nnunet": "0.8455",
"Dice base": "0.8463",
"Dice large": "0.8471",
"Dice huge": "0.8482",
"Dice base_ft": "0.8457",
"Dice large_ft": "0.8497",
"Dice huge_ft": "0.8507"
},
{
"Dataset": "Task020_AbdomenCT1K",
"Framework": "nnunet_v1",
"Modality": "CT",
"Input Channels": "1",
"Patch size": "[96, 160, 160]",
"Training spacing": "[0.800000011920929, 0.7910159826278687, 0.7910159826278687]",
"Train cases": "800",
"Test cases": "200",
"Category-EN": "{'0': 'background', '1': 'Liver', '2': 'Kidney', '3': 'Spleen', '4': 'Pancreas'}",
"Category-CN": "{'0': '背景', '1': '肝', '2': '肾', '3': '脾脏', '4': '胰腺'}",
"Dice nnunet": "0.9528",
"Dice base": "0.9534",
"Dice large": "0.9554",
"Dice huge": "0.9539",
"Dice base_ft": "0.9526",
"Dice large_ft": "0.9557",
"Dice huge_ft": "0.9562"
},
{
"Dataset": "Task021_KiTS2021",
"Framework": "nnunet_v1",
"Modality": "CT",
"Input Channels": "1",
"Patch size": "[128, 128, 128]",
"Training spacing": "[0.78126, 0.78125, 0.78125]",
"Train cases": "240",
"Test cases": "60",
"Category-EN": "{'0': 'background', '1': 'Kidney', '2': 'Kidney tumor', '3': 'Kidney cyst'}",
"Category-CN": "{'0': '背景', '1': '肾', '2': '肾肿瘤', '3': '肾囊肿'}",
"Dice nnunet": "0.7544",
"Dice base": "0.7322",
"Dice large": "0.7476",
"Dice huge": "0.7655",
"Dice base_ft": "0.7707",
"Dice large_ft": "0.7791",
"Dice huge_ft": "0.7891"
},
{
"Dataset": "Task023_FLARE22",
"Framework": "nnunet_v1",
"Modality": "CT",
"Input Channels": "1",
"Patch size": "[40, 224, 192]",
"Training spacing": "[2.5, 0.7939454913139343, 0.7939454913139343]",
"Train cases": "56",
"Test cases": "14",
"Category-EN": "{'0': 'background', '1': 'Liver', '2': 'Right kidney', '3': 'Spleen', '4': 'Pancreas', '5': 'Aorta', '6': 'Inferior vena cava', '7': 'Right adrenal gland', '8': 'Left adrenal gland', '9': 'Gallbladder', '10': 'Esophagus', '11': 'Stomach', '12': 'Duodenum', '13': 'Left kidney'}",
"Category-CN": "{'0': '背景', '1': '肝', '2': '右肾', '3': '脾脏', '4': '胰腺', '5': '主动脉', '6': '下腔静脉', '7': '右肾上腺', '8': '左肾上腺', '9': '胆囊', '10': '食管', '11': '胃', '12': '十二指肠', '13': '左肾'}",
"Dice nnunet": "0.8621",
"Dice base": "0.87",
"Dice large": "0.8776",
"Dice huge": "0.8748",
"Dice base_ft": "0.8752",
"Dice large_ft": "0.8807",
"Dice huge_ft": "0.891"
},
{
"Dataset": "Task029_LITS",
"Framework": "nnunet_v1",
"Modality": "CT",
"Input Channels": "1",
"Patch size": "[128, 128, 128]",
"Training spacing": "[1.0, 0.767578125, 0.767578125]",
"Train cases": "104",
"Test cases": "27",
"Category-EN": "{'0': 'background', '1': 'Liver', '2': 'Liver tumor'}",
"Category-CN": "{'0': '背景', '1': '肝', '2': '肝肿瘤'}",
"Dice nnunet": "0.8284",
"Dice base": "0.8296",
"Dice large": "0.8462",
"Dice huge": "0.8457",
"Dice base_ft": "0.8506",
"Dice large_ft": "0.8596",
"Dice huge_ft": "0.8474"
},
{
"Dataset": "Task034_Instance22",
"Framework": "nnunet_v1",
"Modality": "CT",
"Input Channels": "1",
"Patch size": "[16, 320, 320]",
"Training spacing": "[4.999972629547119, 0.45250000059604645, 0.45250000059604645]",
"Train cases": "80",
"Test cases": "20",
"Category-EN": "{'0': 'background', '1': 'Intracranial hemorrhage'}",
"Category-CN": "{'0': '背景', '1': '颅内出血'}",
"Dice nnunet": "0.6749",
"Dice base": "0.6861",
"Dice large": "0.6953",
"Dice huge": "0.6955",
"Dice base_ft": "0.6755",
"Dice large_ft": "0.6996",
"Dice huge_ft": "0.7027"
},
{
"Dataset": "Task036_KiPA22",
"Framework": "nnunet_v1",
"Modality": "CT",
"Input Channels": "1",
"Patch size": "[160, 128, 112]",
"Training spacing": "[0.6328129768371582, 0.6328129768371582, 0.6328129768371582]",
"Train cases": "56",
"Test cases": "14",
"Category-EN": "{'0': 'background', '1': 'Renal vein', '2': 'Kidney', '3': 'Renal artery', '4': 'Kidney tumor'}",
"Category-CN": "{'0': '背景', '1': '肾静脉', '2': '肾', '3': '肾动脉', '4': '肾肿瘤'}",
"Dice nnunet": "0.901",
"Dice base": "0.9004",
"Dice large": "0.9016",
"Dice huge": "0.9",
"Dice base_ft": "0.9031",
"Dice large_ft": "0.9029",
"Dice huge_ft": "0.9043"
},
{
"Dataset": "Task037_CHAOS_Task_3_5_Variant1",
"Framework": "nnunet_v1",
"Modality": "MRI,MRI",
"Input Channels": "2",
"Patch size": "[32, 192, 256]",
"Training spacing": "[7.529999828338624, 1.62109375, 1.62109375]",
"Train cases": "32",
"Test cases": "8",
"Category-EN": "{'0': 'background', '1': 'Liver', '2': 'Right kidney', '3': 'Left kidney', '4': 'Spleen'}",
"Category-CN": "{'0': '背景', '1': '肝', '2': '右肾', '3': '左肾', '4': '脾脏'}",
"Dice nnunet": "0.8619",
"Dice base": "0.8474",
"Dice large": "0.8629",
"Dice huge": "0.8588",
"Dice base_ft": "0.8708",
"Dice large_ft": "0.8727",
"Dice huge_ft": "0.8744"
},
{
"Dataset": "Task039_Parse22",
"Framework": "nnunet_v1",
"Modality": "CT",
"Input Channels": "1",
"Patch size": "[96, 160, 160]",
"Training spacing": "[1.0, 0.654296875, 0.654296875]",
"Train cases": "80",
"Test cases": "20",
"Category-EN": "{'0': 'background', '1': 'Pulmonary artery'}",
"Category-CN": "{'0': '背景', '1': '肺动脉'}",
"Dice nnunet": "0.8695",
"Dice base": "0.8691",
"Dice large": "0.8663",
"Dice huge": "0.8661",
"Dice base_ft": "0.8692",
"Dice large_ft": "0.8687",
"Dice huge_ft": "0.8681"
},
{
"Dataset": "Task040_ATM22",
"Framework": "nnunet_v1",
"Modality": "CT",
"Input Channels": "1",
"Patch size": "[128, 160, 112]",
"Training spacing": "[0.78125, 0.5, 0.78125]",
"Train cases": "240",
"Test cases": "60",
"Category-EN": "{'0': 'background', '1': 'Airway'}",
"Category-CN": "{'0': '背景', '1': '气道'}",
"Dice nnunet": "0.9108",
"Dice base": "0.9108",
"Dice large": "0.911",
"Dice huge": "0.9116",
"Dice base_ft": "0.9148",
"Dice large_ft": "0.9178",
"Dice huge_ft": "0.9174"
},
{
"Dataset": "Task041_ISLES2022",
"Framework": "nnunet_v1",
"Modality": "ADC MRI,DWI MRI",
"Input Channels": "2",
"Patch size": "[80, 96, 80]",
"Training spacing": "[2.0, 2.0, 2.0]",
"Train cases": "200",
"Test cases": "50",
"Category-EN": "{'0': 'background', '1': 'Ischemic stroke'}",
"Category-CN": "{'0': '背景', '1': '缺血性中风'}",
"Dice nnunet": "0.7836",
"Dice base": "0.7802",
"Dice large": "0.7919",
"Dice huge": "0.7929",
"Dice base_ft": "0.7866",
"Dice large_ft": "0.7878",
"Dice huge_ft": "0.7898"
},
{
"Dataset": "Task044_CrossMoDA23",
"Framework": "nnunet_v1",
"Modality": "MRI",
"Input Channels": "1",
"Patch size": "[32, 256, 224]",
"Training spacing": "[1.5, 0.625, 0.625]",
"Train cases": "181",
"Test cases": "46",
"Category-EN": "{'0': 'background', '1': 'Intra vestibular schwannoma', '2': 'Extra vestibular schwannoma', '3': 'Cochlea'}",
"Category-CN": "{'0': '背景', '1': '内位前庭神经瘤', '2': '额外位前庭神经瘤', '3': '耳蜗'}",
"Dice nnunet": "0.796",
"Dice base": "0.7934",
"Dice large": "0.7945",
"Dice huge": "0.7915",
"Dice base_ft": "0.7966",
"Dice large_ft": "0.7955",
"Dice huge_ft": "0.7987"
},
{
"Dataset": "Task044_KiTS23",
"Framework": "nnunet_v1",
"Modality": "CT",
"Input Channels": "1",
"Patch size": "[128, 128, 128]",
"Training spacing": "[1.0, 0.78125, 0.78125]",
"Train cases": "391",
"Test cases": "98",
"Category-EN": "{'0': 'background', '1': 'Kidney', '2': 'Kidney tumor', '3': 'Kidney cyst'}",
"Category-CN": "{'0': '背景', '1': '肾', '2': '肾肿瘤', '3': '肾囊肿'}",
"Dice nnunet": "0.7545",
"Dice base": "0.7591",
"Dice large": "0.7554",
"Dice huge": "0.7576",
"Dice base_ft": "0.7704",
"Dice large_ft": "0.7905",
"Dice huge_ft": "0.7983"
},
{
"Dataset": "Task050_LAScarQS22_task1",
"Framework": "nnunet_v1",
"Modality": "LGE MRI",
"Input Channels": "1",
"Patch size": "[20, 288, 288]",
"Training spacing": "[2.5, 0.625, 0.625]",
"Train cases": "48",
"Test cases": "12",
"Category-EN": "{'0': 'background', '1': 'Left atrial scar', '2': 'Left atrium'}",
"Category-CN": "{'0': '背景', '1': '左心房疤痕', '2': '左心房'}",
"Dice nnunet": "0.7155",
"Dice base": "0.7194",
"Dice large": "0.7104",
"Dice huge": "0.713",
"Dice base_ft": "0.7274",
"Dice large_ft": "0.716",
"Dice huge_ft": "0.7144"
},
{
"Dataset": "Task051_AMOS_CT",
"Framework": "nnunet_v1",
"Modality": "CT",
"Input Channels": "1",
"Patch size": "[64, 160, 160]",
"Training spacing": "[2.0, 0.6845703125, 0.6845703125]",
"Train cases": "240",
"Test cases": "60",
"Category-EN": "{'0': 'background', '1': 'Spleen', '10': 'Pancreas', '11': 'Right adrenal gland', '12': 'Left adrenal gland', '13': 'Duodenum', '14': 'Bladder', '15': 'Prostate/Uterus', '2': 'Right kidney', '3': 'Left kidney', '4': 'Gallbladder', '5': 'Esophagus', '6': 'Liver', '7': 'Stomach', '8': 'Aorta', '9': 'Postcaval vein'}",
"Category-CN": "{'0': '背景', '1': '脾脏', '10': '胰腺', '11': '右肾上腺', '12': '左肾上腺', '13': '十二指肠', '14': '膀胱', '15': '前列腺/子宫', '2': '右肾', '3': '左肾', '4': '胆囊', '5': '食管', '6': '肝', '7': '胃', '8': '主动脉', '9': '后腔静脉'}",
"Dice nnunet": "0.9012",
"Dice base": "0.8995",
"Dice large": "0.9069",
"Dice huge": "0.9048",
"Dice base_ft": "0.9033",
"Dice large_ft": "0.9085",
"Dice huge_ft": "0.9124"
},
{
"Dataset": "Task051_LAScarQS22_task2",
"Framework": "nnunet_v1",
"Modality": "LGE MRI",
"Input Channels": "1",
"Patch size": "[40, 256, 224]",
"Training spacing": "[1.0, 0.625, 0.625]",
"Train cases": "104",
"Test cases": "26",
"Category-EN": "{'0': 'background', '1': 'Left atrium'}",
"Category-CN": "{'0': '背景', '1': '左心房'}",
"Dice nnunet": "0.9176",
"Dice base": "0.9201",
"Dice large": "0.9204",
"Dice huge": "0.9208",
"Dice base_ft": "0.9202",
"Dice large_ft": "0.9209",
"Dice huge_ft": "0.9206"
},
{
"Dataset": "Task052_AMOS_MR",
"Framework": "nnunet_v1",
"Modality": "MRI",
"Input Channels": "1",
"Patch size": "[48, 160, 224]",
"Training spacing": "[3.0, 1.1875, 1.1875]",
"Train cases": "48",
"Test cases": "12",
"Category-EN": "{'0': 'background', '1': 'Spleen', '10': 'Pancreas', '11': 'Right adrenal gland', '12': 'Left adrenal gland', '13': 'Duodenum', '14': 'Bladder', '15': 'Prostate/Uterus', '2': 'Right kidney', '3': 'Left kidney', '4': 'Gallbladder', '5': 'Esophagus', '6': 'Liver', '7': 'Stomach', '8': 'Aorta', '9': 'Postcaval vein'}",
"Category-CN": "{'0': '背景', '1': '脾脏', '10': '胰腺', '11': '右肾上腺', '12': '左肾上腺', '13': '十二指肠', '14': '膀胱', '15': '前列腺/子宫', '2': '右肾', '3': '左肾', '4': '胆囊', '5': '食管', '6': '肝', '7': '胃', '8': '主动脉', '9': '后腔静脉'}",
"Dice nnunet": "0.8754",
"Dice base": "0.8695",
"Dice large": "0.8719",
"Dice huge": "0.8738",
"Dice base_ft": "0.8763",
"Dice large_ft": "0.8813",
"Dice huge_ft": "0.8812"
},
{
"Dataset": "Task053_AMOS_Task2",
"Framework": "nnunet_v1",
"Modality": "MRI",
"Input Channels": "1",
"Patch size": "[64, 160, 160]",
"Training spacing": "[2.0, 0.712890625, 0.712890625]",
"Train cases": "288",
"Test cases": "72",
"Category-EN": "{'0': 'background', '1': 'Spleen', '10': 'Pancreas', '11': 'Right adrenal gland', '12': 'Left adrenal gland', '13': 'Duodenum', '14': 'Bladder', '15': 'Prostate/Uterus', '2': 'Right kidney', '3': 'Left kidney', '4': 'Gallbladder', '5': 'Esophagus', '6': 'Liver', '7': 'Stomach', '8': 'Aorta', '9': 'Postcaval vein'}",
"Category-CN": "{'0': '背景', '1': '脾脏', '10': '胰腺', '11': '右肾上腺', '12': '左肾上腺', '13': '十二指肠', '14': '膀胱', '15': '前列腺/子宫', '2': '右肾', '3': '左肾', '4': '胆囊', '5': '食管', '6': '肝', '7': '胃', '8': '主动脉', '9': '后腔静脉'}",
"Dice nnunet": "0.8956",
"Dice base": "0.8989",
"Dice large": "0.9037",
"Dice huge": "0.9025",
"Dice base_ft": "0.8978",
"Dice large_ft": "0.906",
"Dice huge_ft": "0.9064"
},
{
"Dataset": "Task083_VerSe2020",
"Framework": "nnunet_v1",
"Modality": "CT",
"Input Channels": "1",
"Patch size": "[160, 112, 112]",
"Training spacing": "[1.0, 0.93359375, 1.0]",
"Train cases": "280",
"Test cases": "71",
"Category-EN": "{'0': 'background', '1': 'Vertebrae C1', '10': 'Vertebrae T2', '11': 'Vertebrae T3', '12': 'Vertebrae T4', '13': 'Vertebrae T5', '14': 'Vertebrae T6', '15': 'Vertebrae T7', '16': 'Vertebrae T8', '17': 'Vertebrae T10', '18': 'Vertebrae T11', '19': 'Vertebrae T12', '2': 'Vertebrae C2', '20': 'Vertebrae L1', '21': 'Vertebrae L2', '22': 'Vertebrae L3', '23': 'Vertebrae L4', '24': 'Vertebrae L5', '25': 'Vertebrae L6', '26': 'Sacrum', '27': 'cocygis', '28': 'T13', '3': 'Vertebrae C3', '4': 'Vertebrae C4', '5': 'Vertebrae C5', '6': 'Vertebrae C6', '7': 'Vertebrae C7', '8': 'Vertebrae T1', '9': 'Vertebrae T13'}",
"Category-CN": "{'0': '背景', '1': '颈椎C1', '10': '胸椎T2', '11': '胸椎T3', '12': '胸椎T4', '13': '胸椎T5', '14': '胸椎T6', '15': '胸椎T7', '16': '胸椎T8', '17': '胸椎T10', '18': '胸椎T11', '19': '胸椎T12', '2': '颈椎C2', '20': '腰椎L1', '21': '腰椎L2', '22': '腰椎L3', '23': '腰椎L4', '24': '腰椎L5', '25': '腰椎L6', '26': '骶骨', '27': '背景', '28': '背景', '3': '颈椎C3', '4': '颈椎C4', '5': '颈椎C5', '6': '颈椎C6', '7': '颈椎C7', '8': '胸椎T1', '9': '胸椎T13'}",
"Dice nnunet": "0.7198",
"Dice base": "0.747",
"Dice large": "0.7458",
"Dice huge": "0.7438",
"Dice base_ft": "0.7467",
"Dice large_ft": "0.7596",
"Dice huge_ft": "0.758"
},
{
"Dataset": "Task103_ADAM2020",
"Framework": "nnunet_v1",
"Modality": "TOF MRI",
"Input Channels": "1",
"Patch size": "[56, 224, 192]",
"Training spacing": "[0.5000004172325134, 0.3571428656578064, 0.3571428656578064]",
"Train cases": "90",
"Test cases": "23",
"Category-EN": "{'0': 'background', '1': 'Brain aneurysm', '2': 'Treated aneurysm'}",
"Category-CN": "{'0': '背景', '1': '动脉瘤', '2': '愈后动脉瘤'}",
"Dice nnunet": "0.5064",
"Dice base": "0.56",
"Dice large": "0.6118",
"Dice huge": "0.5927",
"Dice base_ft": "0.6524",
"Dice large_ft": "0.6883",
"Dice huge_ft": "0.6702"
},
{
"Dataset": "Task104_Colorectal_Liver_Metastases",
"Framework": "nnunet_v1",
"Modality": "CT",
"Input Channels": "1",
"Patch size": "[64, 192, 192]",
"Training spacing": "[1.5, 0.78125, 0.78125]",
"Train cases": "157",
"Test cases": "40",
"Category-EN": "{'0': 'background', '1': 'Liver', '2': 'Liver tumor'}",
"Category-CN": "{'0': '背景', '1': '肝', '2': '肝肿瘤'}",
"Dice nnunet": "0.8485",
"Dice base": "0.8419",
"Dice large": "0.8475",
"Dice huge": "0.8538",
"Dice base_ft": "0.8501",
"Dice large_ft": "0.8529",
"Dice huge_ft": "0.8532"
},
{
"Dataset": "Task105_DICOM_LIDC_IDRI_Nodules",
"Framework": "nnunet_v1",
"Modality": "CT",
"Input Channels": "1",
"Patch size": "[80, 192, 160]",
"Training spacing": "[1.3750000596046448, 0.6986093819141388, 0.6986093819141388]",
"Train cases": "814",
"Test cases": "204",
"Category-EN": "{'0': 'background', '1': 'Lymph nodes'}",
"Category-CN": "{'0': '背景', '1': '淋巴结'}",
"Dice nnunet": "0.4999",
"Dice base": "0.5555",
"Dice large": "0.5601",
"Dice huge": "0.5545",
"Dice base_ft": "0.6146",
"Dice large_ft": "0.6198",
"Dice huge_ft": "0.6384"
},
{
"Dataset": "Task106_AIIB2023",
"Framework": "nnunet_v1",
"Modality": "CT",
"Input Channels": "1",
"Patch size": "[128, 128, 128]",
"Training spacing": "[0.7041015625, 0.5, 0.7041015625]",
"Train cases": "96",
"Test cases": "24",
"Category-EN": "{'0': 'background', '1': 'Airway'}",
"Category-CN": "{'0': '背景', '1': '气道'}",
"Dice nnunet": "0.9353",
"Dice base": "0.9353",
"Dice large": "0.9354",
"Dice huge": "0.9362",
"Dice base_ft": "0.9359",
"Dice large_ft": "0.9377",
"Dice huge_ft": "0.9391"