AI4 [Medical][Data] Creation and validation of a chest X-ray dataset with eye-tracking and report dictation for AI development, Sci Data 8, 92 (2021)(논문리뷰) ✨ ABSTRACT○ Developing a rich dataset : CXR image, transcribed radiology report text, radiologist's dictation audio and eye gaze coordinates data.○ Validating dataset by using deep learning experiments . ✨ BACKGROUND○ In the past five decades eye-tracking has been extensively used in radiology for education, perception understadning, and fatigue measurement.더보기1. Waite, S. A. et al. Analysis.. 2024. 1. 11. [AI][Medical] Follow My Eye: Using Gaze to Supervise Computer-Aided Diagnosis (IEEE Trans Med Imaging. 2022 Jul) (논문리뷰) 원문출처: https://ieeexplore.ieee.org/document/9694633 Follow My Eye: Using Gaze to Supervise Computer-Aided DiagnosisWhen deep neural network (DNN) was first introduced to the medical image analysis community, researchers were impressed by its performance. However, it is evident now that a large number of manually labeled data is often a must to train a properly functionieeexplore.ieee.org ✨ ABSTRA.. 2024. 1. 8. [AI] What is ResNet? 📍 What is ImageNet? ImageNet challenge는 Computer vision에서 유명한 challenge다. ImageNet은 수많은 이미지들의 집합을 데이터베이스에 저장해둔 것으로, 이를 classification하는 task로 모델의 성능을 겨뤄왔다. (*Top-5 error란? 1개당 prediction 결과를 5개 유추할 수 있게 하고 그 5개 중 정답이 있으면 accurate 한 것으로 간주.) 위의 그래프를 보면 2012년 AlexNet으로 유의미한 error 감소가 나타나고, 2015년 ResNet으로 처음 인간을 뛰어넘는 성능을 보인 것을 알 수 있다. 📍 What is ResNet? 그렇다면 ResNet은 무엇일까? He, Kaiming; Zhang, Xiangyu.. 2024. 1. 5. [Python][AI] pandas, numpy 기초 함수 정리 array([[-1.5, 0.5], [ 1. , 0. ]])기초인공지능 수업 Project를 하면서 pandas, numpy 함수를 엄청 쓰는데,정리해두면 좋을 것 같아서 끄적끄적 해보도록 하겠다. [Pandas] .dropna() Missing value가 있는 행을 삭제하는 함수. A B C0 1.0 NaN 11 2.0 2.0 22 3.0 3.0 33 NaN 4.0 44 5.0 5.0 5만일 데이터가 위와 같을 때 data = data.dropna()를 해준다면 아래와 같이 정리된다. A B C1 2.0 2.0 22 3.0 3.0 34 5.0 5.0 5 [NumPy] concatenate()배열을 결합, 연결해주는.. 2023. 10. 9. 이전 1 다음