전체 글 23

[논문리뷰] Segment Any Anomaly without Training viaHybrid Prompt Regularization

Cao, Yunkang, et al. "Segment any anomaly without training via hybrid prompt regularization." arXiv preprint arXiv:2305.10724 (2023). [2305.10724] Segment Any Anomaly without Training via Hybrid Prompt Regularization (arxiv.org) Segment Any Anomaly without Training via Hybrid Prompt Regularization We present a novel framework, i.e., Segment Any Anomaly + (SAA+), for zero-shot anomaly segmentatio..

논문 리뷰 2024.03.19

데이터에 NULL이 포함되면 어떻게 처리해야할까? (결측치 처리)

데이터셋에서 NULL 값이 있을 경우, 어떻게 해야할까요? 이번에는 데이터셋에 NULL 값이 표함된 경우 어떻게 해결하면 되는지 다룹니다. 데이터 정보가 빈/ 없는 데이터은 NULL로 표시되는데, 이를 " 데이터가 결측치를 포함하고 있다"라고 표현합니다. 먼저, 데이터셋에 NULL값이 포함되어 있는지 확인하기 위해 isnull(), isna() 함수를 사용할 수 있습니다. # true/false로 null인지 아닌지 출력하는 함수 df.isnull() df.isna() #null 값의 개수 확인 df.isnull().sum() df.isna().sum() 결측치가 존재할 때, 우리는 어떤 식으로 결측치가 만들어 지는 것이고? 그 결측치를 어떻게 처리해야되는가?를 고민해야합니다. 전체 데이터셋의 1% 미만..

[논문 리뷰] Learning Transferable Visual Models From Natural Language Supervision

Radford, Alec, et al. "Learning transferable visual models from natural language supervision." International conference on machine learning. PMLR, 2021. Learning Transferable Visual Models From Natural Language Supervision (mlr.press) Learning Transferable Visual Models From Natural Language Supervision State-of-the-art computer vision systems are trained to predict a fixed set of predetermined ..

논문 리뷰 2024.03.15

데이터 전처리는 무엇이고, 왜 해야할까요?

해당 글에서는 1. 데이터 전처리가 무엇인지?2. 데이터 전치리가 왜 필요한지?3. 데이터 수집 과정에서 '방해요소와 데이터 전처리의 효과' 에 대한 내용을 다룹니다.  1. 데이터 전처리는 무엇일까?데이터 전처리는 데이터 분석을 위해 수집한 데이터를 분석에 적합한 형태로 가공하는 과정입니다. 데이터 분석 단계는 '1) 데이터 습득/선택 2) 데이터 전처리 3) 데이터 마이닝 4) 해석평가'로 이루어지는데, 데이터 전처리 과정은 2번째 단계에 해당합니다. 크게는 데이터 분석, 작제는 데이터 전처리는 주로 AI 모델을 통한 학습 전에 해당 데이터를 학습에 편하게 변형하는 과정에서 많이 사용됩니다.2. 데이터 전처리는 왜 필요할까?데이터 전처리는 데이터 분석 파이프라인을 구성하는데 있어 중요한 단계입니다. ..

[논문 리뷰] IM-IAD: Industrial Image Anomaly Detection Benchmark in Manufacturing

Xie, Guoyang, et al. "Im-iad: Industrial image anomaly detection benchmark in manufacturing." IEEE Transactions on Cybernetics (2024). https://paperswithcode.com/paper/im-iad-industrial-image-anomaly-detection Papers with Code - IM-IAD: Industrial Image Anomaly Detection Benchmark in Manufacturing Implemented in 2 code libraries. paperswithcode.com Abstract Image anomaly detection (IAD) is an em..

논문 리뷰 2024.03.06

[논문 리뷰] Uncertainty-Aware Multi-Modal Ensembling for Severity Prediction of Alzheimer's Dementia

Sarawgi, Utkarsh, et al. "Uncertainty-Aware Multi-Modal Ensembling for Severity Prediction of Alzheimer's Dementia." arXiv preprint arXiv:2010.01440 (2020). Uncertainty-Aware Multi-Modal Ensembling for Severity Prediction of Alzheimer's Dementia | Papers With Code Papers with Code - Uncertainty-Aware Multi-Modal Ensembling for Severity Prediction of Alzheimer's DementiaImplemented in one code li..

논문 리뷰 2024.02.29

불확실성(Uncertainty)란 무엇일까?

오늘은 불확실성(Uncertainty)가 무엇인지 간단하게 다루어보고자 합니다. 불확실성의 정의와 필요성을 간단히 다루고, 불확실성 유형에는 무엇이 있는지 함께 나누고자 합니다.[불확실성의 정의와 필요성]최신 딥러닝 모델들은 더 큰 모델을 더 많은 데이터로 학습을 진행하고 있습니다. 하지만 모델이 커질수록 해석하기가 어려우며, 해석하기 어려운 딥러닝 모델의 출력값을 얼마나 신뢰할 수 있을까요?딥러닝의 신뢰의 문제는 요즘 자율주행, 헬스케어 등의 여러 분야에서 AI의 잘못된 판단이 결과에 큰 영향을 줄 수 있는 영역에서 중요하게 여겨지고 있습니다.  불확실성은 이러한 신뢰의 문제를 해결하는데 주요한 KEY POINT로 떠오르고 있습니다. 불확실성(Uncertainty)은 완전하지 않거나 알 수 없는 정보를..