-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbiblio.js
1081 lines (1080 loc) · 43.1 KB
/
biblio.js
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
var respecConfig = {
lint : {
"no-headingless-sections" : false,
},
logos: [
{
src: "",
url: "",
alt: "logo",
width: 0,
height: 0,
id: "book-logo",
},
],
github: "hollobit/COVID-19-AI-Book",
specStatus : "unofficial",
noRecTrack : "true",
maxTocLevel : 6,
processVersion : 2020,
shortName : "covid-19-ai-book",
copyrightStart : 2020,
edDraftURI : "https://hollobit.github.io/COVID-19-AI-Book/",
issueBase : "https://www.github.com/hollobit/COVID-19-AI-Book/issues",
license : "w3c-software",
editors : [
{
name : "Jonghong Jeon (전종홍)",
url : "mailto:hollobit@etri.re.kr",
w3cid : "",
company : "ETRI",
companyURL : "http://www.etri.re.kr/eng/main/index.etri"
},
{
name : "Soo-Yong Shin (신수용)",
w3cid : "",
company : "SungKyunKwan University",
companyURL : "http://saihst.skku.edu/m2/index.php"
},
{
name : "Helen Hong (홍헬렌)",
w3cid : "",
company : "Seoul Women’s University",
companyURL : "https://www.swu.ac.kr/englishindex.do"
},
{
name : "Kyuwon Shim (심규원)",
w3cid : "",
company : "Yonsei University",
companyURL : "https://medicine.yonsei.ac.kr/en/index.asp"
}
],
authors : [
{
name : "Jonghong Jeon (전종홍)",
url : "mailto:hollobit@etri.re.kr",
w3cid : "",
company : "ETRI",
companyURL : "http://www.etri.re.kr/eng/main/index.etri"
},
{
name : "In Ho Kwon (권인호)",
w3cid : "",
company : "Department of Emergency Medicine @ DongA University Hospital",
companyURL : "https://www.damc.or.kr/eng/main/main.php"
},
{
name : "Hwiyoung Kim (김휘영)",
w3cid : "",
company : "Yonsei University",
companyURL : "https://medicine.yonsei.ac.kr/en/index.asp"
},
{
name : "Joo Heung Yoon (윤주흥)",
w3cid : "",
company : "Pulmonary and Critical Care Medicine, University of Pittsburgh",
companyURL : "https://dom.pitt.edu/paccm/"
},
{
name : "Kyu-Hwan Jung (정규환)",
w3cid : "",
company : "VUNO Inc.",
companyURL : "https://www.vuno.co/"
},
{
name : "Kyoung-Ho Pyo (표경호)",
w3cid : "",
company : "Yonsei University",
companyURL : "https://www.yonsei.ac.kr/en_sc/"
}
],
otherLinks : [
{
key : "Contributors",
data : [ {
value : "In the GitHub repository",
href : "https://github.com/hollobit/COVID-19-AI-Book/graphs/contributors"
} ]
}, {
key : "Repository",
data : [ {
value : "We are on GitHub",
href : "https://github.com/hollobit/COVID-19-AI-Book/"
}, {
value : "File a bug",
href : "https://github.com/hollobit/COVID-19-AI-Book/issues"
}, {
value : "Contribute",
href : "https://github.com/hollobit/COVID-19-AI-Book/pulls"
} ]
} ],
localBiblio : {
"JSON-SCHEMA" : {
title : "JSON Schema Validation: A Vocabulary for Structural Validation of JSON",
href : "https://tools.ietf.org/html/draft-handrews-json-schema-validation-01",
authors : [ "Austin Wright", "Henry Andrews", "Geraint Luff" ],
status : "Internet-Draft",
date : "19 March 2018",
publisher : "IETF"
},
"ISO-6709" : {
title : "ISO-6709:2008 : Standard representation of geographic point location by coordinates",
href : "https://www.iso.org/standard/39242.html",
status : "Published",
date : "2008-07",
publisher : "ISO"
},
"1" : {
title : "국내외 감염병 대비.대응 동향, <cite>KIHDI 전문가 리포트</cite>",
authors : ["이다은"],
href : "http://m.bioin.or.kr/board.do?bid=policy&num=267150&cmd=view&cPage=35&cate1=02&cate2=",
status : "Published",
date : "2017-01",
publisher : "KIHDI"
},
"2" : {
title : "국가 감염병 공중보건위기 대비와 대응체계, <cite>J Korean Med Assoc</cite>, 2017 April; 60(4):296-299",
authors : ["정은경"],
href : "https://synapse.koreamed.org/Synapse/Data/PDFData/0119JKMA/jkma-60-296.pdf",
status : "Published",
date : "2017-04",
publisher : "J Korean Med Assoc"
},
"3" : {
title : "신종감염병 유행과 감염병 위기대응체계 구축, <cite>Weekly Issue</cite> 제21호",
authors : ["현정희"],
href : "https://khealth.or.kr/fileDownload?fileGubun=site&menuId=publishMgr&userFileName=Weekly%20Issue_%ED%86%B5%EA%B6%8C21%ED%98%B8.pdf&systemFileName=20172124153618498.pdf",
status : "Published",
date : "2017.5.25",
publisher : "한국건강증진개발원"
},
"4" : {
title : "신종 감염병 감염관리 현황과 대처방안, HIRA 정책동향 9권 5호",
authors : ["전병율"],
href : "http://www.hira.or.kr/download.do?src=%2Fshare%2Finternet%2Fpt%2Fbbs%2F479%2F2018%2F08%2FBZ201808033993027.pdf&fnm=2015+HIRA_9%EA%B6%8C+5%ED%98%B8_%EC%A0%95%EC%B1%85%ED%98%84%EC%95%88+02.pdf",
status : "Published",
date : "2015",
publisher : "HIRA"
},
"5" : {
title : "2019 연차실적보고서",
authors : ["편집부"],
href : "https://www.gfid.or.kr/kr/customer/work_view.php?idx=481",
status : "Published",
date : "2019",
publisher : "방역연계범부처감염병연구개발사업단"
},
"6" : {
title : "신종감염병 대응 AI 기술 동향 분석, Bio Economy Brief 81호",
authors : ["안세희"],
href : "https://www.bioin.or.kr/board.do?cmd=view&bid=tech&num=296620",
status : "Published",
date : "2020-04",
publisher : "한국바이오협회"
},
"7" : {
title : "AI 융합 감염병 연구의 현재와 미래, BioINPro Vol.73",
authors : ["안인성"],
href : "https://www.bioin.or.kr/board.do?num=294591&cmd=view&bid=report&cPage=1&cate1=all&cate2=all2",
status : "Published",
date : "2020",
publisher : "생명공학정책연구센터"
},
"8" : {
title : "개인 맞춤형 의료: AI 적용과 당면과제",
href : "https://ksp.etri.re.kr/ksp/plan-report/read?id=770",
authors : ["박종현"],
date : "2019",
publisher : "ETRI Insight report, 2019-59"
},
"9" : {
title : "인공지능과 데이터 분석으로 질병 확산을 예측할 수 있는가 ?",
href : "https://www.kisa.or.kr/public/library/IS_View.jsp?mode=view&p_No=158&b_No=158&d_No=379&cPage=4&ST=TC&SV=",
authors : ["한상기"],
date : "2020",
publisher : "KISA Report, Vol.2"
},
"10" : {
title : "머신러닝을 활용한 항암신약개발 현황과 향후 전망",
href : "https://www.bioin.or.kr/board.do;jsessionid=97AC631EF30D3452D80CA4CE742DF1EF?num=292214&cmd=view&bid=tech&cPage=2&cate1=13&cate2=all2",
authors : ["표경호"],
date : "2019",
publisher : "BRIC view 2019-T32"
},
"11" : {
title : "질병진단 인공지능 개발 동향",
href : "https://www.bioin.or.kr/board.do?num=293678&cmd=view&bid=tech",
authors : ["김규태"],
date : "2020",
publisher : "BRIC view 2020-T06"
},
"12" : {
title : "인공지능, 코로나19를 만나다",
href : "https://eiec.kdi.re.kr/policy/domesticView.do?ac=0000152232",
authors : [""],
date : "2020.4.15",
publisher : "KISDI, AI Trend Watch, 2020-4호"
},
"13" : {
title : "코로나19 대응 최일선에서 인공지능(AI)·데이터·클라우드 기업이 함께 뛴다",
href : "http://www.korea.kr/news/pressReleaseView.do?newsId=156379825",
authors : [""],
date : "2020.3.13",
publisher : "과학기술정보통신부 보도자료"
},
"14" : {
title : "중국 의료 인공지능 백서",
authors : [""],
date : "2019",
publisher : "ETRI"
},
"15" : {
title : "중국 의학 영상 인공지능 백서",
authors : [""],
date : "2019",
publisher : "ETRI"
},
"16" : {
title : "2020년 신개발 의료기기 전망 분석 보고서",
href : "https://www.nifds.go.kr/brd/m_18/view.do?seq=12504",
authors : [""],
date : "2020.3",
publisher : "식품의약품안전처"
},
"17" : {
title : "글로벌 의료기기 - 디지털 헬스케어(1): 원격의료, 코로나19에 의한 단기테마가 아닌 헬스케어 산업의 장기 트렌드 중 하나",
href : "https://www.miraeassetdaewoo.com/public/mw/blog/html/20200323130805.html?ver=20200404172547",
authors : [""],
date : "2020.3.23",
publisher : "미래에셋대우"
},
"18" : {
title : "Development and validation of a deep learning–based automated detection algorithm for major thoracic diseases on chest radiographs",
href : "https://jamanetwork.com/journals/jamanetworkopen/fullarticle/2728630",
authors : ["Hwang", "Eui Jin"],
date : "2019",
publisher : "JAMA network open 2.3 (2019): e191095-e191095"
},
"19" : {
title : "Applying data-driven imaging biomarker in mammography for breast cancer screening: preliminary study",
href : "https://www.nature.com/articles/s41598-018-21215-1",
authors : ["Kim, Eun-Kyung"],
date : "2018",
publisher : "Scientific reports 8.1 (2018): 1-8"
},
"20" : {
title : "Lunit Insight",
href : "https://insight.lunit.io/",
authors : [""],
date : "",
publisher : "Lunit"
},
"21" : {
title : "An artificial intelligence-enabled ECG algorithm for the identification of patients with atrial fibrillation during sinus rhythm: a retrospective analysis of outcome prediction",
href : "https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(19)31721-0/fulltext",
authors : ["Attia", "Zachi I."],
date : "2019",
publisher : "The Lancet 394.10201 (2019): 861-867"
},
"22" : {
title : "Handwritten Optical Character Recognition (OCR): A Comprehensive Systematic Literature Review (SLR)",
href : "https://arxiv.org/abs/2001.00139",
authors : ["Memon", "Jamshed", "Maira Sami", "Rizwan Ahmed Khan"],
date : "2020",
publisher : "arXiv:2001.00139"
},
"23" : {
title : "Clova OCR",
href : "https://clova.ai/ocr",
authors : [""],
date : "",
publisher : "Naver"
},
"24" : {
title : "Deepid3: Face recognition with very deep neural networks",
href : "https://arxiv.org/abs/1502.00873",
authors : ["Sun", "Yi"],
date : "2015",
publisher : "arXiv:1502.00873"
},
"25" : {
title : "Computerized bone age estimation using deep learning based program: evaluation of the accuracy and efficiency",
href : "https://pubmed.ncbi.nlm.nih.gov/28898126/",
authors : ["Kim, Jeong Rye"],
date : "2017",
publisher : "American Journal of Roentgenology 209.6 (2017): 1374-1380"
},
"26" : {
title : "Vuno Boneage",
href : "https://boneage.vuno.co/",
authors : [""],
date : "",
publisher : "Vuno"
},
"27" : {
title : "Points of significance: statistics versus machine learning",
href : "https://www.nature.com/articles/nmeth.4642",
authors : ["Bzdok", "Danilo", "Naomi Altman", "Martin Krzywinski"],
date : "2018",
publisher : "Nature Methods, Nature Publishing Group, 2018, pp.1-7. ffhal-01723223f"
},
"28" : {
title : "의료 AI, 현실성 없는 의학 드라마가 되지 않으려면",
href : "http://ksgd2020.org/webzine/2002/02.php",
authors : ["민현석"],
date : "2020",
publisher : "대한진단유전학회 기고문"
},
"29" : {
title : "Methodologic guide for evaluating clinical performance and effect of artificial intelligence technology for medical diagnosis and prediction",
href : "https://pubmed.ncbi.nlm.nih.gov/29309734/",
authors : ["Park, Seong Ho","Kyunghwa Han"],
date : "2018",
publisher : "Radiology 286.3 (2018): 800-809"
},
"30" : {
title : "Digital technology and COVID-19",
href : "https://www.nature.com/articles/s41591-020-0824-5",
authors : ["Ting", "Daniel Shu Wei"],
date : "2020",
publisher : "Nature medicine 26.4 (2020): 459-461"
},
"31" : {
title : "Identification of COVID-19 can be quicker through artificial intelligence framework using a mobile phone–based survey when cities and towns are under quarantine",
href : "https://pubmed.ncbi.nlm.nih.gov/32122430/",
authors : ["Rao", "Arni SR Srinivasa", "Jose A. Vazquez"],
date : "2020",
publisher : "Infection Control & Hospital Epidemiology (2020): 1-5"
},
"32" : {
title : "Worldmeters",
href : "https://www.worldometers.info/coronavirus/",
authors : [""],
date : "",
publisher : ""
},
"33" : {
title : "The role of imaging in the detection and management of COVID-19: a review",
href : "https://pubmed.ncbi.nlm.nih.gov/32356760/",
authors : ["Dong", "Di"],
date : "2020",
publisher : "IEEE Reviews in Biomedical Engineering (2020)"
},
"34" : {
title : "Artificial intelligence distinguishes COVID-19 from community acquired pneumonia on chest CT",
href : "https://pubs.rsna.org/doi/10.1148/radiol.2020200905",
authors : ["Li", "Lin"],
date : "2020",
publisher : "Radiology (2020): 200905"
},
"35" : {
title : "Addressing COVID‐19 Drug Development with Artificial Intelligence",
href : "https://onlinelibrary.wiley.com/doi/full/10.1002/aisy.202000070",
authors : ["Ho", "Dean"],
date : "",
publisher : "Advanced Intelligent Systems"
},
"36" : {
title : "Prediction models for diagnosis and prognosis of covid-19 infection: systematic review and critical appraisal",
href : "https://www.bmj.com/content/369/bmj.m1328",
authors : ["Wynants", "Laure"],
date : "2020",
publisher : "bmj 369 (2020)"
},
"37" : {
title : "Using artificial intelligence to help combat COVID-19",
href : "http://www.oecd.org/coronavirus/policy-responses/using-artificial-intelligence-to-help-combat-covid-19",
authors : [""],
date : "2020",
publisher : "OECD Policy Responses to Coronavirus (COVID-19)"
},
"38" : {
title : "How to Use AI to Fight COVID-19 and Beyond",
href : "https://www.gartner.com/en/documents/3983523/how-to-use-ai-to-fight-covid-19-and-beyond",
authors : ["Pieter den Harmer"],
date : "2020",
publisher : "Gartner Report 723862"
},
"39" : {
title : "人工智能助力新冠疫情防控 调研报告",
href : "",
authors : [""],
date : "2020.3",
publisher : "中国人工智能产业发展联盟"
},
"40" : {
title : "False-negative results of initial RT-PCR assays for COVID-19: A systematic review",
href : "https://www.medrxiv.org/content/10.1101/2020.04.16.20066787v1",
authors : ["Ingrid"],
date : "April 2020",
publisher : "medRxiv 2020.04.16.20066787"
},
"41" : {
title : "CT Imaging of the 2019 Novel Coronavirus (2019-nCoV) Pneumonia",
href : "https://pubs.rsna.org/doi/10.1148/radiol.2020200236",
authors : ["J. Lei"],
date : "Jan 2020",
publisher : "Radiology"
},
"42" : {
title : "Radiological findings from 81 patients with COVID-19 pneumonia in Wuhan, China: a descriptive study",
href : "https://www.thelancet.com/article/S1473-3099(20)30086-4/fulltext",
authors : ["H. Shi"],
date : "Feb 2020",
publisher : "The Lancet Infectious Disease"
},
"43" : {
title : "CT Imaging Features of 2019 Novel Coronavirus (2019-nCoV)",
href : "https://pubs.rsna.org/doi/10.1148/radiol.2020200230",
authors : ["M. Chung"],
date : "Feb 2020",
publisher : "Radiology"
},
"44" : {
title : "Temporal Changes of CT Findings in 90 Patients with COVID-19 Pneumonia : A Longitudinal Study",
href : "https://pubs.rsna.org/doi/full/10.1148/radiol.2020200843",
authors : ["Y. Wang"],
date : "Mar 2020",
publisher : "Radiology"
},
"45" : {
title : "Sensitivity of Chest CT for COVID-19: comparison to RT-PCR",
href : "https://pubs.rsna.org/doi/full/10.1148/radiol.2020200432",
authors : ["Y. Fang"],
date : "Feb 2020",
publisher : "Radiology"
},
"46" : {
title : "Correlation of Chest CT and RT-PCR Testing in Coronavirus Disease 2019 (COVID-19) in China: A Report of 1014 Cases",
href : "https://pubs.rsna.org/doi/full/10.1148/radiol.2020200642",
authors : ["T. Ai"],
date : "Feb 2020",
publisher : "Radiology"
},
"47" : {
title : "Clinically Applicable AI System for Accurate Diagnosis, Quantitative Measurements, and Prognosis of COVID-19 Pneumonia Using Computed Tomography",
href : "https://www.sciencedirect.com/science/article/pii/S0092867420305511",
authors : ["K. Zhang"],
date : "May 2020",
publisher : "Cell"
},
"48" : {
title : "radiopaedia",
href : "https://radiopaedia.org/cases/covid-19-pneumonia-incidental-finding-in-asymptomatic-patient-2",
authors : [""],
date : "",
publisher : ""
},
"49" : {
title : "Incidental typical COVID-19 appearance on the lung bases, visualized at abdominal CT for a patient that presented with abdominal pain and nausea",
href : "https://www.sciencedirect.com/science/article/pii/S1930043320302090",
authors : ["A. A. Sendi"],
date : "May 2020",
publisher : "Radiology Case Reports"
},
"50" : {
title : "Artificial Intelligence Distinguishes COVID-19 from Community Acquired Pneumonia on Chest CT",
href : "https://pubs.rsna.org/doi/10.1148/radiol.2020200905",
authors : ["L. Li"],
date : "Mar 2020",
publisher : "Radiology"
},
"51" : {
title : "Artificial intelligence–enabled rapid diagnosis of patients with COVID-19",
href : "https://www.nature.com/articles/s41591-020-0931-3",
authors : ["X. Mei"],
date : "May 2020",
publisher : "Nature Medicine"
},
"52" : {
title : "An artificial intelligence-based first-line defence against COVID-19: digitally screening citizens for risks via a chatbot",
href : "https://doi.org/10.1101/2020.03.25.008805",
authors : ["Alistair Martin", "Jama Nateqi", "Stefanie Gruarin", "Nicolas Munsch", "Isselmou Abdarahmane", "Bernhard Knapp"],
date : "April 2020",
publisher : "bioRxiv"
},
"53" : {
title : "Rapidly Bootstrapping a Question Answering Dataset for COVID-19",
href : "https://arxiv.org/abs/2004.11339",
authors : ["Raphael Tang", "Rodrigo Nogueira", "Edwin Zhang"],
date : "23 April 2020",
publisher : "arXiv"
},
"54" : {
title : "Chatbots in the fight against the COVID-19 pandemic",
href : "https://www.nature.com/articles/s41746-020-0280-0",
authors : ["Adam S. Miner", "Liliana Laranjo", "A. Baki Kocaballi"],
date : "2020",
publisher : "npj Digital Medicine volume 3, Article number: 65"
},
"55" : {
title : "A public data lake for analysis of COVID-19 data",
href : "https://aws.amazon.com/blogs/big-data/a-public-data-lake-for-analysis-of-covid-19-data/",
authors : [""],
date : "",
publisher : "amazon blogs"
},
"56" : {
title : "The Future of Digital Health with Federated Learning",
href : "https://arxiv.org/abs/2003.08119",
authors : ["Nicola Rieke", "Jonny Hancox", "Wenqi Li"],
date : "18 Mar 2020",
publisher : "arXiv"
},
"57" : {
title : "The effect of control strategies to reduce social mixing on outcomes of the COVID-19 epidemic in Wuhan, China: a modelling study",
href : "https://doi.org/10.1016/S2468-2667(20)30073-6",
authors : ["Kiesha Prem", "Yang Liu", "Timothy W Russell", "Adam J Kucharski", "Rosalind M Eggo", "Nicholas Davies"],
date : "March 25, 2020",
publisher : "The Lancet"
},
"58" : {
title : "COVID-19 resources",
href : "http://www.healthdata.org/covid",
authors : [""],
date : "",
publisher : "healthdata"
},
"59" : {
title : "COVID-19 Forecasts",
href : "https://reichlab.io/covid19-forecast-hub/",
authors : [""],
date : "",
publisher : "reichlab"
},
"60" : {
title : "Projecting the transmission dynamics of SARS-CoV-2 through the postpandemic period",
href : "https://science.sciencemag.org/content/368/6493/860",
authors : ["Stephen M. Kissler", "Christine Tedijanto", "Edward Goldstein", "Yonatan H. Grad", "Marc Lipsitch"],
date : "22 May 2020",
publisher : "Science, Vol. 368, Issue 6493, pp. 860-868"
},
"61" : {
title : "REMAP-CAP response to the COVID-19 pandemic",
href : "https://www.remapcap.org/coronavirus",
authors : [""],
date : "",
publisher : "remapcap"
},
"62" : {
title : "New Cases of COVID-19 In World Countries",
href : "https://coronavirus.jhu.edu/data/new-cases",
authors : [""],
date : "",
publisher : "Johns Hopkins University"
},
"63" : {
title : "Evaluating the Effectiveness of Social Distancing Interventions to Delay or Flatten the Epidemic Curve of Coronavirus Disease",
href : "https://wwwnc.cdc.gov/eid/article/26/8/20-1093_article",
authors : [""],
date : "",
publisher : "CDC"
},
"64" : {
title : "의료 인공지능 10대 표준화 동향 및 전망",
href : "https://ettrends.etri.re.kr/ettrends/182/0905182001/",
authors : ["전종홍", "이강찬"],
date : "2020.4",
publisher : "ETRI 전자통신동향분석, 35권 2호 (통권 182)"
},
"65" : {
title : "ITU-T/WHO FG-AI4H",
href : "https://www.itu.int/en/ITU-T/focusgroups/ai4h/",
authors : [""],
date : "",
publisher : "ITU-T/WHO"
},
"66" : {
title : "ICT 융합 표준 프레임워크 - 스마트 헬스 2019",
href : "https://ksp.etri.re.kr/ksp/plan-report/read?id=772",
authors : ["전종홍", "차홍기"],
date : "",
publisher : "ETRI"
},
"67" : {
title : "COVID-19 Imaging-based AI Research Collection",
href : "https://github.com/HzFu/COVID19_imaging_AI_paper_list",
authors : [""],
date : "",
publisher : ""
},
"68" : {
title : "How artificial intelligence and machine learning can help healthcare systems respond to COVID-19",
href : "https://www.vanderschaar-lab.com/NewWebsite/covid-19/post1/paper.pdf",
authors : ["Mihaela van der Schaar", "John Humphrey Plummer"],
date : "March 27, 2020",
publisher : "vanderschaar-lab"
},
"69" : {
title : "Mapping the landscape of artificial intelligence applications against COVID-19",
href : "https://arxiv.org/abs/2003.11336",
authors : ["Joseph Bullock", "Alexandra Luccioni", "Katherine Hoffmann Pham", "Cynthia Sin Nga Lam", "Miguel Luengo-Oroz"],
date : "April 2020",
publisher : "ArXiv"
},
"70" : {
title : "Review of Artificial Intelligence Techniques in Imaging Data Acquisition, Segmentation and Diagnosis for COVID-19",
href : "https://doi.org/10.1109/RBME.2020.2987975",
authors : ["Feng Shi", "Jun Wang", "Jun Shi", "Ziyan Wu", "Qian Wang", "Zhenyu Tang", "Kelei He", "Yinghuan Shi", "Dinggang"],
date : "16 April 2020",
publisher : "IEEE Reviews in Biomedical Engineering"
},
"71" : {
title : "The role of imaging in the detection and management of COVID-19: a review",
href : "https://doi.org/10.1109/RBME.2020.2990959",
authors : ["Di Dong", "Zhenchao Tang", "Shuo Wang", "Hui Hui", "Lixin Gong", "Yao Lu", "Zhong Xue"],
date : "27 April 2020",
publisher : "IEEE Reviews in Biomedical Engineering"
},
"72" : {
title : "Artificial intelligence in the fight against COVID-19",
href : "https://www.bruegel.org/2020/03/artificial-intelligence-in-the-fight-against-covid-19/",
authors : ["Petropoulos G"],
date : "23 March 2020",
publisher : "Bruegel"
},
"73" : {
title : "Artificial intelligence vs COVID19: limitations, constraints and pitfalls",
href : "https://doi.org/10.1007/s00146-020-00978-0",
authors : ["Wim Naudé"],
date : "28 April 2020",
publisher : "AI & SOCIETY (2020)"
},
"74" : {
title : "Data sharing for novel coronavirus (COVID-19)",
href : "http://dx.doi.org/10.2471/BLT.20.251561",
authors : ["Vasee Moorthy", "Ana Maria Henao Restrepo", "Marie-Pierre Preziosi", "Soumya Swaminathan"],
date : "2020",
publisher : "WHO, Bulletin of the World Health Organization 2020;98:150"
},
"75" : {
title : "Global research on coronavirus disease (COVID-19)",
href : "https://www.who.int/emergencies/diseases/novel-coronavirus-2019/global-research-on-novel-coronavirus-2019-ncov",
authors : [""],
date : "",
publisher : "WHO"
},
"76" : {
title : "Covid-19: Open-Data Resources for Monitoring, Modeling, and Forecasting the Epidemic",
href : "https://doi.org/10.3390/electronics9050827",
authors : ["Teodoro Alamo", "Daniel G. Reina", "Martina Mammarella", "Alberto Abella"],
date : "2020",
publisher : "Electronics 2020, 9(5), 827"
},
"77" : {
title : "Artificial Intelligence against COVID-19: An early review",
href : "https://www.iza.org/publications/dp/13110/artificial-intelligence-against-covid-19-an-early-review",
authors : ["Naudé W"],
date : "2020",
publisher : "IZA Discussion Paper no. 13110, Bonn"
},
"78" : {
title : "해외 코로나19 관련 데이터 개방 현황 및 주요 질병관리 통계 기관의 데이터 개방 현황",
href : "https://www.data.go.kr/bbs/rcr/selectRecsroom.do?originId=PDS_0000000000000704&atchFileId=FILE_000000001617068",
authors : [""],
date : "2020.4.8",
publisher : "NIA Global Open Data Now, 제20호"
},
"79" : {
title : "The 8 Principles of Open Government Data",
href : "http://www.opengovdata.org/home/8principles",
authors : ["Tauberer, J.", "Lessig, L."],
date : "2017",
publisher : "opengovdata"
},
"80" : {
title : "MEloda 5: A Metric to Assess Open Data Reusability",
href : "http://www.elprofesionaldelainformacion.com/contenidos/2019/nov/abella-ortiz-pablos.pdf",
authors : ["Abella, A.", "Ortiz-de Urbina-Criado, M.", "De-Pablos-Heredero, C."],
date : "2019",
publisher : "elprofesionaldelainformacion"
},
"81" : {
title : "CORD-19: The Covid-19 Open Research Dataset",
href : "https://arxiv.org/abs/2004.10706",
authors : ["Lucy Lu Wang", "Kyle Lo", "Yoganand Chandrasekhar", "Russell Reas", "Jiangjiang Yang"],
date : "April 2020",
publisher : "arXiv"
},
"82" : {
title : "왜 오픈사이언스가 대응을 위해 중요한가(Why open science is critical to combatting COVID-19)",
href : "http://www.oecd.org/coronavirus/policy-responses/why-open-science-is-critical-to-combatting-covid-19-cd6ab2f9/",
authors : [""],
date : "2020",
publisher : "OECD"
},
"83" : {
title : "COVID-Net: A Tailored Deep Convolutional Neural Network Design for Detection of COVID-19 Cases from Chest X-Ray Images",
href : "https://arxiv.org/abs/2003.09871",
authors : ["Linda Wang", "Zhong Qiu Lin", "Alexander Wong"],
date : "May 2020",
publisher : "arXiv"
},
"84" : {
title : "COVID-19 image data collection",
href : "https://arxiv.org/abs/2003.11597",
authors : ["J. P. Cohen", "P. Morrison", "L. Dao"],
date : "2020",
publisher : "arXiv"
},
"85" : {
title : "COVID-CT-Dataset: A CT scan dataset about COVID-19",
href : "https://arxiv.org/abs/2003.13865",
authors : ["J. Zhao", "Y. Zhang", "X. He", "P. Xie"],
date : "2020",
publisher : "arXiv"
},
"86" : {
title : "Mapping the landscape of artificial intelligence applications against COVID-19",
href : "https://arxiv.org/abs/2003.11336",
authors : ["Joseph Bullock", "Alexandra Luccioni", "Katherine Hoffmann Pham", "Cynthia Sin Nga Lam", "Miguel Luengo-Oroz"],
date : "April 2020",
publisher : "ArXiv"
},
"87" : {
title : "인공지능 최신 동향과 시사점",
href : "https://spri.kr/posts/view/22890?code=ai_brief",
authors : [""],
date : "2020.4.7",
publisher : "소프트웨어정책연구소, SPRi AI Brief AIB-011호"
},
"88" : {
title : "工业和信息化部办公厅关于运用新一代信息技术支撑服务疫情防控和复工复产工作的通知",
href : "http://www.gov.cn/zhengce/zhengceku/2020-02/19/content_5480843.htm",
authors : [""],
date : "",
publisher : "china"
},
"89" : {
title : "Collection of Artificial Intelligence resources to the fight against Coronavirus (COVID-19)",
href : "https://github.com/hollobit/COVID-19-AI/",
authors : [""],
date : "",
publisher : "Jonghong Jeon"
},
"90" : {
title : "COVID-19 Has a Data Governance Problem",
href : "https://www.datanami.com/2020/05/06/covid-19-has-a-data-governance-problem/",
authors : [""],
date : "",
publisher : "datanami"
},
"91" : {
title : "한국의 코로나19 대응 ICT사례집 Korean ICT Services against COVID-19 Pandemic",
href : "https://www.nia.or.kr/common/board/Download.do?bcIdx=22151&cbIdx=39485&fileNo=7",
authors : [""],
date : "2020.5.18",
publisher : "NIA"
},
"92" : {
title : "한국의 감염병 역학조사 강화방안: 중동호흡기증후군 유행 경험에서의 교훈",
href : "https://www.e-sciencecentral.org/articles/pubreader/SC000014359",
authors : ["이창환", "기모란"],
date : "2015 August",
publisher : "J Korean Med Assoc 58(8): 706-713"
},
"93" : {
title : "휴대폰 위치 추적 데이터와 코로나19: Q&A",
href : "https://www.hrw.org/ko/news/2020/05/13/375128",
authors : [""],
date : "",
publisher : "Human Rights Watch"
},
"94" : {
title : "Information Technology–Based Tracing Strategy in Response to COVID-19 in South Korea—Privacy Controversies",
href : "https://jamanetwork.com/journals/jama/fullarticle/2765252",
authors : ["Sangchul Park", "Gina Jeehyun Choi", "Haksoo Ko"],
date : "2020",
publisher : "JAMA. 2020;323(21):2129-2130"
},
"95" : {
title : "[3.11.수.석간] 코로나19 역학조사 신속 지원 시스템 공동구축에 나서",
href : "https://www.cdc.go.kr/board/board.es?mid=a20501000000&bid=0015&list_no=366510&act=view",
authors : [""],
date : "2020.3.11",
publisher : "대한민국 정부, 부처공동 보도자료"
},
"96" : {
title : "MIT Technology Review Covid Tracing Tracker",
href : "https://www.technologyreview.com/2020/05/07/1000961/launching-mittr-covid-tracing-tracker/",
authors : [""],
date : "",
publisher : "MIT Technology Review"
},
"97" : {
title : "코로나19 추적 조사와 프라이버시",
href : "https://www.bioin.or.kr/board.do?num=296755&cmd=view&bid=policy",
authors : ["박미정"],
date : "2020",
publisher : "BRIC View 2020-TX6"
},
"98" : {
title : "COVID-19 Contact Tracing and Privacy:Studying Opinion and Preferences",
href : "https://arxiv.org/abs/2005.06056",
authors : ["Lucy Simko", "Ryan Calo"],
date : "May 12 2020",
publisher : "arXiv"
},
"99" : {
title : "Privacy-Preserving Contact Tracing: current solutions and open questions",
href : "https://arxiv.org/abs/2004.06818",
authors : ["Qiang Tang"],
date : "14 April 2020",
publisher : "arXiv"
},
"100" : {
title : "Coronavirus contact-tracing apps: can they slow the spread of COVID-19?",
href : "https://www.nature.com/articles/d41586-020-01514-2",
authors : ["Mark Zastrow"],
date : "19 May 2020",
publisher : "Nature"
},
"101" : {
title : "COVID-19 apps",
href : "https://en.wikipedia.org/wiki/COVID-19_apps",
authors : [""],
date : "",
publisher : "wikipedia"
},
"102" : {
title : "Security analysis of the covid-19 contact tracing specifications by APPLE INC. and GOOGLE INC.",
href : "https://eprint.iacr.org/2020/428",
authors : ["G. Yaron"],
date : "",
publisher : "Cryptomnium LLC ePrint Archive: Report 2020/428"
},
"103" : {
title : "COVI White Paper - Version 1.0",
href : "https://arxiv.org/abs/2005.08502",
authors : ["Hannah Alsdurf", "Yoshua Bengio", "Tristan Deleu", "Prateek Gupta", "Daphne Ippolito", "Richard Janda"],
date : "18 May 2020",
publisher : "arXiv"
},
"104" : {
title : "The need for privacy with public digital contact tracing during the COVID-19 pandemic",
href : "https://doi.org/10.1016/S2589-7500(20)30133-3",
authors : ["Yoshua Bengio", "Richard Janda", "Yun William Yu", "Daphne Ippolito", "Max Jarvie", "Dan Pilat"],
date : "June 02, 2020",
publisher : "The Lancet"
},
"105" : {
title : "Privacy and Ethics Recommendations for Computing Applications Developed to Mitigate COVID-19",
href : "https://epic.org/foia/epic-v-ai-commission/NSCAI-contact-tracing-white-paper.pdf",
authors : [""],
date : "May 7, 2020",
publisher : "인공 지능에 관한 국가 안보위원회 (NSCAI)"
},
"106" : {
title : "Joint civil society statement: States use of digital surveillance technologies to fight pandemic must respect human rights",
href : "https://www.amnesty.org/download/Documents/POL3020812020ENGLISH.pdf",
authors : [""],
date : "",
publisher : "Amnesty International"
},
"107" : {
title : "Cellphone tracking could help stem the spread of coronavirus. Is privacy the price?",
href : "https://DOI.org/10.1126/science.abb8296",
authors : ["Servick K"],
date : "March 22, 2020",
publisher : "Science"
},
"108" : {
title : "Quantifying SARS-CoV-2 transmission suggests epidemic control with digital contact tracing",
href : "https://science.sciencemag.org/content/368/6491/eabb6936",
authors : ["Ferretti L", "Wymant C", "Kendall M"],
date : "May 8, 2020",
publisher : "Science"
},
"109" : {
title : "How Reliable is Smartphone-based Electronic Contact Tracing for COVID-19?",
href : "https://arxiv.org/abs/2005.05625",
authors : ["Philipp H. Kindt", "Trinad Chakraborty", "Samarjit Chakraborty"],
date : "May 22 2020",
publisher : "arXiv"
},
"110" : {
title : "Digital Contact Tracing for Pandemic Response: Ethics and Governance Guidance",
href : "https://doi.org/10.1353/book.75831",
authors : [""],
date : "2020",
publisher : "Johns Hopkins University Press"
},
"111" : {
title : "의료 인공지능 표준화 동향",
href : "https://ettrends.etri.re.kr/ettrends/179/0905179012/",
authors : ["전종홍", "이강찬"],
date : "2019",
publisher : "전자통신동향분석, 34권 5호"
},
"112" : {
title : "An Algorithm based on Deep Learning for Predicting In-Hospital Cardiac Arrest",
href : "https://pubmed.ncbi.nlm.nih.gov/29945914/",
authors : ["Kwon JM", "Lee Y", "Lee S"],
date : "2018",
publisher : "J Am. Heart Assoc. 2018;7(13):e008678"
},
"113" : {
title : "[인간·공감·AI]①신종 감염병의 시대, AI가 데이터를 들여다보기 시작했다",
href : "http://dongascience.donga.com/news.php?idx=34798",
authors : [""],
date : "2020.3.11",
publisher : "동아 사이언스"
},
"114" : {
title : "Coronavirus resource center",
href : "https://coronavirus.jhu.edu/map.html",
authors : [""],
date : "",
publisher : ""
},
"115" : {
title : "Compassionate Use of Remdesivir for Patients with Severe Covid-19",
href : "https://doi.org/10.1056/NEJMoa2007016",
doi : "",
authors : ["Grein J", "Ohmagari N", "Shin D", "Diaz G", "Asperges E", "Castagna A"],
date : "2020",
publisher : "N Engl J Med"
},
"116" : {
title : "Remdesivir for severe acute respiratory syndrome coronavirus 2 causing COVID-19: An evaluation of the evidence",
href : "https://doi.org/10.1016/j.tmaid.2020.101647",
authors : ["Cao YC", "Deng QX", "Dai SX"],
date : "",
publisher : "Travel Med Infect Dis 2020:101647"
},
"117" : {
title : "Remdesivir as a possible therapeutic option for the COVID-19",
href : "https://doi.org/10.1016/j.tmaid.2020.101615",
doi : "",
authors : ["Al-Tawfiq JA", "Al-Homoud AH", "Memish ZA"],
date : "",
publisher : "Travel Med Infect Dis 2020;34:101615"
},
"118" : {
title : "Of chloroquine and COVID-19",
href : "https://doi.org/10.1016/j.antiviral.2020.104762",
authors : ["Touret F", "de Lamballerie X"],
date : "2020",
publisher : "Antiviral Res 2020;177:104762"
},
"119" : {
title : "New insights on the antiviral effects of chloroquine against coronavirus: what to expect for COVID-19",
href : "https://doi.org/10.1016/j.ijantimicag.2020.105938",
authors : ["Devaux CA", "Rolain JM", "Colson P", "Raoult D"],
date : "2020",
publisher : "Int J Antimicrob Agents 2020;55(5):105938"
},
"120" : {
title : "Chloroquine and hydroxychloroquine as available weapons to fight COVID-19",
href : "https://DOI.org/10.1016/j.ijantimicag.2020.105932",
authors : ["Colson P", "Rolain JM", "Lagier JC", "Brouqui P", "Raoult D"],
date : "",
publisher : "Int J Antimicrob Agents 2020;55(4):105932"
},
"121" : {
title : "A Trial of Lopinavir-Ritonavir in Adults Hospitalized with Severe Covid-19",
href : "https://DOI.org/10.1056/NEJMoa2001282",
authors : ["Cao B", "Wang Y", "Wen D", "Liu W", "Wang J", "Fan G"],
date : "2020",
publisher : "N Engl J Med 2020;382(19):1787-99"
},
"122" : {
title : "Case of the Index Patient Who Caused Tertiary Transmission of COVID-19 Infection in Korea: the Application of Lopinavir/Ritonavir for the Treatment of COVID-19 Infected Pneumonia Monitored by Quantitative RT-PCR",
href : "https://doi.org/10.3346/jkms.2020.35.e79",
authors : ["Lim J", "Jeon S", "Shin HY", "Kim MJ", "Seong YM", "Lee WJ"],
date : "2020",
publisher : "J Korean Med Sci 2020;35(6):e79"
},
"123" : {
title : "The correlation between viral clearance and biochemical outcomes of 94 COVID-19 infected discharged patients",
href : "https://doi.org/10.1007/s00011-020-01342-0",
authors : ["Yuan J", "Zou R", "Zeng L", "Kou S", "Lan J", "Li X"],
date : "2020",
publisher : "Inflamm Res 2020;69(6):599-606"
},
"124" : {
title : "BenevolentAI",
href : "https://www.benevolent.com/",
authors : [""],
date : "",