roc_auc에서 DataConversionWarning 발생
체험환경 2유형 학습중에 DataConversionWarning가 발생해서 문의드립니다. 아래와 같이 코드 작성 후에 roc_auc로 성능평가하는 과정에서 워닝이 발생했는데 이유가 무엇인가요??
# print(train.shape, test.shape) # (3500, 11) (2482, 10)
# print(train.isnull().sum())
# print(test.isnull().sum())
train = train.fillna({'환불금액' : train['환불금액'].median()})
test = test.fillna({'환불금액' : test['환불금액'].median()})
# print(train.isnull().sum().sum())
# print(test.isnull().sum().sum())
# print(train.info())
# print(test.info())
# print(train.describe(include='O'))
# print(test.describe(include='O'))
# print(train.head())
target = train.pop('성별')
train = train.drop(['회원ID'], axis=1)
test_id = test.pop('회원ID')
# print(train.shape, test.shape)
c_train = train.select_dtypes(exclude='number')
n_train = train.select_dtypes(include='number')
c_test = test.select_dtypes(exclude='number')
n_test = test.select_dtypes(include='number')
from sklearn.preprocessing import LabelEncoder
for i in c_train.columns:
le = LabelEncoder()
c_train[i] = le.fit_transform(c_train[[i]])
c_test[i] = le.transform(c_test[[i]])
train = pd.concat([c_train, n_train], axis=1)
test = pd.concat([c_test, n_test], axis=1)
# print(train.head())
# print(train.shape, test.shape)
from sklearn.model_selection import train_test_split
x_tr, x_val, y_tr, y_val = train_test_split(train, target, random_state=2024, test_size=0.2, stratify=target)
print(x_tr.shape, x_val.shape, y_tr.shape, y_val.shape)
from sklearn.ensemble import RandomForestClassifier
rfc = RandomForestClassifier(random_state=2024)
rfc.fit(x_tr, y_tr)
pred1 = rfc.predict_proba(x_val)
print(pred1[:,1].shape)
print(y_val.shape)
from sklearn.metrics import roc_auc_score
print(roc_auc_score(y_val, pred1[:,1]))
>>
프로세스가 시작되었습니다.(입력값을 직접 입력해 주세요)
> (2800, 9) (700, 9) (2800,) (700,)
(700,)
(700,)
0.6341283030687979
/usr/local/lib/python3.9/dist-packages/sklearn/utils/validation.py:63: DataConversionWarning: A column-vector y was passed when a 1d array was expected. Please change the shape of y to (n_samples, ), for example using ravel().
return f(*args, **kwargs)
/usr/local/lib/python3.9/dist-packages/sklearn/utils/validation.py:63: DataConversionWarning: A column-vector y was passed when a 1d array was expected. Please change the shape of y to (n_samples, ), for example using ravel().
return f(*args, **kwargs)
/usr/local/lib/python3.9/dist-packages/sklearn/utils/validation.py:63: DataConversionWarning: A column-vector y was passed when a 1d array was expected. Please change the shape of y to (n_samples, ), for example using ravel().
return f(*args, **kwargs)
/usr/local/lib/python3.9/dist-packages/sklearn/utils/validation.py:63: DataConversionWarning: A column-vector y was passed when a 1d array was expected. Please change the shape of y to (n_samples, ), for example using ravel().
return f(*args, **kwargs)
프로세스가 종료되었습니다.
답변 1
로지스틱회귀, 회귀
0
28
2
회귀 문제를 풀때 질문입니다.
0
32
1
불균형 처리 후 성능이 더 낮아졌다면,
0
44
2
실기 체험 제2유형 에러 문의
0
35
1
LIGHTGBM 으로 하면 pred값이 소수점 6자리까지 나오는게 맞나요
0
35
2
3번문제 등분산 가정
0
35
2
작업형3 target 형 변환 질문
0
29
2
[작업형1] 연습문제 섹션1 ~ 10 의 section4
0
23
3
원핫인코딩과 레이블 인코딩에서 concat
0
44
2
제2유형 질문입니다.
0
39
2
C()
0
36
2
작업형 2에서 strafity 적용 유무
0
43
2
수강 기간 연장 가능 여부 문의드립니다.
0
46
1
ols
0
36
2
2유형 작성관련 질문(일반 심화)
0
30
2
2유형 작성관련 질문
0
29
2
2유형 object컬럼 개수 다르면
0
37
2
코딩팡질문이요ㅠㅠ
0
36
2
관찰값과 기대값의 개념이 헷갈립니다.
0
19
2
작업형2 ID 컬럼 삭제 질문
0
39
2
2유형 작성관련 질문
0
27
2
memoryerror 질문
0
21
2
작업형 유형2 이렇게 고정 템플릿으로 가져가도 될까요?
0
37
1
ID 삭제 필수 인가요?
0
33
3





