-
ValueError: Unknown label type: 'continuous'프로그래밍/에러 처리 2021. 3. 12. 12:38반응형
ValueError: Unknown label type: 'continuous'
forest = RandomForestClassifier(n_estimators=100)
forest.fit(x_train, y_train)
에서 y_train의 값이 정수가 아닌 실수로 이루어져있어서 생긴 에러다.
y_train의 값을 모두 정수(0 또는 1 등)로 변경하면 해결된다.
반응형'프로그래밍 > 에러 처리' 카테고리의 다른 글
AttributeError: module 'cv2' has no attribute 'xfeatures2d' (0) 2022.11.29 파이썬 No module named 에러 install 명령어 모음 (0) 2021.03.12 ERROR : server port 11002 is already in use (0) 2021.03.11 [Bokeh] 동적 그래프 그리기 (0) 2021.02.26 [Bokeh] NameError 에러 모음 및 해결방안 (0) 2021.02.26