Recent Posts

[ML] 3-5. 평가 - 최종 평가 지표 함수

less than 1 minute read

```python import pandas as pd import numpy as np from sklearn.model_selection import train_test_split from sklearn.linear_model import LogisticRegression fro...

[ML] 3-4. 평가 - ROC 곡선과 AUC

1 minute read

ROC 곡선 ROC(Receiver Operation Characteristic Curve)는 수신자 판단곡선이라고 불리는데 이는 2차대전 때 통신 장비 성능 평가를 위해 고안된 수치이다. 일반적으로 의학 분야에서 많이 사용되지만, 머신러닝의 이진 분류 모델의 예측 성능을 판단하는...