-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdata-station-specification.bib
More file actions
4610 lines (4313 loc) · 478 KB
/
Copy pathdata-station-specification.bib
File metadata and controls
4610 lines (4313 loc) · 478 KB
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
@article{jordan2022selecting,
title = {Selecting {Privacy}-{Enhancing} {Technologies} for {Managing} {Health} {Data} {Use}},
volume = {10},
issn = {2296-2565},
url = {https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8967420/},
doi = {10.3389/fpubh.2022.814163},
abstract = {Privacy protection for health data is more than simply stripping datasets of specific identifiers. Privacy protection increasingly means the application of privacy-enhancing technologies (PETs), also known as privacy engineering. Demands for the application of PETs are not yet met with ease of use or even understanding. This paper provides a scope of the current peer-reviewed evidence regarding the practical use or adoption of various PETs for managing health data privacy. We describe the state of knowledge of PETS for the use and exchange of health data specifically and build a practical perspective on the steps needed to improve the standardization of the application of PETs for diverse uses of health data.},
urldate = {2023-02-04},
journal = {Frontiers in Public Health},
author = {Jordan, Sara and Fontaine, Clara and Hendricks-Sturrup, Rachele},
month = mar,
year = {2022},
pages = {814163},
file = {PubMed Central Full Text PDF:/Users/dkapitan/Zotero/storage/9Z6PVM72/Jordan et al. - 2022 - Selecting Privacy-Enhancing Technologies for Manag.pdf:application/pdf},
}
@article{dereuver2018digital,
title = {The {Digital} {Platform}: {A} {Research} {Agenda}},
volume = {33},
issn = {0268-3962},
shorttitle = {The {Digital} {Platform}},
url = {https://doi.org/10.1057/s41265-016-0033-3},
doi = {10.1057/s41265-016-0033-3},
abstract = {As digital platforms are transforming almost every industry today, they are slowly finding their way into the mainstream information systems (ISs) literature. Digital platforms are a challenging research object because of their distributed nature and intertwinement with institutions, markets and technologies. New research challenges arise as a result of the exponentially growing scale of platform innovation, the increasing complexity of platform architectures and the spread of digital platforms to many different industries. This paper develops a research agenda for digital platforms research in IS. We recommend researchers seek to (1) advance conceptual clarity by providing clear definitions that specify the unit of analysis, degree of digitality and the sociotechnical nature of digital platforms; (2) define the proper scoping of digital platform concepts by studying platforms on different architectural levels and in different industry settings; and (3) advance methodological rigour by employing embedded case studies, longitudinal studies, design research, data-driven modelling and visualisation techniques. Considering current developments in the business domain, we suggest six questions for further research: (1) Are platforms here to stay? (2) How should platforms be designed? (3) How do digital platforms transform industries? (4) How can data-driven approaches inform digital platforms research? (5) How should researchers develop theory for digital platforms? and (6) How do digital platforms affect everyday life?},
language = {en},
number = {2},
urldate = {2023-02-15},
journal = {Journal of Information Technology},
publisher = {SAGE Publications Ltd},
author = {de Reuver, Mark and Sørensen, Carsten and Basole, Rahul C.},
month = jun,
year = {2018},
pages = {124--135},
file = {SAGE PDF Full Text:/Users/dkapitan/Zotero/storage/Z2GNA5YA/de Reuver et al. - 2018 - The Digital Platform A Research Agenda.pdf:application/pdf},
}
@inproceedings{dereuver2022openness,
address = {New York, NY, USA},
series = {{DE} '22},
title = {The openness of data platforms: a research agenda},
isbn = {978-1-4503-9923-4},
shorttitle = {The openness of data platforms},
url = {https://doi.org/10.1145/3565011.3569056},
doi = {10.1145/3565011.3569056},
abstract = {Data platforms are the keystone of the data economy. When opened up, data platforms allow data owners, data consumers and third parties to interact. Yet, openness may also harm business and societal interests. Literature on platform openness does not cover data platforms, and data economy scholars rarely study platform openness. Therefore, this paper develops a research agenda on the openness of data platforms. We explore how data platforms differ from conventional digital platforms (e.g., software platforms). From those differentiating characteristics, we identify areas for future work: (1) The specific characteristics of data require reconceptualizing the object of platform openness; (2) New ways in which data platforms can be opened should be conceptualized; (3) As data platforms are tailored to specific industries, platform-to-platform openness should be a novel unit of analysis; (4) Because opening up data platforms create novel risks, new reasons to (not) open up data platforms should be studied.},
urldate = {2023-02-15},
booktitle = {Proceedings of the 1st {International} {Workshop} on {Data} {Economy}},
publisher = {Association for Computing Machinery},
author = {de Reuver, Mark and Ofe, Hosea and Agahari, Wirawan and Abbas, Antragama Ewa and Zuiderwijk, Anneke},
month = dec,
year = {2022},
keywords = {data ecosystem, data marketplace, data platform, platform openness},
pages = {34--41},
file = {Full Text PDF:/Users/dkapitan/Zotero/storage/CSL6NCAX/de Reuver et al. - 2022 - The openness of data platforms a research agenda.pdf:application/pdf},
}
@inproceedings{choudhury2020personal,
address = {Singapore},
series = {Communications in {Computer} and {Information} {Science}},
title = {Personal {Health} {Train} on {FHIR}: {A} {Privacy} {Preserving} {Federated} {Approach} for {Analyzing} {FAIR} {Data} in {Healthcare}},
isbn = {978-981-15-6315-7},
shorttitle = {Personal {Health} {Train} on {FHIR}},
doi = {10.1007/978-981-15-6315-7_7},
abstract = {Big data and machine learning applications focus on retrieving data on a central location for analysis. However, healthcare data can be sensitive in nature and as such difficult to share and make use for secondary purposes. Healthcare vendors are restricted to share data without proper consent from the patient. There is a rising awareness among individual patients as well regarding sharing their personal information due to ethical, legal and societal problems. The current data-sharing platforms in healthcare do not sufficiently handle these issues. The rationale of the Personal Health Train (PHT) approach shifts the focus from sharing data to sharing processing/analysis applications and their respective results. A prerequisite of the PHT-infrastructure is that the data is FAIR (findable, accessible, interoperable, reusable). The aim of the paper is to describe a methodology of finding the number of patients diagnosed with hypertension and calculate cohort statistics in a privacy-preserving federated manner. The whole process completes without individual patient data leaving the source. For this, we rely on the Fast Healthcare Interoperability Resources (FHIR) standard.},
language = {en},
booktitle = {Machine {Learning}, {Image} {Processing}, {Network} {Security} and {Data} {Sciences}},
publisher = {Springer},
author = {Choudhury, Ananya and van Soest, Johan and Nayak, Stuti and Dekker, Andre},
editor = {Bhattacharjee, Arup and Borgohain, Samir Kr. and Soni, Badal and Verma, Gyanendra and Gao, Xiao-Zhi},
year = {2020},
keywords = {FHIR, FAIR, Personal health train},
pages = {85--95},
file = {Full Text PDF:/Users/dkapitan/Zotero/storage/MX4FY5MX/Choudhury et al. - 2020 - Personal Health Train on FHIR A Privacy Preservin.pdf:application/pdf},
}
@article{beyan2020distributed,
title = {Distributed {Analytics} on {Sensitive} {Medical} {Data}: {The} {Personal} {Health} {Train}},
volume = {2},
issn = {2641-435X},
shorttitle = {Distributed {Analytics} on {Sensitive} {Medical} {Data}},
url = {https://doi.org/10.1162/dint_a_00032},
doi = {10.1162/dint_a_00032},
abstract = {In recent years, as newer technologies have evolved around the healthcare ecosystem, more and more data have been generated. Advanced analytics could power the data collected from numerous sources, both from healthcare institutions, or generated by individuals themselves via apps and devices, and lead to innovations in treatment and diagnosis of diseases; improve the care given to the patient; and empower citizens to participate in the decision-making process regarding their own health and well-being. However, the sensitive nature of the health data prohibits healthcare organizations from sharing the data. The Personal Health Train (PHT) is a novel approach, aiming to establish a distributed data analytics infrastructure enabling the (re)use of distributed healthcare data, while data owners stay in control of their own data. The main principle of the PHT is that data remain in their original location, and analytical tasks visit data sources and execute the tasks. The PHT provides a distributed, flexible approach to use data in a network of participants, incorporating the FAIR principles. It facilitates the responsible use of sensitive and/or personal data by adopting international principles and regulations. This paper presents the concepts and main components of the PHT and demonstrates how it complies with FAIR principles.},
number = {1-2},
urldate = {2023-02-16},
journal = {Data Intelligence},
author = {Beyan, Oya and Choudhury, Ananya and van Soest, Johan and Kohlbacher, Oliver and Zimmermann, Lukas and Stenzhorn, Holger and Karim, Md. Rezaul and Dumontier, Michel and Decker, Stefan and da Silva Santos, Luiz Olavo Bonino and Dekker, Andre},
month = jan,
year = {2020},
pages = {96--107},
file = {Full Text PDF:/Users/dkapitan/Zotero/storage/SGX995AZ/Beyan et al. - 2020 - Distributed Analytics on Sensitive Medical Data T.pdf:application/pdf},
}
@article{rieke2020future,
title = {The future of digital health with federated learning},
volume = {3},
copyright = {2020 The Author(s)},
issn = {2398-6352},
url = {https://www.nature.com/articles/s41746-020-00323-1},
doi = {10.1038/s41746-020-00323-1},
abstract = {Data-driven machine learning (ML) has emerged as a promising approach for building accurate and robust statistical models from medical data, which is collected in huge volumes by modern healthcare systems. Existing medical data is not fully exploited by ML primarily because it sits in data silos and privacy concerns restrict access to this data. However, without access to sufficient data, ML will be prevented from reaching its full potential and, ultimately, from making the transition from research to clinical practice. This paper considers key factors contributing to this issue, explores how federated learning (FL) may provide a solution for the future of digital health and highlights the challenges and considerations that need to be addressed.},
language = {en},
number = {1},
urldate = {2023-04-23},
journal = {npj Digital Medicine},
publisher = {Nature Publishing Group},
author = {Rieke, Nicola and Hancox, Jonny and Li, Wenqi and Milletarì, Fausto and Roth, Holger R. and Albarqouni, Shadi and Bakas, Spyridon and Galtier, Mathieu N. and Landman, Bennett A. and Maier-Hein, Klaus and Ourselin, Sébastien and Sheller, Micah and Summers, Ronald M. and Trask, Andrew and Xu, Daguang and Baust, Maximilian and Cardoso, M. Jorge},
month = sep,
year = {2020},
note = {Number: 1},
keywords = {Medical research, Medical imaging},
pages = {1--7},
file = {Full Text PDF:/Users/dkapitan/Zotero/storage/DJI9BHQP/Rieke et al. - 2020 - The future of digital health with federated learni.pdf:application/pdf},
}
@article{mehl2021who,
title = {{WHO} {SMART} guidelines: optimising country-level use of guideline recommendations in the digital age},
volume = {3},
issn = {2589-7500},
shorttitle = {{WHO} {SMART} guidelines},
url = {https://www.thelancet.com/journals/landig/article/PIIS2589-7500(21)00038-8/fulltext},
doi = {10.1016/S2589-7500(21)00038-8},
language = {English},
number = {4},
urldate = {2023-06-21},
journal = {The Lancet Digital Health},
publisher = {Elsevier},
author = {Mehl, Garrett and Tunçalp, Özge and Ratanaprayul, Natschja and Tamrat, Tigest and Barreix, María and Lowrance, David and Bartolomeos, Kidist and Say, Lale and Kostanjsek, Nenad and Jakob, Robert and Grove, John and Mariano, Bernardo and Swaminathan, Soumya},
month = apr,
year = {2021},
pages = {e213--e216},
file = {Full Text PDF:/Users/dkapitan/Zotero/storage/ZQH6V9GJ/Mehl et al. - 2021 - WHO SMART guidelines optimising country-level use.pdf:application/pdf},
}
@article{prainsack2023beyond,
title = {Beyond {Individual} {Rights}: {How} {Data} {Solidarity} {Gives} {People} {Meaningful} {Control} over {Data}},
volume = {23},
issn = {1526-5161, 1536-0075},
shorttitle = {Beyond {Individual} {Rights}},
url = {https://www.tandfonline.com/doi/full/10.1080/15265161.2023.2256267},
doi = {10.1080/15265161.2023.2256267},
language = {en},
number = {11},
urldate = {2023-11-11},
journal = {The American Journal of Bioethics},
author = {Prainsack, Barbara and El-Sayed, Seliem},
month = nov,
year = {2023},
pages = {36--39},
file = {prainsack2023beyond.pdf:/Users/dkapitan/Zotero/storage/T542DFXH/prainsack2023beyond.pdf:application/pdf},
}
@article{pedreira2023composable,
title = {The {Composable} {Data} {Management} {System} {Manifesto}},
volume = {16},
issn = {2150-8097},
url = {https://dl.acm.org/doi/10.14778/3603581.3603604},
doi = {10.14778/3603581.3603604},
abstract = {The requirement for specialization in data management systems has evolved faster than our software development practices. After decades of organic growth, this situation has created a siloed landscape composed of hundreds of products developed and maintained as monoliths, with limited reuse between systems. This fragmentation has resulted in developers often reinventing the wheel, increased maintenance costs, and slowed down innovation. It has also affected the end users, who are often required to learn the idiosyncrasies of dozens of incompatible SQL and non-SQL API dialects, and settle for systems with incomplete functionality and inconsistent semantics. In this vision paper, considering the recent popularity of open source projects aimed at standardizing different aspects of the data stack, we advocate for a paradigm shift in how data management systems are designed. We believe that by decomposing these into a modular stack of reusable components, development can be streamlined while creating a more consistent experience for users. Towards that goal, we describe the state-ofthe-art, principal open source technologies, and highlight open questions and areas where additional research is needed. We hope this work will foster collaboration, motivate further research, and promote a more composable future for data management.},
language = {en},
number = {10},
urldate = {2023-12-27},
journal = {Proceedings of the VLDB Endowment},
author = {Pedreira, Pedro and Erling, Orri and Karanasos, Konstantinos and Schneider, Scott and McKinney, Wes and Valluri, Satya R and Zait, Mohamed and Nadeau, Jacques},
month = jun,
year = {2023},
pages = {2679--2685},
file = {Pedreira et al. - 2023 - The Composable Data Management System Manifesto.pdf:/Users/dkapitan/Zotero/storage/SVVTZQSR/Pedreira et al. - 2023 - The Composable Data Management System Manifesto.pdf:application/pdf},
}
@article{hai2023data,
title = {Data {Lakes}: {A} {Survey} of {Functions} and {Systems}},
volume = {35},
issn = {1558-2191},
shorttitle = {Data {Lakes}},
url = {https://ieeexplore.ieee.org/abstract/document/10107808},
doi = {10.1109/TKDE.2023.3270101},
abstract = {Data lakes are becoming increasingly prevalent for Big Data management and data analytics. In contrast to traditional ‘schema-on-write’ approaches such as data warehouses, data lakes are repositories storing raw data in its original formats and providing a common access interface. Despite the strong interest raised from both academia and industry, there is a large body of ambiguity regarding the definition, functions and available technologies for data lakes. A complete, coherent picture of data lake challenges and solutions is still missing. This survey reviews the development, architectures, and systems of data lakes. We provide a comprehensive overview of research questions for designing and building data lakes. We classify the existing approaches and systems based on their provided functions for data lakes, which makes this survey a useful technical reference for designing, implementing and deploying data lakes. We hope that the thorough comparison of existing solutions and the discussion of open research challenges in this survey will motivate the future development of data lake research and practice.},
number = {12},
urldate = {2024-01-11},
journal = {IEEE Transactions on Knowledge and Data Engineering},
author = {Hai, Rihan and Koutras, Christos and Quix, Christoph and Jarke, Matthias},
month = dec,
year = {2023},
note = {Conference Name: IEEE Transactions on Knowledge and Data Engineering},
pages = {12571--12590},
file = {IEEE Xplore Full Text PDF:/Users/dkapitan/Zotero/storage/R87AQA44/Hai et al. - 2023 - Data Lakes A Survey of Functions and Systems.pdf:application/pdf},
}
@incollection{curry2021reference,
address = {Cham},
title = {A {Reference} {Model} for {Big} {Data} {Technologies}},
isbn = {978-3-030-68176-0},
url = {https://doi.org/10.1007/978-3-030-68176-0_6},
doi = {10.1007/978-3-030-68176-0_6},
abstract = {The Big Data Value (BDV) Reference Model has been developed with input from technical experts and stakeholders along the whole big data value chain. The BDV Reference Model may serve as a common reference framework to locate big data technologies on the overall IT stack. It addresses the main technical concerns and aspects to be considered for big data value systems. The BDV Reference Model enables the mapping of existing and future data technologies within a common framework. Within this chapter, we detail the reference model in more detail and show how it can be used to manage a portfolio of research and innovation projects.},
language = {en},
urldate = {2024-01-11},
booktitle = {The {Elements} of {Big} {Data} {Value}: {Foundations} of the {Research} and {Innovation} {Ecosystem}},
publisher = {Springer International Publishing},
author = {Curry, Edward and Metzger, Andreas and Berre, Arne J. and Monzón, Andrés and Boggio-Marzet, Alessandra},
editor = {Curry, Edward and Metzger, Andreas and Zillner, Sonja and Pazzaglia, Jean-Christophe and García Robles, Ana},
year = {2021},
keywords = {Data management, Data protection, Data processing, Reference model, Big data technologies, Data analysis, Data visualisation},
pages = {127--151},
file = {Full Text PDF:/Users/dkapitan/Zotero/storage/3HMH2BE9/Curry et al. - 2021 - A Reference Model for Big Data Technologies.pdf:application/pdf},
}
@misc{mazumdar2023data,
title = {The {Data} {Lakehouse}: {Data} {Warehousing} and {More}},
shorttitle = {The {Data} {Lakehouse}},
url = {http://arxiv.org/abs/2310.08697},
abstract = {Relational Database Management Systems designed for Online Analytical Processing (RDBMS-OLAP) have been foundational to democratizing data and enabling analytical use cases such as business intelligence and reporting for many years. However, RDBMS-OLAP systems present some well-known challenges. They are primarily optimized only for relational workloads, lead to proliferation of data copies which can become unmanageable, and since the data is stored in proprietary formats, it can lead to vendor lock-in, restricting access to engines, tools, and capabilities beyond what the vendor offers. As the demand for data-driven decision making surges, the need for a more robust data architecture to address these challenges becomes ever more critical. Cloud data lakes have addressed some of the shortcomings of RDBMS-OLAP systems, but they present their own set of challenges. More recently, organizations have often followed a two-tier architectural approach to take advantage of both these platforms, leveraging both cloud data lakes and RDBMS-OLAP systems. However, this approach brings additional challenges, complexities, and overhead. This paper discusses how a data lakehouse, a new architectural approach, achieves the same benefits of an RDBMS-OLAP and cloud data lake combined, while also providing additional advantages. We take today's data warehousing and break it down into implementation independent components, capabilities, and practices. We then take these aspects and show how a lakehouse architecture satisfies them. Then, we go a step further and discuss what additional capabilities and benefits a lakehouse architecture provides over an RDBMS-OLAP.},
urldate = {2024-01-11},
publisher = {arXiv},
author = {Mazumdar, Dipankar and Hughes, Jason and Onofre, J. B.},
month = oct,
year = {2023},
note = {arXiv:2310.08697 [cs]},
keywords = {Computer Science - Databases},
file = {arXiv.org Snapshot:/Users/dkapitan/Zotero/storage/AIKBHRKJ/2310.html:text/html;Full Text PDF:/Users/dkapitan/Zotero/storage/IV9Y5T4V/Mazumdar et al. - 2023 - The Data Lakehouse Data Warehousing and More.pdf:application/pdf},
}
@misc{openhie,
title = {{OpenHIE} {Framework} v5.2-en},
url = {https://ohie.org/},
abstract = {OpenHIE is a community of individuals who strive to develop health information exchanges that improve patient care, health, and so much more.},
language = {en-US},
urldate = {2024-08-27},
month = aug,
year = {2024},
file = {Snapshot:/Users/dkapitan/Zotero/storage/55NPDMZ3/ohie.org.html:text/html},
}
@article{scheibner2021revolutionizing,
title = {Revolutionizing {Medical} {Data} {Sharing} {Using} {Advanced} {Privacy}-{Enhancing} {Technologies}: {Technical}, {Legal}, and {Ethical} {Synthesis}},
volume = {23},
shorttitle = {Revolutionizing {Medical} {Data} {Sharing} {Using} {Advanced} {Privacy}-{Enhancing} {Technologies}},
url = {https://www.jmir.org/2021/2/e25120},
doi = {10.2196/25120},
abstract = {Multisite medical data sharing is critical in modern clinical practice and medical research. The challenge is to conduct data sharing that preserves individual privacy and data utility. The shortcomings of traditional privacy-enhancing technologies mean that institutions rely upon bespoke data sharing contracts. The lengthy process and administration induced by these contracts increases the inefficiency of data sharing and may disincentivize important clinical treatment and medical research.
This paper provides a synthesis between 2 novel advanced privacy-enhancing technologies—homomorphic encryption and secure multiparty computation (defined together as multiparty homomorphic encryption). These privacy-enhancing technologies provide a mathematical guarantee of privacy, with multiparty homomorphic encryption providing a performance advantage over separately using homomorphic encryption or secure multiparty computation. We argue multiparty homomorphic encryption fulfills legal requirements for medical data sharing under the European Union’s General Data Protection Regulation which has set a global benchmark for data protection. Specifically, the data processed and shared using multiparty homomorphic encryption can be considered anonymized data. We explain how multiparty homomorphic encryption can reduce the reliance upon customized contractual measures between institutions. The proposed approach can accelerate the pace of medical research while offering additional incentives for health care and research institutes to employ common data interoperability standards.},
language = {EN},
number = {2},
urldate = {2024-02-05},
journal = {Journal of Medical Internet Research},
publisher = {JMIR Publications Inc., Toronto, Canada},
author = {Scheibner, James and Raisaro, Jean Louis and Troncoso-Pastoriza, Juan Ramón and Ienca, Marcello and Fellay, Jacques and Vayena, Effy and Hubaux, Jean-Pierre},
month = feb,
year = {2021},
note = {Company: Journal of Medical Internet Research
Distributor: Journal of Medical Internet Research
Institution: Journal of Medical Internet Research
Label: Journal of Medical Internet Research},
pages = {e25120},
file = {Full Text:/Users/dkapitan/Zotero/storage/TDJ64DAV/Scheibner et al. - 2021 - Revolutionizing Medical Data Sharing Using Advance.pdf:application/pdf;Snapshot:/Users/dkapitan/Zotero/storage/QNV7X8TJ/e25120.html:text/html},
}
@article{venable2016feds,
title = {{FEDS}: a {Framework} for {Evaluation} in {Design} {Science} {Research}},
volume = {25},
issn = {1476-9344},
shorttitle = {{FEDS}},
url = {https://doi.org/10.1057/ejis.2014.36},
doi = {10.1057/ejis.2014.36},
abstract = {Evaluation of design artefacts and design theories is a key activity in Design Science Research (DSR), as it provides feedback for further development and (if done correctly) assures the rigour of the research. However, the extant DSR literature provides insufficient guidance on evaluation to enable Design Science Researchers to effectively design and incorporate evaluation activities into a DSR project that can achieve DSR goals and objectives. To address this research gap, this research paper develops, explicates, and provides evidence for the utility of a Framework for Evaluation in Design Science (FEDS) together with a process to guide design science researchers in developing a strategy for evaluating the artefacts they develop within a DSR project. A FEDS strategy considers why, when, how, and what to evaluate. FEDS includes a two-dimensional characterisation of DSR evaluation episodes (particular evaluations), with one dimension being the functional purpose of the evaluation (formative or summative) and the other dimension being the paradigm of the evaluation (artificial or naturalistic). The FEDS evaluation design process is comprised of four steps: (1) explicate the goals of the evaluation, (2) choose the evaluation strategy or strategies, (3) determine the properties to evaluate, and (4) design the individual evaluation episode(s). The paper illustrates the framework with two examples and provides evidence of its utility via a naturalistic, summative evaluation through its use on an actual DSR project.},
language = {en},
number = {1},
urldate = {2024-02-07},
journal = {European Journal of Information Systems},
author = {Venable, John and Pries-Heje, Jan and Baskerville, Richard},
month = jan,
year = {2016},
keywords = {research methodology, artefact evaluation, Design Science Research, information systems evaluation, research design, utility evaluation},
pages = {77--89},
file = {Full Text PDF:/Users/dkapitan/Zotero/storage/C42M7QGN/Venable et al. - 2016 - FEDS a Framework for Evaluation in Design Science.pdf:application/pdf},
}
@article{mehl2023fullstac,
title = {A full-{STAC} remedy for global digital health transformation: open standards, technologies, architectures and content},
volume = {1},
issn = {2754-4591},
shorttitle = {A full-{STAC} remedy for global digital health transformation},
url = {https://doi.org/10.1093/oodh/oqad018},
doi = {10.1093/oodh/oqad018},
abstract = {The global digital health ecosystem is project-centric: point solutions are developed for vertical health programs and financed through vertical funding allocations. This results in data fragmentation and technology lock-in, compromising health care delivery. A convergence of trends enabled by interoperability and digital governance makes possible a shift towards person-focused health. Together, open Standards, open Technologies, open Architectures and open Content represent a next-generation ‘full-STAC’ remedy for digital health transformation. Local developers and implementers can avoid reinventing the wheel, and instead build digital tools suited to local needs—where data travels with an individual over time, evidence-based practice is easily integrated, and insights are gleaned from harmonized data. This is the culmination of the vision endorsed by 194 WHO Member States in the Global Strategy on Digital Health 2020 to 2025.},
urldate = {2024-02-09},
journal = {Oxford Open Digital Health},
author = {Mehl, Garrett L and Seneviratne, Martin G and Berg, Matt L and Bidani, Suhel and Distler, Rebecca L and Gorgens, Marelize and Kallander, Karin E and Labrique, Alain B and Landry, Mark S and Leitner, Carl and Lubell-Doughtie, Peter B and Marcelo, Alvin D and Matias, Yossi and Nelson, Jennifer and Nguyen, Von and Nsengimana, Jean Philbert and Orton, Maeghan and Otzoy Garcia, Daniel R and Oyaole, Daniel R and Ratanaprayul, Natschja and Roth, Susann and Schaefer, Merrick P and Settle, Dykki and Tang, Jing and Tien-Wahser, Barakissa and Wanyee, Steven and Hersch, Fred},
month = jan,
year = {2023},
pages = {oqad018},
file = {Full Text PDF:/Users/dkapitan/Zotero/storage/4D3EIB6H/Mehl et al. - 2023 - A full-STAC remedy for global digital health trans.pdf:application/pdf;Snapshot:/Users/dkapitan/Zotero/storage/9ILKUCUU/7475299.html:text/html},
}
@article{cascini2024health,
title = {Health data sharing attitudes towards primary and secondary use of data: a systematic review},
volume = {71},
issn = {2589-5370},
shorttitle = {Health data sharing attitudes towards primary and secondary use of data},
url = {https://www.sciencedirect.com/science/article/pii/S2589537024001305},
doi = {10.1016/j.eclinm.2024.102551},
abstract = {Background
To receive the best care, people share their health data (HD) with their health practitioners (known as sharing HD for primary purposes). However, during the past two decades, sharing for other (i.e., secondary) purposes has become of great importance in numerous fields, including public health, personalized medicine, research, and development. We aimed to conduct the first comprehensive overview of all studies that investigated people's HD sharing attitudes—along with associated barriers/motivators and significant influencing factors—for all data types and across both primary and secondary uses.
Methods
We searched PubMed, MEDLINE, PsycINFO, Web of Science, EMBASE, and CINAHL for relevant studies published in English between database inception and February 28, 2023, using a predefined set of keywords. Studies were included, regardless of their design, if they reported outcomes related to attitudes towards sharing HD. We extracted key data from the included studies, including the type of HD involved and findings related to: HD sharing attitudes (either in general or depending on type of data/user); barriers/motivators/benefits/concerns of the study participants; and sociodemographic and other variables that could impact HD sharing behaviour. The qualitative synthesis was conducted by dividing the studies according to the data type (resulting in five subgroups) as well as the purpose the data sharing was focused on (primary, secondary or both). The Newcastle–Ottawa Scale (NOS) was used to assess the quality of non-randomised studies. This work was registered with PROSPERO, CRD42023413822.
Findings
Of 2109 studies identified through our search, 116 were included in the qualitative synthesis, yielding a total of 228,501 participants and various types of HD represented: person-generated HD (n = 17 studies and 10,771 participants), personal HD in general (n = 69 studies and 117,054 participants), Biobank data (n = 7 studies and 27,073 participants), genomic data (n = 13 studies and 54,716 participants), and miscellaneous data (n = 10 studies and 18,887 participants). The majority of studies had a moderate level of quality (83 [71.6\%] of 116 studies), but varying levels of quality were observed across the included studies. Overall, studies suggest that sharing intentions for primary purposes were observed to be high regardless of data type, and it was higher than sharing intentions for secondary purposes. Sharing for secondary purposes yielded variable findings, where both the highest and the lowest intention rates were observed in the case of studies that explored sharing biobank data (98\% and 10\%, respectively). Several influencing factors on sharing intentions were identified, such as the type of data recipient, data, consent. Further, concerns related to data sharing that were found to be mutual for all data types included privacy, security, and data access/control, while the perceived benefits included those related to improvements in healthcare. Findings regarding attitudes towards sharing varied significantly across sociodemographic factors and depended on data type and type of use. In most cases, these findings were derived from single studies and therefore warrant confirmations from additional studies.
Interpretation
Sharing health data is a complex issue that is influenced by various factors (the type of health data, the intended use, the data recipient, among others) and these insights could be used to overcome barriers, address people's concerns, and focus on spreading awareness about the data sharing process and benefits.
Funding
None.},
urldate = {2024-03-21},
journal = {eClinicalMedicine},
author = {Cascini, Fidelia and Pantovic, Ana and Al-Ajlouni, Yazan A. and Puleo, Valeria and De Maio, Lucia and Ricciardi, Walter},
month = may,
year = {2024},
keywords = {Data sharing, Biobank, Genomic data, Person-generated data, Personal health data, Secondary use},
pages = {102551},
file = {cascini2024health.pdf:/Users/dkapitan/Zotero/storage/VILMTDEP/cascini2024health.pdf:application/pdf;ScienceDirect Snapshot:/Users/dkapitan/Zotero/storage/2CFANZZK/S2589537024001305.html:text/html},
}
@article{abbas2021business,
title = {Business {Data} {Sharing} through {Data} {Marketplaces}: {A} {Systematic} {Literature} {Review}},
shorttitle = {Business {Data} {Sharing} through {Data} {Marketplaces}},
url = {https://aisel.aisnet.org/bled2021/13},
journal = {BLED 2021 Proceedings},
author = {Abbas, Antragama Ewa and Agahari, Wirawan and Ven, Montijn van de and Zuiderwijk, Anneke and Reuver, Mark de},
month = jan,
year = {2021},
file = {"Business Data Sharing through Data Marketplaces\: A Systematic Literatu" by Antragama Ewa Abbas, Wirawan Agahari et al.:/Users/dkapitan/Zotero/storage/NS4TWGF4/13.html:text/html},
}
@article{sein2011action,
title = {Action {Design} {Research}},
volume = {35},
doi = {10.2307/23043488},
abstract = {Design research (DR) positions information technology artifacts at the core of the Information Systems discipline. However, dominant DR thinking takes a technological view of the IT artifact, paying scant attention to its shaping by the organizational context. Consequently, existing DR methods focus on building the artifact and relegate evaluation to a subsequent and separate phase. They value technological rigor at the cost of organizational relevance, and fail to recognize that the artifact emerges from interaction with the organizational context even when its initial design is guided by the researchers' intent. We propose action design research (ADR) as a new DR method to address this problem. ADR reflects the premise that IT artifacts are ensembles shaped by the organizational context during development and use. The method conceptualizes the research process as containing the inseparable and inherently interwoven activities of building the IT artifact, intervening in the organization, and evaluating it concurrently. The essay describes the stages of ADR and associated principles that encapsulate its underlying beliefs and values. We illustrate ADR through a case of competence management at Volvo IT.},
journal = {MIS Quarterly},
author = {Sein, Maung and Henfridsson, Ola and Purao, Sandeep and Rossi, Matti and Lindgren, Rikard},
month = mar,
year = {2011},
pages = {37--56},
file = {Sein-ActionDesignResearch-2011:/Users/dkapitan/Zotero/storage/GUUY9RV9/Sein-ActionDesignResearch-2011.pdf:application/pdf},
}
@article{gruendner2022architecture,
title = {The {Architecture} of a {Feasibility} {Query} {Portal} for {Distributed} {COVID}-19 {Fast} {Healthcare} {Interoperability} {Resources} ({FHIR}) {Patient} {Data} {Repositories}: {Design} and {Implementation} {Study}},
volume = {10},
copyright = {This is an open-access article distributed under the terms of the Creative Commons Attribution License (https://creativecommons.org/licenses/by/4.0/), which permits unrestricted use, distribution, and reproduction in any medium, provided the original work, first published JMIR Medical Informatics, is properly cited. The complete bibliographic information, a link to the original publication on https://medinform.jmir.org/, as well as this copyright and license information must be included.},
shorttitle = {The {Architecture} of a {Feasibility} {Query} {Portal} for {Distributed} {COVID}-19 {Fast} {Healthcare} {Interoperability} {Resources} ({FHIR}) {Patient} {Data} {Repositories}},
url = {https://medinform.jmir.org/2022/5/e36709},
doi = {10.2196/36709},
abstract = {Background: An essential step in any medical research project after identifying the research question is to determine if there are sufficient patients available for a study and where to find them. Pursuing digital feasibility queries on available patient data registries has proven to be an excellent way of reusing existing real-world data sources. To support multicentric research, these feasibility queries should be designed and implemented to run across multiple sites and securely access local data. Working across hospitals usually involves working with different data formats and vocabularies. Recently, the Fast Healthcare Interoperability Resources (FHIR) standard was developed by Health Level Seven to address this concern and describe patient data in a standardized format. The Medical Informatics Initiative in Germany has committed to this standard and created data integration centers, which convert existing data into the FHIR format at each hospital. This partially solves the interoperability problem; however, a distributed feasibility query platform for the FHIR standard is still missing.
Objective: This study described the design and implementation of the components involved in creating a cross-hospital feasibility query platform for researchers based on FHIR resources. This effort was part of a large COVID-19 data exchange platform and was designed to be scalable for a broad range of patient data.
Methods: We analyzed and designed the abstract components necessary for a distributed feasibility query. This included a user interface for creating the query, backend with an ontology and terminology service, middleware for query distribution, and FHIR feasibility query execution service.
Results: We implemented the components described in the Methods section. The resulting solution was distributed to 33 German university hospitals. The functionality of the comprehensive network infrastructure was demonstrated using a test data set based on the German Corona Consensus Data Set. A performance test using specifically created synthetic data revealed the applicability of our solution to data sets containing millions of FHIR resources. The solution can be easily deployed across hospitals and supports feasibility queries, combining multiple inclusion and exclusion criteria using standard Health Level Seven query languages such as Clinical Quality Language and FHIR Search. Developing a platform based on multiple microservices allowed us to create an extendable platform and support multiple Health Level Seven query languages and middleware components to allow integration with future directions of the Medical Informatics Initiative.
Conclusions: We designed and implemented a feasibility platform for distributed feasibility queries, which works directly on FHIR-formatted data and distributed it across 33 university hospitals in Germany. We showed that developing a feasibility platform directly on the FHIR standard is feasible.},
language = {EN},
number = {5},
urldate = {2024-05-27},
journal = {JMIR Medical Informatics},
publisher = {JMIR Publications Inc., Toronto, Canada},
author = {Gruendner, Julian and Deppenwiese, Noemi and Folz, Michael and Köhler, Thomas and Kroll, Björn and Prokosch, Hans-Ulrich and Rosenau, Lorenz and Rühle, Mathias and Scheidl, Marc-Anton and Schüttler, Christina and Sedlmayr, Brita and Twrdik, Alexander and Kiel, Alexander and Majeed, Raphael W.},
month = may,
year = {2022},
note = {Company: JMIR Medical Informatics
Distributor: JMIR Medical Informatics
Institution: JMIR Medical Informatics
Label: JMIR Medical Informatics},
pages = {e36709},
file = {Full Text:/Users/dkapitan/Zotero/storage/JWTLQ68A/Gruendner et al. - 2022 - The Architecture of a Feasibility Query Portal for.pdf:application/pdf},
}
@article{bergman2022business,
title = {Business model archetypes for data marketplaces in the automotive industry},
volume = {32},
issn = {1422-8890},
url = {https://doi.org/10.1007/s12525-022-00547-x},
doi = {10.1007/s12525-022-00547-x},
abstract = {Policymakers and analysts are heavily promoting data marketplaces to foster data trading between companies. Existing business model literature covers individually owned, multilateral data marketplaces. However, these particular types of data marketplaces hardly reach commercial exploitation. This paper develops business model archetypes for the full array of data marketplace types, ranging from private to independent ownership and from a hierarchical to a market orientation. Through exploratory interviews and case analyses, we create a business model taxonomy. Patterns in our taxonomy reveal four business model archetypes. We find that privately-owned data marketplaces with hierarchical orientation apply the aggregating data marketplace archetype. Consortium-owned data marketplaces apply the archetypes of aggregating data marketplace with additional brokering service and consulting data marketplace. Independently owned data marketplaces with market orientation apply the facilitating data marketplace archetype. Our results provide a basis for configurational theory that explains the performance of data marketplace business models. Our results also provide a basis for specifying boundary conditions for theory on data marketplace business models, as, for instance, the importance of network effects differs strongly between the archetypes.},
language = {en},
number = {2},
urldate = {2024-05-27},
journal = {Electronic Markets},
author = {Bergman, Rômy and Abbas, Antragama Ewa and Jung, Sven and Werker, Claudia and de Reuver, Mark},
month = jun,
year = {2022},
keywords = {L10, L22, L86, L89, Z00},
pages = {747--765},
file = {Full Text PDF:/Users/dkapitan/Zotero/storage/ID3JBSXD/Bergman et al. - 2022 - Business model archetypes for data marketplaces in.pdf:application/pdf},
}
@article{demast2022analytical,
title = {Analytical {Problem} {Solving} {Based} on {Causal}, {Correlational} and {Deductive} {Models}},
issn = {0003-1305},
url = {https://doi.org/10.1080/00031305.2021.2023633},
doi = {10.1080/00031305.2021.2023633},
journal = {The American Statistician},
publisher = {Taylor \& Francis},
author = {de Mast, Jeroen and Steiner, Stefan H. and Nuijten, Wim P. M. and Kapitan, Daniel},
month = jan,
year = {2022},
keywords = {Machine learning, Business analytics, Causal inference, Operations research, Predictive modeling, Prescriptive analytics, Problem solving},
pages = {1--11},
file = {00031305.2021:/Users/dkapitan/Zotero/storage/QKE3R3BT/00031305.2021.html:text/html;de Mast et al. - 2022 - Analytical Problem Solving Based on Causal, Correl.pdf:/Users/dkapitan/Zotero/storage/WBL5J2BZ/de Mast et al. - 2022 - Analytical Problem Solving Based on Causal, Correl.pdf:application/pdf;de Mast et al. - 2022 - Analytical Problem Solving Based on Causal, Correl.pdf:/Users/dkapitan/Zotero/storage/TSQD6J5V/de Mast et al. - 2022 - Analytical Problem Solving Based on Causal, Correl.pdf:application/pdf},
}
@article{teo2024federateda,
title = {Federated machine learning in healthcare: {A} systematic review on clinical applications and technical architecture},
volume = {5},
issn = {26663791},
shorttitle = {Federated machine learning in healthcare},
url = {https://linkinghub.elsevier.com/retrieve/pii/S2666379124000429},
doi = {10.1016/j.xcrm.2024.101419},
abstract = {Federated learning (FL) is a distributed machine learning framework that is gaining traction in view of increasing health data privacy protection needs. By conducting a systematic review of FL applications in healthcare, we identify relevant articles in scientific, engineering, and medical journals in English up to August 31st, 2023. Out of a total of 22,693 articles under review, 612 articles are included in the final analysis. The majority of articles are proof-of-concepts studies, and only 5.2\% are studies with real-life application of FL. Radiology and internal medicine are the most common specialties involved in FL. FL is robust to a variety of machine learning models and data types, with neural networks and medical imaging being the most common, respectively. We highlight the need to address the barriers to clinical translation and to assess its realworld impact in this new digital data-driven healthcare scene.},
language = {en},
number = {2},
urldate = {2024-06-03},
journal = {Cell Reports Medicine},
author = {Teo, Zhen Ling and Jin, Liyuan and Liu, Nan and Li, Siqi and Miao, Di and Zhang, Xiaoman and Ng, Wei Yan and Tan, Ting Fang and Lee, Deborah Meixuan and Chua, Kai Jie and Heng, John and Liu, Yong and Goh, Rick Siow Mong and Ting, Daniel Shu Wei},
month = feb,
year = {2024},
pages = {101419},
file = {Teo et al. - 2024 - Federated machine learning in healthcare A system.pdf:/Users/dkapitan/Zotero/storage/84BC73II/Teo et al. - 2024 - Federated machine learning in healthcare A system.pdf:application/pdf},
}
@article{agahari2022it,
title = {It is not (only) about privacy: {How} multi-party computation redefines control, trust, and risk in data sharing},
issn = {1422-8890},
shorttitle = {It is not (only) about privacy},
url = {https://doi.org/10.1007/s12525-022-00572-w},
doi = {10.1007/s12525-022-00572-w},
abstract = {Firms are often reluctant to share data because of mistrust, concerns over control, and other risks. Multi-party computation (MPC) is a new technique to compute meaningful insights without having to transfer data. This paper investigates if MPC affects known antecedents for data sharing decisions: control, trust, and risks. Through 23 qualitative interviews in the automotive industry, we find that MPC (1) enables new ways of technology-based control, (2) reduces the need for inter-organizational trust, and (3) prevents losing competitive advantage due to data leakage. However, MPC also creates the need to trust technology and introduces new risks of data misuse. These impacts arise if firms perceive benefits from sharing data, have high organizational readiness, and perceive data as non-sensitive. Our findings show that known antecedents of data sharing should be specified differently with MPC in place. Furthermore, we suggest reframing MPC as a data collaboration technology beyond enhancing privacy.},
language = {en},
urldate = {2022-08-01},
journal = {Electronic Markets},
author = {Agahari, Wirawan and Ofe, Hosea and de Reuver, Mark},
month = jul,
year = {2022},
keywords = {L86, Control, Data sharing, Multi-party computation, Privacy-enhancing technology, Risk, Trust},
file = {Full Text PDF:/Users/dkapitan/Zotero/storage/UEAXXGDX/Agahari et al. - 2022 - It is not (only) about privacy How multi-party co.pdf:application/pdf},
}
@misc{federatedb,
title = {A federated architecture for information management {\textbar} {ACM} {Transactions} on {Information} {Systems}},
url = {https://dl-acm-org.dianus.libr.tue.nl/doi/abs/10.1145/4229.4233},
urldate = {2024-05-11},
file = {A federated architecture for information management | ACM Transactions on Information Systems:/Users/dkapitan/Zotero/storage/WW7Q7XHC/4229.html:text/html},
}
@article{busse1999federated,
title = {Federated {Information} {Systems}: {Concepts}, {Terminology} and {Architectures}},
abstract = {We are currently witnessing the emerging of a new generation of software systems: Federated information systems. Their main characteristic is that they are constructed as an integrating layer over existing legacy applications and databases. They can be broadly classified in three dimensions: the degree of autonomy they allow in integrated components, the degree of heterogeneity between components they can cope with, and whether or not they support distribution. Whereas the communication and interoperation problem has come into a stage of applicable solutions over the past decade, semantic data integration has not become similarly clear.},
language = {en},
author = {Busse, Susanne and Kutsche, Ralf-Detlef and Leser, Ulf and Weber, Herbert},
year = {1999},
file = {Busse et al. - 1999 - Federated Information Systems Concepts, Terminolo.pdf:/Users/dkapitan/Zotero/storage/BP4Z3V7K/Busse et al. - 1999 - Federated Information Systems Concepts, Terminolo.pdf:application/pdf},
}
@misc{konecny2016federated,
title = {Federated {Optimization}: {Distributed} {Machine} {Learning} for {On}-{Device} {Intelligence}},
shorttitle = {Federated {Optimization}},
url = {http://arxiv.org/abs/1610.02527},
doi = {10.48550/arXiv.1610.02527},
abstract = {We introduce a new and increasingly relevant setting for distributed optimization in machine learning, where the data defining the optimization are unevenly distributed over an extremely large number of nodes. The goal is to train a high-quality centralized model. We refer to this setting as Federated Optimization. In this setting, communication efficiency is of the utmost importance and minimizing the number of rounds of communication is the principal goal. A motivating example arises when we keep the training data locally on users' mobile devices instead of logging it to a data center for training. In federated optimziation, the devices are used as compute nodes performing computation on their local data in order to update a global model. We suppose that we have extremely large number of devices in the network --- as many as the number of users of a given service, each of which has only a tiny fraction of the total data available. In particular, we expect the number of data points available locally to be much smaller than the number of devices. Additionally, since different users generate data with different patterns, it is reasonable to assume that no device has a representative sample of the overall distribution. We show that existing algorithms are not suitable for this setting, and propose a new algorithm which shows encouraging experimental results for sparse convex problems. This work also sets a path for future research needed in the context of {\textbackslash}federated optimization.},
urldate = {2024-05-12},
publisher = {arXiv},
author = {Konečný, Jakub and McMahan, H. Brendan and Ramage, Daniel and Richtárik, Peter},
month = oct,
year = {2016},
note = {arXiv:1610.02527 [cs]
version: 1},
keywords = {Computer Science - Machine Learning},
file = {arXiv Fulltext PDF:/Users/dkapitan/Zotero/storage/Z7TITNAI/Konečný et al. - 2016 - Federated Optimization Distributed Machine Learni.pdf:application/pdf;arXiv.org Snapshot:/Users/dkapitan/Zotero/storage/A77M3B4W/1610.html:text/html},
}
@article{pillutla2022robust,
title = {Robust {Aggregation} for {Federated} {Learning}},
volume = {70},
issn = {1053-587X, 1941-0476},
url = {http://arxiv.org/abs/1912.13445},
doi = {10.1109/TSP.2022.3153135},
abstract = {Federated learning is the centralized training of statistical models from decentralized data on mobile devices while preserving the privacy of each device. We present a robust aggregation approach to make federated learning robust to settings when a fraction of the devices may be sending corrupted updates to the server. The approach relies on a robust aggregation oracle based on the geometric median, which returns a robust aggregate using a constant number of iterations of a regular non-robust averaging oracle. The robust aggregation oracle is privacy-preserving, similar to the non-robust secure average oracle it builds upon. We establish its convergence for least squares estimation of additive models. We provide experimental results with linear models and deep networks for three tasks in computer vision and natural language processing. The robust aggregation approach is agnostic to the level of corruption; it outperforms the classical aggregation approach in terms of robustness when the level of corruption is high, while being competitive in the regime of low corruption. Two variants, a faster one with one-step robust aggregation and another one with on-device personalization, round off the paper.},
language = {en},
urldate = {2024-05-13},
journal = {IEEE Transactions on Signal Processing},
author = {Pillutla, Krishna and Kakade, Sham M. and Harchaoui, Zaid},
year = {2022},
note = {arXiv:1912.13445 [cs, stat]},
keywords = {Computer Science - Machine Learning, Statistics - Machine Learning, Computer Science - Cryptography and Security},
pages = {1142--1154},
file = {Pillutla et al. - 2022 - Robust Aggregation for Federated Learning.pdf:/Users/dkapitan/Zotero/storage/HUXQ7Z9V/Pillutla et al. - 2022 - Robust Aggregation for Federated Learning.pdf:application/pdf},
}
@article{jahnke2024federated,
title = {Federated data catalogs for data sharing - towards design principles},
url = {https://aisel.aisnet.org/ecis2024/track23_designresearch/track23_designresearch/10},
journal = {ECIS 2024 Proceedings},
author = {Jahnke, Nils and Spiekermann, Markus and Möller, Frederik},
month = jun,
year = {2024},
file = {AIS Electronic Library (AISeL) - ECIS 2024 Proceedings\: FEDERATED DATA CATALOGS FOR DATA SHARING – TOWARDS DESIGN PRINCIPLES:/Users/dkapitan/Zotero/storage/F6HHTGEN/10.html:text/html},
}
@article{sheth1990federated,
title = {Federated database systems for managing distributed, heterogeneous, and autonomous databases},
volume = {22},
issn = {0360-0300, 1557-7341},
url = {https://dl.acm.org/doi/10.1145/96602.96604},
doi = {10.1145/96602.96604},
abstract = {A federated database system (FDBS) is a collection of cooperating database systems that are autonomous and possibly heterogeneous. In this paper, we define a reference architecture for distributed database management systems from system and schema viewpoints and show how various FDBS architectures can be developed. We then define a methodology for developing one of the popular architectures of an FDBS. Finally, we discuss critical issues related to developing and operating an FDBS.},
language = {en},
number = {3},
urldate = {2024-05-13},
journal = {ACM Computing Surveys},
author = {Sheth, Amit P. and Larson, James A.},
month = sep,
year = {1990},
pages = {183--236},
file = {Available Version (via Google Scholar):/Users/dkapitan/Zotero/storage/C8VUQ6CY/Sheth and Larson - 1990 - Federated database systems for managing distribute.pdf:application/pdf},
}
@article{nargesian2019data,
title = {Data lake management: challenges and opportunities},
volume = {12},
issn = {2150-8097},
shorttitle = {Data lake management},
url = {https://dl.acm.org/doi/10.14778/3352063.3352116},
doi = {10.14778/3352063.3352116},
abstract = {The ubiquity of data lakes has created fascinating new challenges for data management research. In this tutorial, we review the state-of-the-art in data management for data lakes. We consider how data lakes are introducing new problems including dataset discovery and how they are changing the requirements for classic problems including data extraction, data cleaning, data integration, data versioning, and metadata management.},
language = {en},
number = {12},
urldate = {2024-05-13},
journal = {Proceedings of the VLDB Endowment},
author = {Nargesian, Fatemeh and Zhu, Erkang and Miller, Renée J. and Pu, Ken Q. and Arocena, Patricia C.},
month = aug,
year = {2019},
pages = {1986--1989},
file = {Available Version (via Google Scholar):/Users/dkapitan/Zotero/storage/NRHA4TPV/Nargesian et al. - 2019 - Data lake management challenges and opportunities.pdf:application/pdf},
}
@incollection{sheth1999changing,
address = {Boston, MA},
title = {Changing {Focus} on {Interoperability} in {Information} {Systems}:{From} {System}, {Syntax}, {Structure} to {Semantics}},
isbn = {978-1-4613-7363-6 978-1-4615-5189-8},
shorttitle = {Changing {Focus} on {Interoperability} in {Information} {Systems}},
url = {http://link.springer.com/10.1007/978-1-4615-5189-8_2},
doi = {10.1007/978-1-4615-5189-8_2},
urldate = {2024-05-13},
booktitle = {Interoperating {Geographic} {Information} {Systems}},
publisher = {Springer US},
author = {Sheth, Amit P.},
editor = {Goodchild, Michael and Egenhofer, Max and Fegeas, Robin and Kottman, Cliff},
year = {1999},
pages = {5--29},
file = {Available Version (via Google Scholar):/Users/dkapitan/Zotero/storage/4376HL56/Sheth - 1999 - Changing Focus on Interoperability in Information .pdf:application/pdf},
}
@article{mahon2024federated,
title = {A federated learning system for precision oncology in {Europe}: {DigiONE}},
volume = {30},
issn = {1078-8956, 1546-170X},
shorttitle = {A federated learning system for precision oncology in {Europe}},
url = {https://www.nature.com/articles/s41591-023-02715-8},
doi = {10.1038/s41591-023-02715-8},
language = {en},
number = {2},
urldate = {2024-05-27},
journal = {Nature Medicine},
author = {Mahon, Piers and Chatzitheofilou, Ismini and Dekker, Andre and Fernández, Xosé and Hall, Geoff and Helland, Aslaug and Traverso, Alberto and Van Marcke, Cedric and Vehreschild, Janne and Ciliberto, Gennaro and Tonon, Giovanni},
month = feb,
year = {2024},
pages = {334--337},
file = {Mahon et al. - 2024 - A federated learning system for precision oncology.pdf:/Users/dkapitan/Zotero/storage/DR3TJKV6/Mahon et al. - 2024 - A federated learning system for precision oncology.pdf:application/pdf},
}
@article{agahari2022rethinking,
title = {Rethinking consumers' data sharing decisions with the emergence of multi-party computation: {An} experimental design for evaluation},
shorttitle = {Rethinking consumers' data sharing decisions with the emergence of multi-party computation},
url = {https://repository.tudelft.nl/islandora/object/uuid%3A624e946c-7a14-468e-8b48-f6d2cd7f16c4},
abstract = {Consumers are increasingly reluctant to share their personal data with businesses due to mounting concerns over privacy and control. Emerging privacy-enhancing technologies like multi-party computation (MPC), which allows generating insights while consumers retain data control, are challenging the current understanding of why consumers share their data. In this research-in-progress paper, we develop and evaluate an instrument and experimental design to investigate the impact of MPC on consumers’ willingness to share data and its antecedents. Preliminary analysis from a pre-study (N=300) indicates a good fit for our model. Also, MPC enhances consumers’ control and trust while reducing privacy concerns and risk, ultimately increasing data sharing willingness. The findings suggest that privacy-enhancing technologies significantly affect both the willingness to share data itself and its typical antecedents. The next step will conduct a large-scale online experiment using the developed instruments to evaluate further the impact of MPC on consumers’ willingness to share data.},
language = {en},
urldate = {2024-06-05},
journal = {30th European Conference on Information Systems (ECIS 2022)},
publisher = {Association of the Information Systems (AIS)},
author = {Agahari, W. and de Reuver, Mark},
year = {2022},
file = {Full Text PDF:/Users/dkapitan/Zotero/storage/QQVNV9TN/Agahari and de Reuver - 2022 - Rethinking consumers' data sharing decisions with .pdf:application/pdf},
}
@phdthesis{agahari2023multiparty,
type = {Dissertation ({TU} {Delft})},
title = {Multi-{Party} {Computation} as a {Privacy}-{Enhancing} {Technology}: {Implications} for {Data} {Sharing} by {Businesses} and {Consumers}},
isbn = {978-94-6384-480-2},
shorttitle = {Multi-{Party} {Computation} as a {Privacy}-{Enhancing} {Technology}},
abstract = {Data sharing through data marketplaces, which rely on a Trusted Third Party (TTP), can benefit businesses and society. However, many companies and consumers are increasingly reluctant to share data due to mounting concerns over data control and privacy. Emerging privacy-enhancing technologies (PETs) like Multi-Party Computation (MPC), which enables joint computation to generate insights while keeping the input data private, could address data sharing barriers due to its differences with the traditional data sharing approach relying on a TTP. Thus, MPC could challenge the current understanding of why and how businesses and consumers share data. Nevertheless, whether businesses and consumers would be more willing to share data with MPC in place is unclear, as less attention is given to the socio-technical implications of MPC on data sharing decisions in data marketplaces and its antecedents. This research aimed to theorize the socio-technical implications of MPC on sharing through data marketplaces, by investigating how MPC potentially impacts data sharing antecedents by businesses and individuals. We do so through a mixed-method research design focusing on the automotive industry. Based on interviews with 15 MPC experts, which were structured using a Unified Business Model framework, we explored value propositions enabled by MPC use in data marketplaces. These value propositions allow MPC to potentially impact control, privacy, trust, and risks as antecedents of data sharing decisions in data marketplaces. Subsequently, we interviewed 23 automotive industry experts to investigate the potential impact of MPC use in data marketplaces on control, trust, and risks as antecedents of business data sharing. We then conducted an experiment via an online crowdsourcing platform with 1457 participants to investigate the potential impact of MPC use in data marketplaces on control, privacy, trust, and risks as antecedents of consumer data sharing. In this way, we contribute to the socio-technical understanding of MPC beyond technical perspectives. At the same time, we also demonstrate the relevance of MPC to practitioners by pointing out key aspects that should be considered while exploring the possibility of implementing MPC. Furthermore, this research provides a foundation for future studies on understanding the socio-technical implications of MPC on data sharing decisions.},
author = {Agahari, W.},
year = {2023},
doi = {10.4233/uuid:83e0a9bc-f429-479a-ac2b-8a42e6da63f1},
keywords = {data sharing, automotive industry, data marketplaces, mixed-method research, Multi-Party Computation, privacy-enhancing technologies},
}
@article{sun2021systematic,
title = {A systematic review on privacy-preserving distributed data mining},
volume = {4},
issn = {2451-8484},
url = {https://content.iospress.com/articles/data-science/ds210036},
doi = {10.3233/DS-210036},
abstract = {Combining and analysing sensitive data from multiple sources offers considerable potential for knowledge discovery. However, there are a number of issues that pose problems for such analyses, including technical barriers, privacy restrictions, securi},
language = {en},
number = {2},
urldate = {2024-06-10},
journal = {Data Science},
publisher = {IOS Press},
author = {Sun, Chang and Ippel, Lianne and Dekker, Andre and Dumontier, Michel and van Soest, Johan},
month = jan,
year = {2021},
pages = {121--150},
file = {Full Text PDF:/Users/dkapitan/Zotero/storage/KSWLZZ5I/Sun et al. - 2021 - A systematic review on privacy-preserving distribu.pdf:application/pdf},
}
@article{kaheman2020sindypi,
title = {{SINDy}-{PI}: a robust algorithm for parallel implicit sparse identification of nonlinear dynamics},
volume = {476},
shorttitle = {{SINDy}-{PI}},
url = {https://royalsocietypublishing.org/doi/10.1098/rspa.2020.0279},
doi = {10.1098/rspa.2020.0279},
abstract = {Accurately modelling the nonlinear dynamics of a system from measurement data is a challenging yet vital topic. The sparse identification of nonlinear dynamics (SINDy) algorithm is one approach to discover dynamical systems models from data. Although extensions have been developed to identify implicit dynamics, or dynamics described by rational functions, these extensions are extremely sensitive to noise. In this work, we develop SINDy-PI (parallel, implicit), a robust variant of the SINDy algorithm to identify implicit dynamics and rational nonlinearities. The SINDy-PI framework includes multiple optimization algorithms and a principled approach to model selection. We demonstrate the ability of this algorithm to learn implicit ordinary and partial differential equations and conservation laws from limited and noisy data. In particular, we show that the proposed approach is several orders of magnitude more noise robust than previous approaches, and may be used to identify a class of ODE and PDE dynamics that were previously unattainable with SINDy, including for the double pendulum dynamics and simplified model for the Belousov–Zhabotinsky (BZ) reaction.},
number = {2242},
urldate = {2022-11-07},
journal = {Proceedings of the Royal Society A: Mathematical, Physical and Engineering Sciences},
publisher = {Royal Society},
author = {Kaheman, Kadierdan and Kutz, J. Nathan and Brunton, Steven L.},
month = oct,
year = {2020},
keywords = {optimization, model selection, rational differential equations, system identification},
pages = {20200279},
file = {Full Text PDF:/Users/dkapitan/Zotero/storage/GIPCGV4J/Kaheman et al. - 2020 - SINDy-PI a robust algorithm for parallel implicit.pdf:application/pdf},
}
@article{ottofederated,
title = {A {Federated} {Infrastructure} for {European} {Data} {Spaces}},
url = {https://cacm.acm.org/magazines/2022/4/259403-a-federated-infrastructure-for-european-data-spaces/fulltext},
abstract = {The Gaia-X project, with more than 300 members, aims at a federated data architecture that comprises not only data and smart services, but also cloud infrastructure services.},
language = {en},
urldate = {2022-11-04},
author = {Otto, Boris},
file = {PDF:/Users/dkapitan/Zotero/storage/Z2EIQNRJ/Otto - A Federated Infrastructure for European Data Spaces.pdf:application/pdf},
}
@misc{privacy,
title = {Privacy {Is} {Hard} and {Seven} {Other} {Myths}},
url = {https://mitpress.mit.edu/9780262045827/},
urldate = {2022-11-03},
}
@article{hoepman2018privacy,
title = {Privacy {Design} {Strategies}},
abstract = {Limit as much as possible the detail in which personal data is processed. Hide Protect personal data, or make it unlinkable or unobservable. Make sure it does not become public or known.},
language = {en},
author = {Hoepman, Jaap-Henk},
year = {2018},
pages = {30},
file = {Hoepman - This work is licensed under a Creative Commons Att.pdf:/Users/dkapitan/Zotero/storage/PBL9NFW4/Hoepman - This work is licensed under a Creative Commons Att.pdf:application/pdf;hoepman2018pds-boekje.pdf:/Users/dkapitan/Zotero/storage/GEGAW3LB/hoepman2018pds-boekje.pdf:application/pdf},
}
@article{abspoel2021secure,
title = {Secure training of decision trees with continuous attributes},
volume = {2021},
issn = {2299-0984},
url = {https://petsymposium.org/popets/2021/popets-2021-0010.php},
doi = {10.2478/popets-2021-0010},
abstract = {We apply multiparty computation (MPC) techniques to show, given a database that is secret-shared among multiple mutually distrustful parties, how the parties may obliviously construct a decision tree based on the secret data. We consider data with continuous attributes (i.e., coming from a large domain), and develop a secure version of a learning algorithm similar to the C4.5 or CART algorithms. Previous MPC-based work only focused on decision tree learning with discrete attributes (De Hoogh et al. 2014). Our starting point is to apply an existing generic MPC protocol to a standard decision tree learning algorithm, which we then optimize in several ways. We exploit the fact that even if we allow the data to have continuous values, which a priori might require fixed or floating point representations, the output of the tree learning algorithm only depends on the relative ordering of the data. By obliviously sorting the data we reduce the number of comparisons needed per node to O(N log2 N ) from the naive O(N 2), where N is the number of training records in the dataset, thus making the algorithm feasible for larger datasets. This does however introduce a problem when duplicate values occur in the dataset, but we manage to overcome this problem with a relatively cheap subprotocol. We show a procedure to convert a sorting network into a permutation network of smaller complexity, resulting in a round complexity of O(log N ) per layer in the tree. We implement our algorithm in the MP-SPDZ framework and benchmark our implementation for both passive and active three-party computation using arithmetic modulo 264. We apply our implementation to a large scale medical dataset of ≈ 290 000 rows using random forests, and thus demonstrate practical feasibility of using MPC for privacy-preserving machine learning based on decision trees for large datasets.},
language = {en},
number = {1},
urldate = {2022-10-21},
journal = {Proceedings on Privacy Enhancing Technologies},
author = {Abspoel, Mark and Escudero, Daniel and Volgushev, Nikolaj},
month = jan,
year = {2021},
pages = {167--187},
file = {Abspoel et al. - 2021 - Secure training of decision trees with continuous .pdf:/Users/dkapitan/Zotero/storage/8PEDIV8X/Abspoel et al. - 2021 - Secure training of decision trees with continuous .pdf:application/pdf},
}
@article{sweeneyKANONYMITYMODELPROTECTING2002,
title = {K-{ANONYMITY}: {A} {MODEL} {FOR} {PROTECTING} {PRIVACY}},
volume = {10},
issn = {0218-4885},
shorttitle = {K-{ANONYMITY}},
doi = {10.1142/S0218488502001648},
abstract = {Consider a data holder, such as a hospital or a bank, that has a privately held collection of person-specific, field structured data. Suppose the data holder wants to share a version of the data with researchers. How can a data holder release a version of its private data with scientific guarantees that the individuals who are the subjects of the data cannot be re-identified while the data remain practically useful? The solution provided in this paper includes a formal protection model named k-anonymity and a set of accompanying policies for deployment. A release provides k-anonymity protection if the information for each person contained in the release cannot be distinguished from at least k-1 individuals whose information also appears in the release. This paper also examines re-identification attacks that can be realized on releases that adhere to k-anonymity unless accompanying policies are respected. The k-anonymity protection model is important because it forms the basis on which the real-world systems known as Datafly, 𝜇-Argus and k-Similar provide guarantees of privacy protection.},
number = {05},
urldate = {2020-04-23},
journal = {International Journal of Uncertainty, Fuzziness and Knowledge-Based Systems},
publisher = {World Scientific Publishing Co.},
author = {Sweeney, Latanya},
month = oct,
year = {2002},
pages = {557--570},
file = {S0218488502001648:/Users/dkapitan/Zotero/storage/N4GK6C3N/S0218488502001648.html:text/html;Sweeney - 2002 - k-ANONYMITY A MODEL FOR PROTECTING PRIVACY:/Users/dkapitan/Zotero/storage/6V42KUJZ/Sweeney - 2002 - k-ANONYMITY A MODEL FOR PROTECTING PRIVACY.pdf:application/pdf},
}
@article{joshi2022federated,
title = {Federated {Learning} for {Healthcare} {Domain} - {Pipeline}, {Applications} and {Challenges}},
volume = {3},
issn = {2691-1957},
url = {https://dl.acm.org/doi/10.1145/3533708},
doi = {10.1145/3533708},
abstract = {Federated learning is the process of developing machine learning models over datasets distributed across data centers such as hospitals, clinical research labs, and mobile devices while preventing data leakage. This survey examines previous research and studies on federated learning in the healthcare sector across a range of use cases and applications. Our survey shows what challenges, methods, and applications a practitioner should be aware of in the topic of federated learning. This paper aims to lay out existing research and list the possibilities of federated learning for healthcare industries.},
number = {4},
urldate = {2023-04-20},
journal = {ACM Transactions on Computing for Healthcare},
author = {Joshi, Madhura and Pal, Ankit and Sankarasubbu, Malaikannan},
month = nov,
year = {2022},
keywords = {GDPR, transfer learning, Federated learning},
pages = {40:1--40:36},
file = {Full Text PDF:/Users/dkapitan/Zotero/storage/J5BTYABM/Joshi et al. - 2022 - Federated Learning for Healthcare Domain - Pipelin.pdf:application/pdf},
}
@article{heimbigner1985federated,
title = {A federated architecture for information management},
volume = {3},
issn = {1046-8188},
url = {https://dl.acm.org/doi/10.1145/4229.4233},
doi = {10.1145/4229.4233},
abstract = {An approach to the coordinated sharing and interchange of computerized information is described emphasizing partial, controlled sharing among autonomous databases. Office information systems provide a particularly appropriate context for this type of information sharing and exchange. A federated database architecture is described in which a collection of independent database systems are united into a loosely coupled federation in order to share and exchange information. A federation consists of components (of which there may be any number) and a single federal dictionary. The components represent individual users, applications, workstations, or other components in an office information system. The federal dictionary is a specialized component that maintains the topology of the federation and oversees the entry of new components. Each component in the federation controls its interactions with other components by means of an export schema and an import schema. The export schema specifies the information that a component will share with other components, while the import schema specifies the nonlocal information that a component wishes to manipulate. The federated architecture provides mechanisms for sharing data, for sharing transactions (via message types) for combining information from several components, and for coordinating activities among autonomous components (via negotiation). A prototype implementation of the federated database mechanism is currently operational on an experimental basis.},
number = {3},
urldate = {2023-04-23},
journal = {ACM Transactions on Information Systems},
author = {Heimbigner, Dennis and McLeod, Dennis},
month = jul,
year = {1985},
pages = {253--278},
file = {Full Text PDF:/Users/dkapitan/Zotero/storage/L3BBRJUP/Heimbigner and McLeod - 1985 - A federated architecture for information managemen.pdf:application/pdf},
}
@article{elkordy2023federated,
title = {Federated {Analytics}: {A} {Survey}},
volume = {12},
issn = {2048-7703},
shorttitle = {Federated {Analytics}},
url = {http://www.nowpublishers.com/article/Details/SIP-2022-0063},
doi = {10.1561/116.00000063},
abstract = {Federated analytics (FA) is a privacy-preserving framework for computing data analytics over multiple remote parties (e.g., mobile devices) or silo-ed institutional entities (e.g., hospitals, banks) without sharing the data among parties. Motivated by the practical use cases of federated analytics, we follow a systematic discussion on federated analytics in this article. In particular, we discuss the unique characteristics of federated analytics and how it differs from federated learning. We also explore a wide range of FA queries and discuss various existing solutions and potential use case applications for different FA queries.},
language = {en},
number = {1},
urldate = {2023-05-07},
journal = {APSIPA Transactions on Signal and Information Processing},
author = {Elkordy, Ahmed Roushdy and Ezzeldin, Yahya H. and Han, Shanshan and Sharma, Shantanu and He, Chaoyang and Mehrotra, Sharad and Avestimehr, Salman},
year = {2023},
file = {Elkordy et al. - 2023 - Federated Analytics A Survey.pdf:/Users/dkapitan/Zotero/storage/RT8R68NY/Elkordy et al. - 2023 - Federated Analytics A Survey.pdf:application/pdf},
}
@article{gu2022systematic,
title = {A systematic overview of data federation systems},
volume = {15},
issn = {1570-0844},
url = {https://content.iospress.com/articles/semantic-web/sw223201},
doi = {10.3233/SW-223201},
abstract = {Data federation addresses the problem of uniformly accessing multiple, possibly heterogeneous data sources, by mapping them into a unified schema, such as an RDF(S)/OWL ontology or a relational schema, and by supporting the execution of queries, like},
language = {en},
number = {1},
urldate = {2024-05-27},
journal = {Semantic Web},
publisher = {IOS Press},
author = {Gu, Zhenzhen and Corcoglioniti, Francesco and Lanti, Davide and Mosca, Alessandro and Xiao, Guohui and Xiong, Jing and Calvanese, Diego},
month = dec,
year = {2022},
pages = {107--165},
file = {Full Text PDF:/Users/dkapitan/Zotero/storage/8FWFTGCM/Gu et al. - 2024 - A systematic overview of data federation systems.pdf:application/pdf},
}
@article{schultes2023fair,
title = {The {FAIR} hourglass: {A} framework for {FAIR} implementation},
volume = {1},
issn = {2949799X},
shorttitle = {The {FAIR} hourglass},
url = {https://www.medra.org/servlet/aliasResolver?alias=iospress&doi=10.3233/FC-221514},
doi = {10.3233/FC-221514},
abstract = {The FAIR Hourglass provides a framework to organize two general phases of FAIR implementation: FAIRification (top) and FAIR Orchestration (bottom). The center of the hourglass represents the use of widely agreed-upon open, minimal standards ensuring machine-actionability.},
language = {en},
number = {1},
urldate = {2023-04-04},
journal = {FAIR Connect},
author = {Schultes, Erik},
editor = {Magagna, Barbara},
month = jan,
year = {2023},
pages = {13--17},
file = {Schultes - 2023 - The FAIR hourglass A framework for FAIR implement.pdf:/Users/dkapitan/Zotero/storage/C79VBWCR/Schultes - 2023 - The FAIR hourglass A framework for FAIR implement.pdf:application/pdf},
}
@article{nikayin2013collective,
title = {Collective action for a common service platform for independent living services},
volume = {82},
issn = {13865056},
doi = {10.1016/j.ijmedinf.2013.06.013},
abstract = {Objective: The paper aims to explain how and why organizations, providing assistive devices and related web services for elderly independent living services, might be willing to collaborate and to share their resources and data on a common service platform. Method: A theoretical framework from literature on collective action theory, platform and business ecosystem concepts was developed to explain what factors influence interorganizational collective action for a common service platform. The framework was tested in a case study of collaborative platform project for independent living services in Finland. Semi-structured interviews with the project managers and the decision makers of involved organizations were the primary source of data collection. Result: Strikingly, interdependency among the organizations was not found to be important for collaboration in this case. Instead, we found that a central organization can play an important role in initiating, facilitating and encouraging collaboration among different parties. Moreover, we found more willingness for collaboration when the platform is aimed to be open to third-parties to complement the platform with additional services. Conclusions: Strategies of the platform leader and openness of the platform towards third parties are the most important drivers for collective action between organizations offering independent living services. Establishing common service platforms for independent living services requires explicit attention to these inter-organizational issues.},
language = {english},
number = {10},
journal = {International Journal of Medical Informatics},
author = {Nikayin, Fatemeh and De Reuver, Mark and Itälä, Timo},
month = oct,
year = {2013},
pages = {922--939},
}
@article{karippacheril2013servinga,
title = {Serving the poor: {Multisided} mobile service platforms, openness, competition, collaboration and the struggle for leadership},
volume = {37},
issn = {0308-5961},
shorttitle = {Serving the poor},
doi = {10.1016/j.telpol.2012.06.001},
abstract = {Four billion people at the base of the economic pyramid live on incomes below \$3000 a year in local purchasing power, and more often than not, lack consistent access to services, such as water, healthcare, banking or agricultural know-how. Rapid advances in mobile technology offer the potential to mediate access to essential services. Through this research, the answers to the following question were explored: will mobile service platforms bridge the gap between service providers and people living at the base of the pyramid in developing countries? Anchored in interviews with 31 experts in the field of mobile and ICT, qualitative analysis starting from platform leadership to explain the role of mobile service platforms is presented: how operator, device and service provider centric platforms compete, collaborate and open up (or not) for delivering scalable services to the poor. Based on the analysis in this paper, it is portended that although operator centric platforms are in pole position, device centric platform providers, being astute innovators, are positioned to close the lead by presenting alternatives to bridge the gap in developing countries. This paper frames the current debate on M4D through the lens of platform theory, and aims to provide guidance to policy makers to improve access to services for the poor.},
language = {english},
number = {1},
journal = {Telecommunications Policy},
author = {Karippacheril, Tina George and Nikayin, Fatemeh and de Reuver, Mark and Bouwman, Harry},
month = feb,
year = {2013},
keywords = {ICT4D, M4D, Mobile, Platform leadership, Poverty, Telecommunications},
pages = {24--34},
}
@article{beck2019hourglass,
title = {On the hourglass model},
volume = {62},
issn = {0001-0782, 1557-7317},
doi = {10.1145/3274770},
abstract = {Used in the design of the Internet and Unix, the layered services of the hourglass model have enabled viral adoption and deployment scalability.},
language = {english},
number = {7},
journal = {Communications of the ACM},
author = {Beck, Micah},
month = jun,
year = {2019},
pages = {48--57},
file = {Beck - 2019 - On the hourglass model:/Users/dkapitan/Zotero/storage/NKGQZL5V/Beck - 2019 - On the hourglass model.pdf:application/pdf},
}
@article{baran1964distributed,
title = {On {Distributed} {Communications} {Networks}},
volume = {12},
issn = {1558-2647},
url = {https://ieeexplore.ieee.org/abstract/document/1088883},
doi = {10.1109/TCOM.1964.1088883},
abstract = {This paper briefly reviews the distributed communication network concept in which each station is connected to all adjacent stations rather than to a few switching points, as in a centralized system. The payoff for a distributed configuration in terms of survivability in the cases of enemy attack directed against nodes, links or combinations of nodes and links is demonstrated. A comparison is made between diversity of assignment and perfect switching in distributed networks, and the feasibility of using low-cost unreliable communication links, even links so unreliable as to be unusable in present type networks, to form highly reliable networks is discussed. The requirements for a future all-digital data distributed network which provides common user service for a wide range of users having different requirements is considered. The use of a standard format message block permits building relatively simple switching mechanisms using an adaptive store-and-forward routing policy to handle all forms of digital data including digital voice. This network rapidly responds to changes in the network status. Recent history of measured network traffic is used to modify path selection. Simulation results are shown to indicate that highly efficient routing can be performed by local control without the necessity for any central, and therefore vulnerable, control point.},
number = {1},
urldate = {2024-08-12},
journal = {IEEE Transactions on Communications Systems},
author = {Baran, P.},
month = mar,
year = {1964},
note = {Conference Name: IEEE Transactions on Communications Systems},
keywords = {Information systems, Buildings, Centralized control, Communication networks, Communication switching, Communication system control, History, Network synthesis, Routing, Telecommunication network reliability},
pages = {1--9},
file = {IEEE Xplore Full Text PDF:/Users/dkapitan/Zotero/storage/GXJYF89Z/Baran - 1964 - On Distributed Communications Networks.pdf:application/pdf},
}
@inproceedings{mcmahan2017communication,
title = {Communication-{Efficient} {Learning} of {Deep} {Networks} from {Decentralized} {Data}},
url = {https://proceedings.mlr.press/v54/mcmahan17a.html},
abstract = {Modern mobile devices have access to a wealth of data suitable for learning models, which in turn can greatly improve the user experience on the device. For example, language models can improve speech recognition and text entry, and image models can automatically select good photos. However, this rich data is often privacy sensitive, large in quantity, or both, which may preclude logging to the data center and training there using conventional approaches. We advocate an alternative that leaves the training data distributed on the mobile devices, and learns a shared model by aggregating locally-computed updates. We term this decentralized approach Federated Learning. We present a practical method for the federated learning of deep networks based on iterative model averaging, and conduct an extensive empirical evaluation, considering five different model architectures and four datasets. These experiments demonstrate the approach is robust to the unbalanced and non-IID data distributions that are a defining characteristic of this setting. Communication costs are the principal constraint, and we show a reduction in required communication rounds by 10-100x as compared to synchronized stochastic gradient descent.},
language = {en},
urldate = {2024-08-25},
booktitle = {Proceedings of the 20th {International} {Conference} on {Artificial} {Intelligence} and {Statistics}},
publisher = {PMLR},
author = {McMahan, Brendan and Moore, Eider and Ramage, Daniel and Hampson, Seth and Arcas, Blaise Aguera y},
month = apr,
year = {2017},
pages = {1273--1282},
file = {PDF:/Users/dkapitan/Zotero/storage/BVMJRDYZ/McMahan et al. - 2017 - Communication-Efficient Learning of Deep Networks from Decentralized Data.pdf:application/pdf},
}
@article{estrin2010health,
title = {Health care delivery. {Open} {mHealth} architecture: an engine for health care innovation},
volume = {330},
issn = {1095-9203},
shorttitle = {Health care delivery. {Open} {mHealth} architecture},
doi = {10.1126/science.1196187},
language = {eng},
number = {6005},
journal = {Science (New York, N.Y.)},
author = {Estrin, Deborah and Sim, Ida},
month = nov,
year = {2010},
keywords = {Humans, Medical Informatics, Telemedicine, Software, Internet, Delivery of Health Care, Cell Phone},
pages = {759--760},
file = {Estrin and Sim - 2010 - Health care delivery. Open mHealth architecture a.pdf:/Users/dkapitan/Zotero/storage/9CHH5MAQ/Estrin and Sim - 2010 - Health care delivery. Open mHealth architecture a.pdf:application/pdf},
}
@article{jordan2015machine,
title = {Machine learning: {Trends}, perspectives, and prospects},
volume = {349},
shorttitle = {Machine learning},
url = {https://www.science.org/doi/full/10.1126/science.aaa8415},
doi = {10.1126/science.aaa8415},
abstract = {Machine learning addresses the question of how to build computers that improve automatically through experience. It is one of today’s most rapidly growing technical fields, lying at the intersection of computer science and statistics, and at the core of artificial intelligence and data science. Recent progress in machine learning has been driven both by the development of new learning algorithms and theory and by the ongoing explosion in the availability of online data and low-cost computation. The adoption of data-intensive machine-learning methods can be found throughout science, technology and commerce, leading to more evidence-based decision-making across many walks of life, including health care, manufacturing, education, financial modeling, policing, and marketing.},
number = {6245},
urldate = {2024-09-12},
journal = {Science},
publisher = {American Association for the Advancement of Science},
author = {Jordan, M. I. and Mitchell, T. M.},
month = jul,
year = {2015},
pages = {255--260},
file = {Full Text PDF:/Users/dkapitan/Zotero/storage/W6JFUK5V/Jordan and Mitchell - 2015 - Machine learning Trends, perspectives, and prospe.pdf:application/pdf},
}
@article{moncada-torres2021vantage6,
title = {{VANTAGE6}: an open source {priVAcy} {preserviNg} {federaTed} {leArninG} {infrastructurE} for {Secure} {Insight} {eXchange}},
volume = {2020},
issn = {1942-597X},
shorttitle = {{VANTAGE6}},
url = {https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8075508/},
abstract = {Answering many of the research questions in the field of cancer informatics requires incorporating and centralizing data that are hosted by different parties. Federated Learning (FL) has emerged as a new approach in which a global model can be generated without disclosing private patient data by keeping them at their original location. Flexible, user-friendly, and robust infrastructures are crucial for bringing FL solutions to the day-to-day work of the cancer epidemiologist. In this paper, we present an open source priVAcy preserviNg federaTed leArninG infrastructurE for Secure Insight eXchange, VANTAGE6. We provide a detailed description of its conceptual design, modular architecture, and components. We also show a few examples where VANTAGE6 has been successfully used in research on observational cancer data. Developing and deploying technology to support federated analyses – such as VANTAGE6 – will pave the way for the adoption and mainstream practice of this new approach for analyzing decentralized data.},
urldate = {2024-09-21},
journal = {AMIA Annual Symposium Proceedings},
author = {Moncada-Torres, Arturo and Martin, Frank and Sieswerda, Melle and Van Soest, Johan and Geleijnse, Gijs},
month = jan,
year = {2021},
pages = {870--877},
file = {PubMed Central Full Text PDF:/Users/dkapitan/Zotero/storage/IBF6X9ZZ/Moncada-Torres et al. - 2021 - VANTAGE6 an open source priVAcy preserviNg federa.pdf:application/pdf},
}
@article{tsafnat2024converge,
title = {Converge or {Collide}? {Making} {Sense} of a {Plethora} of {Open} {Data} {Standards} in {Health} {Care}},
volume = {26},
shorttitle = {Converge or {Collide}?},
url = {https://www.jmir.org/2024/1/e55779},
doi = {10.2196/55779},
abstract = {Practitioners of digital health are familiar with disjointed data environments that often inhibit effective communication among different elements of the ecosystem. This fragmentation leads in turn to issues such as inconsistencies in services versus payments, wastage, and notably, care delivered being less than best-practice. Despite the long-standing recognition of interoperable data as a potential solution, efforts in achieving interoperability have been disjointed and inconsistent, resulting in numerous incompatible standards, despite the widespread agreement that fewer standards would enhance interoperability. This paper introduces a framework for understanding health care data needs, discussing the challenges and opportunities of open data standards in the field. It emphasizes the necessity of acknowledging diverse data standards, each catering to specific viewpoints and needs, while proposing a categorization of health care data into three domains, each with its distinct characteristics and challenges, along with outlining overarching design requirements applicable to all domains and specific requirements unique to each domain.},
language = {EN},
number = {1},
urldate = {2024-09-21},
journal = {Journal of Medical Internet Research},
publisher = {JMIR Publications Inc., Toronto, Canada},
author = {Tsafnat, Guy and Dunscombe, Rachel and Gabriel, Davera and Grieve, Grahame and Reich, Christian},
month = apr,
year = {2024},
note = {Company: Journal of Medical Internet Research
Distributor: Journal of Medical Internet Research
Institution: Journal of Medical Internet Research
Label: Journal of Medical Internet Research},
pages = {e55779},
file = {Snapshot:/Users/dkapitan/Zotero/storage/HCRU7DUV/e55779.html:text/html},
}
@misc{composable,
title = {The {Composable} {Codex}},
url = {https://voltrondata.com/codex.html},
abstract = {The Composable Codex covers the trends, tools, and standards enabling composable data systems. Discover open data standards making composability possible and how they foster system interoperability and acceleration.},
language = {en},
urldate = {2024-10-16},
journal = {Voltron Data},
file = {Snapshot:/Users/dkapitan/Zotero/storage/K89H8AWL/codex.html:text/html},
}
@misc{zhang2023secure,
title = {Secure and {Private} {Healthcare} {Analytics}: {A} {Feasibility} {Study} of {Federated} {Deep} {Learning} with {Personal} {Health} {Train}},
shorttitle = {Secure and {Private} {Healthcare} {Analytics}},
url = {https://www.researchsquare.com/article/rs-3158418/v1},
doi = {10.21203/rs.3.rs-3158418/v1},
abstract = {Objective In this article, we aim to present a new open-source Federated Learning infrastructure by conducting several proof-of-concept experiments. We seek to prove the reliability of the infrastructure to develop global models without sharing private patient data.Materials and Methods We applied the Personal Health Train (PHT) principles using the Vantage6 software to train a neural network to classify head and neck cancer patients\’ distant metastasis using federated learning algorithms in a privacy preserving manner. Head and neck cancer patient data from four cohorts were assigned to two data stations. During each training iteration, model weights were averaged and sent back to central node.Results We compared the area under the receiver operating characteristic curves (AUCs) and model weights between the centralized and federated learning scenarios. The results showed that our federated infrastructure was able to achieve similar predicting power as in the centralized case. Different federated learning model weights aggregation methods were tested. The experiment results showed that federated learning models reached best performance when we aggregate model weights per epoch.Discussion and Conclusion PHT and FAIR data principles can efficiently calculate quality indicators in a privacy-preserving federated approach and the work can be scaled up both nationally and internationally. Despite this, application of the methodology was largely hampered by ELSI issues. However, the lessons learned from this study can provide other hospitals and researchers to adapt to the process easily and take effective measures in building quality of care infrastructures.},
urldate = {2024-10-24},
publisher = {Research Square},
author = {Zhang, Chong and Choudhury, Ananya and Volmer, Leroy and Soest, Johan and Bermejo, Inigo and Dekker, Andre and Gomes, Aiara Lobo and Wee, Leonard},
month = jul,
year = {2023},
note = {ISSN: 2693-5015},
file = {Full Text PDF:/Users/dkapitan/Zotero/storage/QSIP8H5B/Zhang et al. - 2023 - Secure and Private Healthcare Analytics A Feasibility Study of Federated Deep Learning with Persona.pdf:application/pdf},
}
@article{gentner2023data,
title = {Data {Lakes} in {Healthcare}: {Applications} and {Benefits} from the {Perspective} of {Data} {Sources} and {Players}},
volume = {225},
issn = {18770509},
shorttitle = {Data {Lakes} in {Healthcare}},
url = {https://linkinghub.elsevier.com/retrieve/pii/S1877050923012760},
doi = {10.1016/j.procs.2023.10.118},
abstract = {As the amount of available data in healthcare has increased significantly and only 20\% of electronic health record data are in a structured format, data lakes have become a common solution for managing heterogeneous data in the healthcare domain. Nowadays, these are utilized far below their capabilities in medical research. Since previous reviews only partly address data lakes in the healthcare domain, a systematic literature review on this topic is missing. Therefore, this paper provides an overview of applications in the healthcare domain that benefit from data lakes. We review the literature and structure it according to data sources and players, and we identify applications and future research needs of data lakes in the healthcare domain. Overall, it turned out that all players could benefit from the capabilities of data lakes. We found that data lakes are currently not broadly implemented in the field, and the viewpoint of hospital operators and healthcare insurers seems to be an underresearched topic compared to the other players.},
language = {en},
urldate = {2024-12-02},
journal = {Procedia Computer Science},
author = {Gentner, Tobias and Neitzel, Timon and Schulze, Jacob and Gerschner, Felix and Theissler, Andreas},
year = {2023},
pages = {1302--1311},
file = {PDF:/Users/dkapitan/Zotero/storage/55AX3GRC/Gentner et al. - 2023 - Data Lakes in Healthcare Applications and Benefits from the Perspective of Data Sources and Players.pdf:application/pdf},
}
@article{mancohealer,
title = {{HEALER}: {A} {Data} {Lake} {Architecture} for {Healthcare}},
abstract = {With the growth of the Internet of Things and the rapid progress of social networks, everything appears to generate data. The ever-increasing number of connected devices is accompanied by a growth of the volume of data, produced at an ever-increasing rate, and this massive flow includes data types that are difficult to process using standard database techniques. One of the most critical scenarios is healthcare, whose activities need to store and manage a variety of data types – reports written in natural language, medical images, genomic data and waveforms of vital signs – which do not have a well-defined structure. In order to benefit from this large amount of complex data, Data Lakes have recently emerged as a solution to grant central storage and flexible analysis for all types of data. However, there is no Data Lake architecture that fits all the possible scenarios, since the architecture depends heavily on the application domain and, so far, there are no Data Lake architectures that support the specific needs of the healthcare domain. This work proposes HEALER: a Data Lake architecture that effectively performs data ingestion, data storage, and data access with the aim of providing a single central repository for efficient storage of different types of healthcare data. The architecture also enables the analysis and querying of the data, which can be loaded into the Data Lake regardless of their format and type. To verify the effectiveness of the architecture, a proof-of-concept of HEALER has been developed, that allows ingestion of various data, performs waveforms processing to make them more interpretable to researchers and analysts, grants access to the saved data and allows the analysis of natural language reports. Finally we studied the performance of the system in each of its main phases: ingestion, processing, data access and analysis. The results lead us to some important considerations to be taken into account when using and configuring the system components.},
language = {en},
author = {Manco, Carlo and Dolci, Tommaso and Azzalini, Fabio and Barbierato, Enrico and Gribaudo, Marco and Tanca, Letizia},
file = {PDF:/Users/dkapitan/Zotero/storage/TWCJ2CUD/Manco et al. - HEALER A Data Lake Architecture for Healthcare.pdf:application/pdf},
}