취미와 밥줄사이

[sklearn] AttributeError: 'MinMaxScaler' object has no attribute 'clip' 본문

카테고리 없음

[sklearn] AttributeError: 'MinMaxScaler' object has no attribute 'clip'

취미와 밥줄사이 2021. 11. 7. 19:12

 

 

sklearn 버전이 맞지 않아 발생한 에러입니다.

pip install scikit-learn==0.23.2

 

버전에 맞는 사이킷런 패키지를 설치하니 문제가 해결되었습니다. 

REFERENCE

https://stackoverflow.com/questions/65635575/attributeerror-minmaxscaler-object-has-no-attribute-clip

 

AttributeError: 'MinMaxScaler' object has no attribute 'clip'

I get the following error when I attempt to load a saved sklearn.preprocessing.MinMaxScaler /shared/env/lib/python3.6/site-packages/sklearn/base.py:315: UserWarning: Trying to unpickle estimator

stackoverflow.com