-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path7860267
executable file
·1185 lines (912 loc) · 58.9 KB
/
7860267
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" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="google-site-verification" content="5fPGCLllnWrvFxH9QWI0l1TadV7byeEvfPcyK2VkS_s"/>
<meta name="google-site-verification" content="Rp5zp04IKW-s1IbpTOGB7Z6XY60oloZD5C3kTM-AiY4"/>
<meta name="generator" content="InvenioRDM 13.0"/>
<meta name="description" content="This dataset was used as the labeled training set in MICCAI FLARE 2022 Challenge https://flare22.grand-challenge.org/. The CT images and pancreas annotations are from http://medicaldecathlon.com/ The other organ annotations are from AbdomenCT-1K (research purpose only). If this dataset is useful in your research, please give credit to the following two papers: A large annotated medical image dataset for the development and evaluation of segmentation algorithms https://arxiv.org/abs/1902.09063 AbdomenCT-1K: Is Abdominal Organ Segmentation a Solved Problem? https://ieeexplore.ieee.org/document/9497733" />
<meta name="citation_title" content="MICCAI FLARE22 Challenge Dataset (50 Labeled Abdomen CT Scans)" />
<meta name="citation_doi" content="10.5281/zenodo.7860267" />
<meta name="citation_abstract_html_url" content="https://zenodo.org/records/7860267" />
<meta property="og:title" content="MICCAI FLARE22 Challenge Dataset (50 Labeled Abdomen CT Scans)" />
<meta property="og:description" content="This dataset was used as the labeled training set in MICCAI FLARE 2022 Challenge https://flare22.grand-challenge.org/. The CT images and pancreas annotations are from http://medicaldecathlon.com/ The other organ annotations are from AbdomenCT-1K (research purpose only). If this dataset is useful in your research, please give credit to the following two papers: A large annotated medical image dataset for the development and evaluation of segmentation algorithms https://arxiv.org/abs/1902.09063 AbdomenCT-1K: Is Abdominal Organ Segmentation a Solved Problem? https://ieeexplore.ieee.org/document/9497733" />
<meta property="og:url" content="https://zenodo.org/records/7860267" />
<meta property="og:site_name" content="Zenodo" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@zenodo_org" />
<meta name="twitter:title" content="MICCAI FLARE22 Challenge Dataset (50 Labeled Abdomen CT Scans)" />
<meta name="twitter:description" content="This dataset was used as the labeled training set in MICCAI FLARE 2022 Challenge https://flare22.grand-challenge.org/. The CT images and pancreas annotations are from http://medicaldecathlon.com/ The other organ annotations are from AbdomenCT-1K (research purpose only). If this dataset is useful in your research, please give credit to the following two papers: A large annotated medical image dataset for the development and evaluation of segmentation algorithms https://arxiv.org/abs/1902.09063 AbdomenCT-1K: Is Abdominal Organ Segmentation a Solved Problem? https://ieeexplore.ieee.org/document/9497733" />
<link rel="alternate" type="application/zip" href="https://zenodo.org/records/7860267/files/FLARE22Train.zip">
<link rel="canonical" href="https://zenodo.org/records/7860267">
<title>MICCAI FLARE22 Challenge Dataset (50 Labeled Abdomen CT Scans)</title>
<link rel="shortcut icon" type="image/x-icon" href="/static/favicon.ico"/>
<link rel="apple-touch-icon" sizes="120x120" href="/static/apple-touch-icon-120.png"/>
<link rel="apple-touch-icon" sizes="152x152" href="/static/apple-touch-icon-152.png"/>
<link rel="apple-touch-icon" sizes="167x167" href="/static/apple-touch-icon-167.png"/>
<link rel="apple-touch-icon" sizes="180x180" href="/static/apple-touch-icon-180.png"/>
<link rel="stylesheet" href="/static/dist/css/3526.b4dd8bb2e970adb4d0de.css" />
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body itemscope itemtype="http://schema.org/WebPage" data-spy="scroll" data-target=".scrollspy-target">
<a id="skip-to-main" class="ui button primary ml-5 mt-5 skip-link" href="#main">Skip to main</a>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div>
<header class="theme header">
<div class="outer-navbar">
<div class="ui container invenio-header-container">
<nav id="invenio-nav" class="ui inverted menu borderless p-0">
<div class="item logo p-0">
<a class="logo-link" href="/">
<img class="ui image rdm-logo"
src="/static/images/invenio-rdm.svg"
alt="Zenodo home"/>
</a>
</div>
<div id="rdm-burger-toggle">
<button
id="rdm-burger-menu-icon"
class="ui button transparent"
aria-label="Menu"
aria-haspopup="menu"
aria-expanded="false"
aria-controls="invenio-menu"
>
<span class="navicon" aria-hidden="true"></span>
</button>
</div>
<nav
id="invenio-menu"
aria-labelledby="rdm-burger-menu-icon"
class="ui fluid menu borderless mobile-hidden"
>
<button
id="rdm-close-burger-menu-icon"
class="ui button transparent"
aria-label="Close menu"
>
<span class="navicon" aria-hidden="true"></span>
</button>
<div class="item p-0 search-bar">
<div id="header-search-bar" data-options='[{"key": "records", "text": "All Zenodo", "value": "/search"}]'>
<div class="ui fluid search">
<div class="ui icon input">
<input
autocomplete="off"
aria-label="Search records"
placeholder="Search records..."
type="text"
tabindex="0"
class="prompt"
value=""
>
<i aria-hidden="true" class="search icon"></i>
</div>
</div>
</div>
</div>
<div class="item">
<a href="/communities">Communities</a>
</div>
<div class="item">
<a href="/me/uploads">My dashboard</a>
</div>
<div class="right menu item">
<form>
<a
href="/login/?next=%2Frecords%2F7860267"
class="ui button">
<i class="sign-in icon"></i>
Log in</a>
<a href="/signup/" class="ui button signup">
<i class="edit outline icon"></i>
Sign up
</a>
</form>
</div>
</nav>
</nav>
</div>
</header>
</div>
<main id="main">
<div class="invenio-page-body">
<section id="banners" class="banners" aria-label="Information banner">
<!-- COMMUNITY HEADER: hide it when displaying the submission request -->
<!-- /COMMUNITY HEADER -->
<!-- PREVIEW HEADER -->
<!-- /PREVIEW HEADER -->
</section>
<div class="ui container">
<div class="ui relaxed grid mt-5">
<div class="two column row top-padded">
<article
class="sixteen wide tablet eleven wide computer column main-record-content">
<section id="record-info"
aria-label="Publication date and version number">
<div class="ui grid middle aligned">
<div class="two column row">
<div class="left floated left aligned column">
<span class="ui" title="Publication date">
Published April 24, 2023
</span>
<span
class="label text-muted"> | Version 1.0</span>
</div>
<div class="right floated right aligned column">
<span role="note"
class="ui label horizontal small neutral mb-5"
aria-label="Resource type"
>
Dataset
</span>
<span role="note"
class="ui label horizontal small access-status open mb-5"
data-tooltip="The record and files are publicly accessible."
data-inverted=""
aria-label="Access status"
>
<i class="icon unlock"
aria-hidden="true"></i>
<span
aria-label="The record and files are publicly accessible.">
Open
</span>
</span>
</div>
</div>
</div>
</section>
<div class="ui divider hidden"></div><section id="record-title-section"
aria-label="Record title and creators">
<h1 id="record-title"
class="wrap-overflowing-text">MICCAI FLARE22 Challenge Dataset (50 Labeled Abdomen CT Scans)</h1>
<section id="creatibutors"
aria-label="Creators and contributors">
<div class="ui grid">
<div class="row ui accordion affiliations">
<div class="sixteen wide mobile twelve wide tablet thirteen wide computer column">
<h2 class="sr-only">Creators</h2>
<ul class="creatibutors">
<li class="creatibutor-wrap separated">
<a class="ui creatibutor-link"
data-tooltip="JUN"
href="/search?q=metadata.creators.person_or_org.name%3A%22MA%22"
>
<span class="creatibutor-name">MA</span><sup class="font-tiny">1</sup></a>
<a class="no-text-decoration" href="https://orcid.org/0000-0002-9739-0855" aria-label="MA's ORCID profile" title="MA's ORCID profile">
<img class="ml-5 inline-id-icon" src="/static/images/orcid.svg" alt="ORCID icon"/>
</a>
</li>
</ul>
</div>
<div class="ui sixteen wide tablet three wide computer column title right aligned bottom aligned">
<button class="ui affiliations-button trigger button mini mr-0"
aria-controls="creators-affiliations"
data-open-text="Show affiliations"
data-close-text="Hide affiliations"
aria-expanded="false"
>
Show affiliations
</button>
</div>
<section class="ui sixteen wide column content" id="creators-affiliations" aria-label="Affiliations for creators">
<ul>
<li>
1.
JUN
</li>
</ul>
</section>
</div>
</div>
</section>
</section>
<section id="description" class="rel-mt-2 rich-input-content" aria-label="Record description">
<h2 id="description-heading" class="sr-only">Description</h2>
<div style="word-wrap: break-word;">
<p><p>This dataset was used as the labeled training set in MICCAI FLARE 2022 Challenge https://flare22.grand-challenge.org/.</p>
<p>The CT images and pancreas annotations are from http://medicaldecathlon.com/</p>
<p>The other organ annotations are from AbdomenCT-1K (research purpose only).</p>
<p>If this dataset is useful in your research, please give credit to the following two papers:</p>
<p>A large annotated medical image dataset for the development and evaluation of segmentation algorithms</p>
<p>https://arxiv.org/abs/1902.09063</p>
<p>AbdomenCT-1K: Is Abdominal Organ Segmentation a Solved Problem?</p>
<p>https://ieeexplore.ieee.org/document/9497733</p></p>
</div>
</section>
<section
id="record-files" class="rel-mt-2 rel-mb-3"
aria-label="Files"
><h2 id="files-heading">Files</h2>
<div class="ui accordion panel mb-10 open" href="#files-preview-accordion-panel">
<h3 class="active title panel-heading open m-0">
<div
role="button"
id="files-preview-accordion-trigger"
aria-controls="files-preview-accordion-panel"
aria-expanded="true"
tabindex="0"
class="trigger"
aria-label="File preview"
>
<span id="preview-file-title">FLARE22Train.zip</span>
<i class="angle right icon" aria-hidden="true"></i>
</div>
</h3>
<div
role="region"
id="files-preview-accordion-panel"
aria-labelledby="files-preview-accordion-trigger"
class="active content preview-container pt-0 open"
>
<div>
<iframe
title="Preview"
class="preview-iframe"
id="preview-iframe"
name="preview-iframe"
src="/records/7860267/preview/FLARE22Train.zip?include_deleted=0"
>
</iframe>
</div>
</div>
</div>
<div class="ui accordion panel mb-10 open" href="#files-list-accordion-panel">
<h3 class="active title panel-heading open m-0">
<div role="button" id="files-list-accordion-trigger" aria-controls="files-list-accordion-panel" aria-expanded="true" tabindex="0" class="trigger">
Files
<small class="text-muted"> (1.5 GB)</small>
<i class="angle right icon" aria-hidden="true"></i>
</div>
</h3>
<div role="region" id="files-list-accordion-panel" aria-labelledby="files-list-accordion-trigger" class="active content pt-0">
<div>
<table class="ui striped table files fluid open">
<thead>
<tr>
<th>Name</th>
<th>Size</th>
<th class>
<a role="button" class="ui compact mini button right floated archive-link" href="https://zenodo.org/api/records/7860267/files-archive">
<i class="file archive icon button" aria-hidden="true"></i> Download all
</a>
</th>
</tr>
</thead>
<tbody>
<tr>
<td class="ten wide">
<div>
<a href="/records/7860267/files/FLARE22Train.zip?download=1">FLARE22Train.zip</a>
</div>
<small class="ui text-muted font-tiny">md5:f6b1a257deb8ad98eb901328b0762cc4
<div class="ui icon inline-block" data-tooltip="This is the file fingerprint (checksum), which can be used to verify the file integrity.">
<i class="question circle checksum icon"></i>
</div>
</small>
</td>
<td>1.5 GB</td>
<td class="right aligned">
<span>
<a role="button" class="ui compact mini button preview-link" href="/records/7860267/preview/FLARE22Train.zip?include_deleted=0" target="preview-iframe" data-file-key="FLARE22Train.zip">
<i class="eye icon" aria-hidden="true"></i>Preview
</a>
<a role="button" class="ui compact mini button" href="/records/7860267/files/FLARE22Train.zip?download=1">
<i class="download icon" aria-hidden="true"></i>Download
</a>
</span>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</section>
<section id="additional-details" class="rel-mt-2" aria-label="Additional record details">
</section>
<section
id="citations-search"
data-record-pids='{"doi": {"client": "datacite", "identifier": "10.5281/zenodo.7860267", "provider": "datacite"}, "oai": {"identifier": "oai:zenodo.org:7860267", "provider": "oai"}}'
data-record-parent-pids='{"doi": {"client": "datacite", "identifier": "10.5281/zenodo.7860266", "provider": "datacite"}}'
data-citations-endpoint="https://zenodo-broker.web.cern.ch/api/relationships"
aria-label="Record citations"
class="rel-mb-1"
>
</section>
</article>
<aside class="sixteen wide tablet five wide computer column sidebar"
aria-label="Record details">
<section id="metrics" aria-label="Metrics" class="ui segment rdm-sidebar sidebar-container">
<div class="ui tiny two statistics rel-mt-1">
<div class="ui statistic">
<div class="value">11K</div>
<div class="label">
<i aria-hidden="true" class="eye icon"></i>
Views
</div>
</div>
<div class="ui statistic">
<div class="value">6K</div>
<div class="label">
<i aria-hidden="true" class="download icon"></i>
Downloads
</div>
</div>
</div>
<div class="ui accordion rel-mt-1 centered">
<div class="title">
<i class="caret right icon" aria-hidden="true"></i>
<span
tabindex="0"
class="trigger"
data-open-text="Show more details"
data-close-text="Show less details"
>
Show more details
</span>
</div>
<div class="content">
<table id="record-statistics" class="ui definition table fluid">
<thead>
<tr>
<th></th>
<th class="right aligned">All versions</th>
<th class="right aligned">This version</th>
</tr>
</thead>
<tbody>
<tr>
<td>
Views
<i
tabindex="0"
role="button"
style="position:relative"
class="popup-trigger question circle small icon"
aria-expanded="false"
aria-label="More info"
data-variation="mini inverted"
>
</i>
<p role="tooltip" class="popup-content ui flowing popup transition hidden">
Total views
</p>
</td>
<td data-label="All versions" class="right aligned">
10,698
</td>
<td data-label="This version" class="right aligned">
10,536
</td>
</tr>
<tr>
<td>
Downloads
<i
tabindex="0"
role="button"
style="position:relative"
class="popup-trigger question circle small icon"
aria-expanded="false"
aria-label="More info"
data-variation="mini inverted"
>
</i>
<p role="tooltip" class="popup-content ui flowing popup transition hidden">
Total downloads
</p>
</td>
<td data-label="All versions" class="right aligned">
5,762
</td>
<td data-label="This version" class="right aligned">
5,685
</td>
</tr>
<tr>
<td>
Data volume
<i
tabindex="0"
role="button"
style="position:relative"
class="popup-trigger question circle small icon"
aria-expanded="false"
aria-label="More info"
data-variation="mini inverted"
>
</i>
<p role="tooltip" class="popup-content ui flowing popup transition hidden">
Total data volume
</p>
</td>
<td data-label="All versions" class="right aligned">16.7 TB</td>
<td data-label="This version" class="right aligned">16.5 TB</td>
</tr>
</tbody>
</table>
<p class="text-align-center rel-mt-1">
<small>
<a href="/help/statistics">More info on how stats are collected....</a>
</small>
</p>
</div>
</div>
</section>
<div class="sidebar-container">
<h2 class="ui medium top attached header mt-0">Versions</h2>
<div id="record-versions" class="ui segment rdm-sidebar bottom attached pl-0 pr-0 pt-0">
<div class="versions">
<div id="recordVersions" data-record='{"access": {"embargo": {"active": false, "reason": null}, "files": "public", "record": "public", "status": "open"}, "created": "2023-04-24T19:11:38.035354+00:00", "custom_fields": {}, "deletion_status": {"is_deleted": false, "status": "P"}, "expanded": {"parent": {"access": {"owned_by": {"active": null, "blocked_at": null, "confirmed_at": null, "email": "", "id": "98477", "is_current_user": false, "links": {"avatar": "https://zenodo.org/api/users/98477/avatar.svg", "records_html": "https://zenodo.org/search/records?q=user:98477", "self": "https://zenodo.org/api/users/98477"}, "profile": {"affiliations": "", "full_name": "Jun Ma"}, "username": "JunMa", "verified_at": null}}}}, "files": {"count": 1, "enabled": true, "entries": {"FLARE22Train.zip": {"access": {"hidden": false}, "checksum": "md5:f6b1a257deb8ad98eb901328b0762cc4", "ext": "zip", "id": "5abb01c3-a3a0-49ea-9636-ed1193a440c4", "key": "FLARE22Train.zip", "links": {"content": "https://zenodo.org/api/records/7860267/files/FLARE22Train.zip/content", "self": "https://zenodo.org/api/records/7860267/files/FLARE22Train.zip"}, "metadata": null, "mimetype": "application/zip", "size": 1480326483, "storage_class": "L"}}, "order": [], "total_bytes": 1480326483}, "id": "7860267", "is_draft": false, "is_published": true, "links": {"access": "https://zenodo.org/api/records/7860267/access", "access_grants": "https://zenodo.org/api/records/7860267/access/grants", "access_links": "https://zenodo.org/api/records/7860267/access/links", "access_request": "https://zenodo.org/api/records/7860267/access/request", "access_users": "https://zenodo.org/api/records/7860267/access/users", "archive": "https://zenodo.org/api/records/7860267/files-archive", "archive_media": "https://zenodo.org/api/records/7860267/media-files-archive", "communities": "https://zenodo.org/api/records/7860267/communities", "communities-suggestions": "https://zenodo.org/api/records/7860267/communities-suggestions", "doi": "https://doi.org/10.5281/zenodo.7860267", "draft": "https://zenodo.org/api/records/7860267/draft", "files": "https://zenodo.org/api/records/7860267/files", "latest": "https://zenodo.org/api/records/7860267/versions/latest", "latest_html": "https://zenodo.org/records/7860267/latest", "media_files": "https://zenodo.org/api/records/7860267/media-files", "parent": "https://zenodo.org/api/records/7860266", "parent_doi": "https://zenodo.org/doi/10.5281/zenodo.7860266", "parent_html": "https://zenodo.org/records/7860266", "requests": "https://zenodo.org/api/records/7860267/requests", "reserve_doi": "https://zenodo.org/api/records/7860267/draft/pids/doi", "self": "https://zenodo.org/api/records/7860267", "self_doi": "https://zenodo.org/doi/10.5281/zenodo.7860267", "self_html": "https://zenodo.org/records/7860267", "self_iiif_manifest": "https://zenodo.org/api/iiif/record:7860267/manifest", "self_iiif_sequence": "https://zenodo.org/api/iiif/record:7860267/sequence/default", "versions": "https://zenodo.org/api/records/7860267/versions"}, "media_files": {"count": 0, "enabled": false, "entries": {}, "order": [], "total_bytes": 0}, "metadata": {"creators": [{"affiliations": [{"name": "JUN"}], "person_or_org": {"family_name": "MA", "identifiers": [{"identifier": "0000-0002-9739-0855", "scheme": "orcid"}], "name": "MA", "type": "personal"}}], "description": "\u003cp\u003eThis dataset was used as the labeled training set in MICCAI FLARE 2022 Challenge https://flare22.grand-challenge.org/.\u003c/p\u003e\n\n\u003cp\u003eThe CT images and pancreas annotations are from http://medicaldecathlon.com/\u003c/p\u003e\n\n\u003cp\u003eThe other organ annotations are from AbdomenCT-1K (research purpose only).\u003c/p\u003e\n\n\u003cp\u003eIf this dataset is useful in your research, please give credit to the following two papers:\u003c/p\u003e\n\n\u003cp\u003eA large annotated medical image dataset for the development and evaluation of segmentation algorithms\u003c/p\u003e\n\n\u003cp\u003ehttps://arxiv.org/abs/1902.09063\u003c/p\u003e\n\n\u003cp\u003eAbdomenCT-1K: Is Abdominal Organ Segmentation a Solved Problem?\u003c/p\u003e\n\n\u003cp\u003ehttps://ieeexplore.ieee.org/document/9497733\u003c/p\u003e", "publication_date": "2023-04-24", "publisher": "Zenodo", "resource_type": {"id": "dataset", "title": {"de": "Datensatz", "en": "Dataset"}}, "rights": [{"description": {"en": "The Creative Commons Attribution license allows re-distribution and re-use of a licensed work on the condition that the creator is appropriately credited."}, "icon": "cc-by-icon", "id": "cc-by-4.0", "props": {"scheme": "spdx", "url": "https://creativecommons.org/licenses/by/4.0/legalcode"}, "title": {"en": "Creative Commons Attribution 4.0 International"}}], "title": "MICCAI FLARE22 Challenge Dataset (50 Labeled Abdomen CT Scans)", "version": "1.0"}, "parent": {"access": {"owned_by": {"user": "98477"}, "settings": {"accept_conditions_text": null, "allow_guest_requests": false, "allow_user_requests": false, "secret_link_expiration": 0}}, "communities": {}, "id": "7860266", "pids": {"doi": {"client": "datacite", "identifier": "10.5281/zenodo.7860266", "provider": "datacite"}}}, "pids": {"doi": {"client": "datacite", "identifier": "10.5281/zenodo.7860267", "provider": "datacite"}, "oai": {"identifier": "oai:zenodo.org:7860267", "provider": "oai"}}, "revision_id": 3, "stats": {"all_versions": {"data_volume": 16678838483961.0, "downloads": 11267, "unique_downloads": 5762, "unique_views": 10698, "views": 12149}, "this_version": {"data_volume": 16505640285450.0, "downloads": 11150, "unique_downloads": 5685, "unique_views": 10536, "views": 11966}}, "status": "published", "ui": {"access_status": {"description_l10n": "The record and files are publicly accessible.", "embargo_date_l10n": null, "icon": "unlock", "id": "open", "message_class": "", "title_l10n": "Open"}, "created_date_l10n_long": "April 24, 2023", "creators": {"affiliations": [[1, "JUN", null]], "creators": [{"affiliations": [[1, "JUN"]], "person_or_org": {"family_name": "MA", "identifiers": [{"identifier": "0000-0002-9739-0855", "scheme": "orcid"}], "name": "MA", "type": "personal"}}]}, "custom_fields": {}, "description_stripped": "This dataset was used as the labeled training set in MICCAI FLARE 2022 Challenge https://flare22.grand-challenge.org/.\n\n\nThe CT images and pancreas annotations are from http://medicaldecathlon.com/\n\n\nThe other organ annotations are from AbdomenCT-1K (research purpose only).\n\n\nIf this dataset is useful in your research, please give credit to the following two papers:\n\n\nA large annotated medical image dataset for the development and evaluation of segmentation algorithms\n\n\nhttps://arxiv.org/abs/1902.09063\n\n\nAbdomenCT-1K: Is Abdominal Organ Segmentation a Solved Problem?\n\n\nhttps://ieeexplore.ieee.org/document/9497733", "is_draft": false, "publication_date_l10n_long": "April 24, 2023", "publication_date_l10n_medium": "Apr 24, 2023", "resource_type": {"id": "dataset", "title_l10n": "Dataset"}, "rights": [{"description_l10n": "The Creative Commons Attribution license allows re-distribution and re-use of a licensed work on the condition that the creator is appropriately credited.", "icon": "cc-by-icon", "id": "cc-by-4.0", "props": {"scheme": "spdx", "url": "https://creativecommons.org/licenses/by/4.0/legalcode"}, "title_l10n": "Creative Commons Attribution 4.0 International"}], "updated_date_l10n_long": "April 25, 2023", "version": "1.0"}, "updated": "2023-04-25T02:26:50.465452+00:00", "versions": {"index": 1, "is_latest": true}}' data-preview='false'>
<div class="rel-p-1"></div>
<div class="ui fluid placeholder rel-mr-1 rel-ml-1"></div>
<div class="header">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</div>
</div>
</div>
</div><div class="sidebar-container">
<h2 class="ui small top attached header">External resources</h2>
<div id="external-resource" aria-label="External resources" class="ui bottom attached segment rdm-sidebar external resource">
<h3 class="ui small header">Indexed in</h3>
<ul class="ui relaxed list no-bullet">
<li class="item flex align-items-center">
<img class="ui image" src="/static/images/openaire.svg" alt="" width="32">
<div class="content">
<a
class="header"
href="https://explore.openaire.eu/search/dataset?pid=10.5281/zenodo.7860267"
target="_blank"
rel="noreferrer"
>OpenAIRE
</a>
</div>
</li></ul></div>
</div><div
id="sidebar-communities-manage"
data-user-communities-memberships='{}'
data-record-community-endpoint="https://zenodo.org/api/records/7860267/communities"
data-record-community-search-endpoint="https://zenodo.org/api/records/7860267/communities-suggestions"
data-record-user-community-search-endpoint=""
data-can-manage-record='false'
data-pending-communities-search-config='{"aggs": [{"aggName": "type", "field": "type", "title": "Type"}, {"aggName": "status", "field": "status", "title": "Status"}], "appId": "InvenioAppRdm.RecordRequests", "defaultSortingOnEmptyQueryString": [{"sortBy": "newest"}], "initialQueryState": {"filters": [], "hiddenParams": [["expand", "1"], ["is_open", "true"], ["type", "community-inclusion"], ["type", "community-submission"]], "layout": "list", "page": 1, "size": 10, "sortBy": "bestmatch"}, "layoutOptions": {"gridView": false, "listView": true}, "paginationOptions": {"defaultValue": 10, "maxTotalResults": 10000, "resultsPerPage": [{"text": "10", "value": 10}, {"text": "20", "value": 20}, {"text": "50", "value": 50}]}, "searchApi": {"axios": {"headers": {"Accept": "application/json"}, "url": "https://zenodo.org/api/records/7860267/requests", "withCredentials": true}, "invenio": {"requestSerializer": "InvenioRecordsResourcesRequestSerializer"}}, "sortOptions": [{"sortBy": "bestmatch", "text": "Best match"}, {"sortBy": "newest", "text": "Newest"}, {"sortBy": "oldest", "text": "Oldest"}], "sortOrderDisabled": true}'
data-record-community-search-config='{"aggs": [{"aggName": "type", "field": "type", "title": "Type"}, {"aggName": "funder", "field": "metadata.funding.funder", "title": "Funders"}, {"aggName": "organization", "field": "metadata.organizations", "title": "Organizations"}], "appId": "InvenioAppRdm.RecordCommunitiesSuggestions", "defaultSortingOnEmptyQueryString": [{"sortBy": "newest"}], "initialQueryState": {"filters": [], "hiddenParams": null, "layout": "list", "page": 1, "size": 10, "sortBy": "bestmatch"}, "layoutOptions": {"gridView": false, "listView": true}, "paginationOptions": {"defaultValue": 10, "maxTotalResults": 10000, "resultsPerPage": [{"text": "10", "value": 10}, {"text": "20", "value": 20}]}, "searchApi": {"axios": {"headers": {"Accept": "application/vnd.inveniordm.v1+json"}, "url": "https://zenodo.org/api/records/7860267/communities-suggestions", "withCredentials": true}, "invenio": {"requestSerializer": "InvenioRecordsResourcesRequestSerializer"}}, "sortOptions": [{"sortBy": "bestmatch", "text": "Best match"}, {"sortBy": "newest", "text": "Newest"}, {"sortBy": "oldest", "text": "Oldest"}], "sortOrderDisabled": true}'
data-record-user-community-search-config='{"aggs": [{"aggName": "type", "field": "type", "title": "Type"}, {"aggName": "funder", "field": "metadata.funding.funder", "title": "Funders"}, {"aggName": "organization", "field": "metadata.organizations", "title": "Organizations"}], "appId": "InvenioAppRdm.RecordUserCommunitiesSuggestions", "defaultSortingOnEmptyQueryString": [{"sortBy": "newest"}], "initialQueryState": {"filters": [], "hiddenParams": [["membership", "true"]], "layout": "list", "page": 1, "size": 10, "sortBy": "bestmatch"}, "layoutOptions": {"gridView": false, "listView": true}, "paginationOptions": {"defaultValue": 10, "maxTotalResults": 10000, "resultsPerPage": [{"text": "10", "value": 10}, {"text": "20", "value": 20}]}, "searchApi": {"axios": {"headers": {"Accept": "application/vnd.inveniordm.v1+json"}, "url": "https://zenodo.org/api/records/7860267/communities-suggestions", "withCredentials": true}, "invenio": {"requestSerializer": "InvenioRecordsResourcesRequestSerializer"}}, "sortOptions": [{"sortBy": "bestmatch", "text": "Best match"}, {"sortBy": "newest", "text": "Newest"}, {"sortBy": "oldest", "text": "Oldest"}], "sortOrderDisabled": true}'
data-permissions='{"can_edit": false, "can_manage": false, "can_media_read_files": true, "can_moderate": false, "can_new_version": false, "can_read_files": true, "can_review": false, "can_update_draft": false, "can_view": false}'
class="sidebar-container"
>
<h2 class="ui medium top attached header">Communities</h2>
<div class="ui segment bottom attached rdm-sidebar">
<div class="ui fluid placeholder">
<div class="image header">
<div class="line"></div>
<div class="line"></div>
</div>
<div class="image header">
<div class="line"></div>
<div class="line"></div>
</div>
<div class="image header">
<div class="line"></div>
<div class="line"></div>
</div>
</div>
</div>
</div>
<div class="sidebar-container">
<h2 class="ui medium top attached header mt-0">Details</h2>
<div id="record-details" class="ui segment bottom attached rdm-sidebar">
<dl class="details-list">
<dt class="ui tiny header">DOI
<dd>
<span class="get-badge" data-toggle="tooltip" data-placement="bottom" style="cursor: pointer;"
title="Get the DOI badge!">
<img id='record-doi-badge' data-target="[data-modal='10.5281/zenodo.7860267']"
src="/badge/DOI/10.5281/zenodo.7860267.svg" alt="10.5281/zenodo.7860267" />
</span>
<div id="doi-modal" class="ui modal fade badge-modal" data-modal="10.5281/zenodo.7860267">
<div class="header">DOI Badge</div>
<div class="content">
<h4>
<small>DOI</small>
</h4>
<h4>
<pre>10.5281/zenodo.7860267</pre>
</h4>
<h3 class="ui small header">
Markdown
</h3>
<div class="ui message code">
<pre>[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.7860267.svg)](https://doi.org/10.5281/zenodo.7860267)</pre>
</div>
<h3 class="ui small header">
reStructuredText
</h3>
<div class="ui message code">
<pre>.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.7860267.svg
:target: https://doi.org/10.5281/zenodo.7860267</pre>
</div>
<h3 class="ui small header">
HTML
</h3>
<div class="ui message code">
<pre><a href="https://doi.org/10.5281/zenodo.7860267"><img src="https://zenodo.org/badge/DOI/10.5281/zenodo.7860267.svg" alt="DOI"></a></pre>
</div>
<h3 class="ui small header">
Image URL
</h3>
<div class="ui message code">
<pre>https://zenodo.org/badge/DOI/10.5281/zenodo.7860267.svg</pre>
</div>
<h3 class="ui small header">
Target URL
</h3>
<div class="ui message code">
<pre>https://doi.org/10.5281/zenodo.7860267</pre>
</div>
</div>
</div>
</dd>
<dt class="ui tiny header">Resource type</dt>
<dd>Dataset</dd>
<dt class="ui tiny header">Publisher</dt>
<dd>Zenodo</dd>
</dl>
</div>
</div>
<div class="sidebar-container">
<h2 class="ui medium top attached header mt-0">Rights</h2>
<div id="licenses" class="ui segment bottom attached rdm-sidebar">
<ul class="details-list m-0 p-0">
<li id="license-cc-by-4.0-1" class="has-popup">
<div id="title-cc-by-4.0-1"
class="license clickable"
tabindex="0"
aria-haspopup="dialog"
aria-expanded="false"
role="button"
aria-label="Creative Commons Attribution 4.0 International"
>
<span class="icon-wrap">
<img class="icon" src="/static/icons/licenses/cc-by-icon.svg" alt="cc-by-4.0 icon"/>
</span>
<span class="title-text">
Creative Commons Attribution 4.0 International
</span>
</div>
<div id="description-cc-by-4.0-1"
class="licenses-description ui flowing popup transition hidden"
role="dialog"
aria-labelledby="title-cc-by-4.0-1"
>
<i role="button" tabindex="0" class="close icon text-muted" aria-label="Close"></i>
<div id="license-description-1" class="description">
<span class="text-muted">
The Creative Commons Attribution license allows re-distribution and re-use of a licensed work on the condition that the creator is appropriately credited.
</span>
<a class="license-link" href="https://creativecommons.org/licenses/by/4.0/legalcode" target="_blank" title="Opens in new tab">Read more</a>
</div>
</div>
</li>
</ul>
</div>
</div>
<div class="sidebar-container">
<h2 class="ui medium top attached header mt-0">Citation</h2>
<div id="citation" class="ui segment bottom attached rdm-sidebar">
<div id="recordCitation" data-record='{"access": {"embargo": {"active": false, "reason": null}, "files": "public", "record": "public", "status": "open"}, "created": "2023-04-24T19:11:38.035354+00:00", "custom_fields": {}, "deletion_status": {"is_deleted": false, "status": "P"}, "expanded": {"parent": {"access": {"owned_by": {"active": null, "blocked_at": null, "confirmed_at": null, "email": "", "id": "98477", "is_current_user": false, "links": {"avatar": "https://zenodo.org/api/users/98477/avatar.svg", "records_html": "https://zenodo.org/search/records?q=user:98477", "self": "https://zenodo.org/api/users/98477"}, "profile": {"affiliations": "", "full_name": "Jun Ma"}, "username": "JunMa", "verified_at": null}}}}, "files": {"count": 1, "enabled": true, "entries": {"FLARE22Train.zip": {"access": {"hidden": false}, "checksum": "md5:f6b1a257deb8ad98eb901328b0762cc4", "ext": "zip", "id": "5abb01c3-a3a0-49ea-9636-ed1193a440c4", "key": "FLARE22Train.zip", "links": {"content": "https://zenodo.org/api/records/7860267/files/FLARE22Train.zip/content", "self": "https://zenodo.org/api/records/7860267/files/FLARE22Train.zip"}, "metadata": null, "mimetype": "application/zip", "size": 1480326483, "storage_class": "L"}}, "order": [], "total_bytes": 1480326483}, "id": "7860267", "is_draft": false, "is_published": true, "links": {"access": "https://zenodo.org/api/records/7860267/access", "access_grants": "https://zenodo.org/api/records/7860267/access/grants", "access_links": "https://zenodo.org/api/records/7860267/access/links", "access_request": "https://zenodo.org/api/records/7860267/access/request", "access_users": "https://zenodo.org/api/records/7860267/access/users", "archive": "https://zenodo.org/api/records/7860267/files-archive", "archive_media": "https://zenodo.org/api/records/7860267/media-files-archive", "communities": "https://zenodo.org/api/records/7860267/communities", "communities-suggestions": "https://zenodo.org/api/records/7860267/communities-suggestions", "doi": "https://doi.org/10.5281/zenodo.7860267", "draft": "https://zenodo.org/api/records/7860267/draft", "files": "https://zenodo.org/api/records/7860267/files", "latest": "https://zenodo.org/api/records/7860267/versions/latest", "latest_html": "https://zenodo.org/records/7860267/latest", "media_files": "https://zenodo.org/api/records/7860267/media-files", "parent": "https://zenodo.org/api/records/7860266", "parent_doi": "https://zenodo.org/doi/10.5281/zenodo.7860266", "parent_html": "https://zenodo.org/records/7860266", "requests": "https://zenodo.org/api/records/7860267/requests", "reserve_doi": "https://zenodo.org/api/records/7860267/draft/pids/doi", "self": "https://zenodo.org/api/records/7860267", "self_doi": "https://zenodo.org/doi/10.5281/zenodo.7860267", "self_html": "https://zenodo.org/records/7860267", "self_iiif_manifest": "https://zenodo.org/api/iiif/record:7860267/manifest", "self_iiif_sequence": "https://zenodo.org/api/iiif/record:7860267/sequence/default", "versions": "https://zenodo.org/api/records/7860267/versions"}, "media_files": {"count": 0, "enabled": false, "entries": {}, "order": [], "total_bytes": 0}, "metadata": {"creators": [{"affiliations": [{"name": "JUN"}], "person_or_org": {"family_name": "MA", "identifiers": [{"identifier": "0000-0002-9739-0855", "scheme": "orcid"}], "name": "MA", "type": "personal"}}], "description": "\u003cp\u003eThis dataset was used as the labeled training set in MICCAI FLARE 2022 Challenge https://flare22.grand-challenge.org/.\u003c/p\u003e\n\n\u003cp\u003eThe CT images and pancreas annotations are from http://medicaldecathlon.com/\u003c/p\u003e\n\n\u003cp\u003eThe other organ annotations are from AbdomenCT-1K (research purpose only).\u003c/p\u003e\n\n\u003cp\u003eIf this dataset is useful in your research, please give credit to the following two papers:\u003c/p\u003e\n\n\u003cp\u003eA large annotated medical image dataset for the development and evaluation of segmentation algorithms\u003c/p\u003e\n\n\u003cp\u003ehttps://arxiv.org/abs/1902.09063\u003c/p\u003e\n\n\u003cp\u003eAbdomenCT-1K: Is Abdominal Organ Segmentation a Solved Problem?\u003c/p\u003e\n\n\u003cp\u003ehttps://ieeexplore.ieee.org/document/9497733\u003c/p\u003e", "publication_date": "2023-04-24", "publisher": "Zenodo", "resource_type": {"id": "dataset", "title": {"de": "Datensatz", "en": "Dataset"}}, "rights": [{"description": {"en": "The Creative Commons Attribution license allows re-distribution and re-use of a licensed work on the condition that the creator is appropriately credited."}, "icon": "cc-by-icon", "id": "cc-by-4.0", "props": {"scheme": "spdx", "url": "https://creativecommons.org/licenses/by/4.0/legalcode"}, "title": {"en": "Creative Commons Attribution 4.0 International"}}], "title": "MICCAI FLARE22 Challenge Dataset (50 Labeled Abdomen CT Scans)", "version": "1.0"}, "parent": {"access": {"owned_by": {"user": "98477"}, "settings": {"accept_conditions_text": null, "allow_guest_requests": false, "allow_user_requests": false, "secret_link_expiration": 0}}, "communities": {}, "id": "7860266", "pids": {"doi": {"client": "datacite", "identifier": "10.5281/zenodo.7860266", "provider": "datacite"}}}, "pids": {"doi": {"client": "datacite", "identifier": "10.5281/zenodo.7860267", "provider": "datacite"}, "oai": {"identifier": "oai:zenodo.org:7860267", "provider": "oai"}}, "revision_id": 3, "stats": {"all_versions": {"data_volume": 16678838483961.0, "downloads": 11267, "unique_downloads": 5762, "unique_views": 10698, "views": 12149}, "this_version": {"data_volume": 16505640285450.0, "downloads": 11150, "unique_downloads": 5685, "unique_views": 10536, "views": 11966}}, "status": "published", "ui": {"access_status": {"description_l10n": "The record and files are publicly accessible.", "embargo_date_l10n": null, "icon": "unlock", "id": "open", "message_class": "", "title_l10n": "Open"}, "created_date_l10n_long": "April 24, 2023", "creators": {"affiliations": [[1, "JUN", null]], "creators": [{"affiliations": [[1, "JUN"]], "person_or_org": {"family_name": "MA", "identifiers": [{"identifier": "0000-0002-9739-0855", "scheme": "orcid"}], "name": "MA", "type": "personal"}}]}, "custom_fields": {}, "description_stripped": "This dataset was used as the labeled training set in MICCAI FLARE 2022 Challenge https://flare22.grand-challenge.org/.\n\n\nThe CT images and pancreas annotations are from http://medicaldecathlon.com/\n\n\nThe other organ annotations are from AbdomenCT-1K (research purpose only).\n\n\nIf this dataset is useful in your research, please give credit to the following two papers:\n\n\nA large annotated medical image dataset for the development and evaluation of segmentation algorithms\n\n\nhttps://arxiv.org/abs/1902.09063\n\n\nAbdomenCT-1K: Is Abdominal Organ Segmentation a Solved Problem?\n\n\nhttps://ieeexplore.ieee.org/document/9497733", "is_draft": false, "publication_date_l10n_long": "April 24, 2023", "publication_date_l10n_medium": "Apr 24, 2023", "resource_type": {"id": "dataset", "title_l10n": "Dataset"}, "rights": [{"description_l10n": "The Creative Commons Attribution license allows re-distribution and re-use of a licensed work on the condition that the creator is appropriately credited.", "icon": "cc-by-icon", "id": "cc-by-4.0", "props": {"scheme": "spdx", "url": "https://creativecommons.org/licenses/by/4.0/legalcode"}, "title_l10n": "Creative Commons Attribution 4.0 International"}], "updated_date_l10n_long": "April 25, 2023", "version": "1.0"}, "updated": "2023-04-25T02:26:50.465452+00:00", "versions": {"index": 1, "is_latest": true}}'
data-styles='[["apa", "APA"], ["harvard-cite-them-right", "Harvard"], ["modern-language-association", "MLA"], ["vancouver", "Vancouver"], ["chicago-fullnote-bibliography", "Chicago"], ["ieee", "IEEE"]]'
data-defaultstyle='"apa"'
data-include-deleted='false'>
</div>
</div>
</div>
<div class="sidebar-container">
<h2 class="ui medium top attached header mt-0">Export</h2>
<div id="export-record" class="ui segment bottom attached exports rdm-sidebar">
<div id="recordExportDownload" data-formats='[{"export_url": "/records/7860267/export/json", "name": "JSON"}, {"export_url": "/records/7860267/export/json-ld", "name": "JSON-LD"}, {"export_url": "/records/7860267/export/csl", "name": "CSL"}, {"export_url": "/records/7860267/export/datacite-json", "name": "DataCite JSON"}, {"export_url": "/records/7860267/export/datacite-xml", "name": "DataCite XML"}, {"export_url": "/records/7860267/export/dublincore", "name": "Dublin Core XML"}, {"export_url": "/records/7860267/export/marcxml", "name": "MARCXML"}, {"export_url": "/records/7860267/export/bibtex", "name": "BibTeX"}, {"export_url": "/records/7860267/export/geojson", "name": "GeoJSON"}, {"export_url": "/records/7860267/export/dcat-ap", "name": "DCAT"}, {"export_url": "/records/7860267/export/codemeta", "name": "Codemeta"}, {"export_url": "/records/7860267/export/cff", "name": "Citation File Format"}]'></div>
</div>
</div>
<section
id="upload-info"
role="note"
aria-label="Upload information"
class="sidebar-container ui segment rdm-sidebar text-muted"
>
<h2 class="ui small header text-muted p-0 mb-5"><small>Technical metadata</small></h2>
<dl class="m-0">
<dt class="inline"><small>Created</small></dt>
<dd class="inline">
<small>April 24, 2023</small>
</dd>
<div>
<dt class="rel-mt-1 inline"><small>Modified</small></dt>
<dd class="inline">
<small>April 25, 2023</small>
</dd>
</div>
</dl>
</section>
</aside>
</div>
</div>
<div class="ui container">
<div class="ui relaxed grid">
<div class="two column row">
<div class="sixteen wide tablet eleven wide computer column">
<div class="ui grid">
<div class="centered row rel-mt-1">
<button id="jump-btn" class="jump-to-top ui button labeled icon"
aria-label="Jump to top of page">
<i class="arrow alternate circle up outline icon"></i>
Jump up
</button>
</div>
</div></div>
</div>
</div>
</div>
</div>
</div>
</main>
<footer id="rdm-footer-element">
<div class="footer-top">
<div class="ui container app-rdm-footer">
<div class="ui equal width stackable grid zenodo-footer">
<div class="column">
<h2 class="ui inverted tiny header">About</h2>
<ul class="ui inverted link list">
<li class="item">
<a href="https://about.zenodo.org">About</a>
</li>
<li class="item">
<a href="https://about.zenodo.org/policies">Policies</a>
</li>
<li class="item">
<a href="https://about.zenodo.org/infrastructure">Infrastructure</a>
</li>
<li class="item">
<a href="https://about.zenodo.org/principles">Principles</a>
</li>
<li class="item">
<a href="https://about.zenodo.org/projects/">Projects</a>
</li>
<li class="item">
<a href="https://about.zenodo.org/roadmap/">Roadmap</a>
</li>
<li class="item">
<a href="https://about.zenodo.org/contact">Contact</a>
</li>
</ul>
</div>
<div class="column">
<h2 class="ui inverted tiny header">Blog</h2>
<ul class="ui inverted link list">
<li class="item">
<a href="https://blog.zenodo.org">Blog</a>
</li>
</ul>
</div>
<div class="column">
<h2 class="ui inverted tiny header">Help</h2>
<ul class="ui inverted link list">
<li class="item">
<a href="https://help.zenodo.org">FAQ</a>
</li>
<li class="item">
<a href="https://help.zenodo.org/docs/">Docs</a>
</li>
<li class="item">
<a href="https://help.zenodo.org/guides/">Guides</a>
</li>
<li class="item">
<a href="https://zenodo.org/support">Support</a>
</li>
</ul>
</div>
<div class="column">
<h2 class="ui inverted tiny header">Developers</h2>
<ul class="ui inverted link list">
<li class="item">
<a href="https://developers.zenodo.org">REST API</a>
</li>
<li class="item">
<a href="https://developers.zenodo.org#oai-pmh">OAI-PMH</a>
</li>
</ul>
</div>
<div class="column">
<h2 class="ui inverted tiny header">Contribute</h2>
<ul class="ui inverted link list">
<li class="item">
<a href="https://github.com/zenodo/zenodo-rdm">
<i class="icon external" aria-hidden="true"></i>
GitHub
</a>
</li>
<li class="item">
<a href="/donate">
<i class="icon external" aria-hidden="true"></i>
Donate
</a>
</li>
</ul>
</div>
<div class="six wide column right aligned">