[ Python ] class weight 쉽게 구하는 법
도움이 되셨다면, 광고 한번만 눌러주세요. 블로그 관리에 큰 힘이 됩니다 ^^ 기존에 내가 하던 방식은 일일히 계산을 하였지만, 역시 찾아보면 다 있는 것 같다. from sklearn.utils.class_weight import compute_class_weight label = [0] * 100 + [1] * 50 + [2] * 5 compute_class_weight(class_weight = "balanced" , classes=np.unique(label), y = label) 보통 이걸 쓰는 이유는 class 의 imbalance할 때 class에 따른 가중치를 부여하고 싶을 때 사용한다. from sklearn.linear_model import LogisticRegression clf =..
2019.11.24